2021-03-31 01:31:51 +00:00
|
|
|
[package]
|
|
|
|
name = "parquet_file"
|
2022-09-26 14:43:00 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2021-03-31 01:31:51 +00:00
|
|
|
|
|
|
|
[dependencies] # In alphabetical order
|
2022-10-24 17:58:38 +00:00
|
|
|
arrow = { workspace = true, features = ["prettyprint"] }
|
2022-12-12 07:07:19 +00:00
|
|
|
base64 = "0.20"
|
2022-11-22 08:23:24 +00:00
|
|
|
bytes = "1.3"
|
2022-05-05 19:29:24 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2022-10-24 17:47:45 +00:00
|
|
|
datafusion = { workspace = true }
|
2021-05-05 16:59:12 +00:00
|
|
|
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" }
|
2022-12-06 07:53:54 +00:00
|
|
|
object_store = "0.5.2"
|
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-10-24 18:10:30 +00:00
|
|
|
parquet = { workspace = true, features = ["experimental"]}
|
2022-09-21 09:44:26 +00:00
|
|
|
pbjson-types = "0.5"
|
2021-09-14 15:12:56 +00:00
|
|
|
predicate = { path = "../predicate" }
|
2022-08-09 17:30:44 +00:00
|
|
|
prost = "0.11"
|
2021-10-11 09:45:08 +00:00
|
|
|
schema = { path = "../schema" }
|
2022-05-05 19:29:24 +00:00
|
|
|
snafu = "0.7"
|
2022-10-24 18:10:30 +00:00
|
|
|
thiserror = "1.0.37"
|
2022-12-01 14:20:43 +00:00
|
|
|
thrift = "0.17"
|
2022-11-21 10:21:24 +00:00
|
|
|
tokio = { version = "1.22", features = ["macros", "parking_lot", "rt", "rt-multi-thread", "sync"] }
|
2022-06-17 10:28:28 +00:00
|
|
|
uuid = { version = "1", features = ["v4"] }
|
2022-11-25 10:00:28 +00:00
|
|
|
zstd = "0.12"
|
2021-11-19 14:21:57 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|