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"] }
|
2023-01-09 09:39:40 +00:00
|
|
|
base64 = "0.21"
|
2023-02-01 00:30:56 +00:00
|
|
|
bytes = "1.4"
|
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" }
|
2023-02-08 09:40:11 +00:00
|
|
|
object_store = "0.5.4"
|
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-12-19 10:33:32 +00:00
|
|
|
thiserror = "1.0.38"
|
2022-12-01 14:20:43 +00:00
|
|
|
thrift = "0.17"
|
2023-01-30 01:57:27 +00:00
|
|
|
tokio = { version = "1.25", 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"
|
2023-02-24 18:02:23 +00:00
|
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|