2021-03-31 01:31:51 +00:00
|
|
|
[package]
|
|
|
|
name = "parquet_file"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Nga Tran <nga-tran@live.com>"]
|
2021-10-25 08:45:44 +00:00
|
|
|
edition = "2021"
|
2021-03-31 01:31:51 +00:00
|
|
|
|
|
|
|
[dependencies] # In alphabetical order
|
2022-05-17 14:13:03 +00:00
|
|
|
arrow = { version = "14.0.0", features = ["prettyprint"] }
|
2021-06-30 14:36:27 +00:00
|
|
|
base64 = "0.13"
|
2021-03-31 20:21:53 +00:00
|
|
|
bytes = "1.0"
|
2022-05-05 19:29:24 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2021-05-05 16:59:12 +00:00
|
|
|
datafusion = { path = "../datafusion" }
|
|
|
|
datafusion_util = { path = "../datafusion_util" }
|
2021-11-24 20:14:29 +00:00
|
|
|
futures = "0.3"
|
2021-04-29 16:33:46 +00:00
|
|
|
generated_types = { path = "../generated_types" }
|
2022-05-05 19:29:24 +00:00
|
|
|
iox_time = { path = "../iox_time" }
|
2021-09-09 16:02:16 +00:00
|
|
|
metric = { path = "../metric" }
|
2022-05-13 16:26:07 +00:00
|
|
|
object_store = "0.0.1"
|
2021-04-29 16:33:46 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2022-05-05 19:29:24 +00:00
|
|
|
parking_lot = "0.12"
|
2022-05-17 14:13:03 +00:00
|
|
|
parquet = {version = "14.0.0", features = ["experimental"]}
|
2022-01-13 17:07:15 +00:00
|
|
|
parquet-format = "4.0"
|
2022-04-20 11:12:17 +00:00
|
|
|
pbjson-types = "0.3"
|
2021-09-14 15:12:56 +00:00
|
|
|
predicate = { path = "../predicate" }
|
2022-04-20 11:12:17 +00:00
|
|
|
prost = "0.10"
|
2021-10-11 09:45:08 +00:00
|
|
|
schema = { path = "../schema" }
|
2022-05-05 19:29:24 +00:00
|
|
|
snafu = "0.7"
|
2021-06-01 14:44:07 +00:00
|
|
|
tempfile = "3.1.0"
|
2021-05-05 08:29:47 +00:00
|
|
|
thrift = "0.13"
|
2022-04-28 08:21:17 +00:00
|
|
|
tokio = { version = "1.18", features = ["macros", "parking_lot", "rt", "rt-multi-thread", "sync"] }
|
2021-12-03 16:50:46 +00:00
|
|
|
uuid = { version = "0.8", features = ["v4"] }
|
2022-03-24 15:27:36 +00:00
|
|
|
zstd = "0.11"
|
2021-11-19 14:21:57 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
2022-05-18 18:45:47 +00:00
|
|
|
thiserror = "1.0.31"
|