2021-03-31 01:31:51 +00:00
|
|
|
[package]
|
|
|
|
name = "parquet_file"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Nga Tran <nga-tran@live.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies] # In alphabetical order
|
2021-07-19 12:49:51 +00:00
|
|
|
arrow = { version = "5.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"
|
2021-05-31 11:49:58 +00:00
|
|
|
chrono = "0.4"
|
2021-04-05 19:37:34 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2021-05-05 16:59:12 +00:00
|
|
|
datafusion = { path = "../datafusion" }
|
|
|
|
datafusion_util = { path = "../datafusion_util" }
|
2021-04-13 17:47:10 +00:00
|
|
|
futures = "0.3.7"
|
2021-04-29 16:33:46 +00:00
|
|
|
generated_types = { path = "../generated_types" }
|
2021-08-05 19:20:49 +00:00
|
|
|
internal_types = { path = "../internal_types" }
|
|
|
|
iox_object_store = { path = "../iox_object_store" }
|
2021-09-09 16:02:16 +00:00
|
|
|
metric = { path = "../metric" }
|
2021-08-05 19:20:49 +00:00
|
|
|
object_store = { path = "../object_store" }
|
2021-04-29 16:33:46 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2021-07-19 12:49:51 +00:00
|
|
|
parquet = "5.0"
|
2021-05-05 16:59:12 +00:00
|
|
|
parquet-format = "2.6"
|
2021-03-31 20:21:53 +00:00
|
|
|
parking_lot = "0.11.1"
|
2021-09-28 16:29:26 +00:00
|
|
|
pbjson-types = "0.1"
|
2021-07-05 08:23:58 +00:00
|
|
|
persistence_windows = { path = "../persistence_windows" }
|
2021-09-14 15:12:56 +00:00
|
|
|
predicate = { path = "../predicate" }
|
2021-08-05 15:57:38 +00:00
|
|
|
prost = "0.8"
|
2021-04-07 15:38:24 +00:00
|
|
|
snafu = "0.6"
|
2021-06-01 14:44:07 +00:00
|
|
|
tempfile = "3.1.0"
|
2021-05-05 08:29:47 +00:00
|
|
|
thrift = "0.13"
|
2021-04-16 18:26:37 +00:00
|
|
|
tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync"] }
|
|
|
|
tokio-stream = "0.1"
|
2021-05-05 16:59:12 +00:00
|
|
|
uuid = { version = "0.8", features = ["serde", "v4"] }
|
2021-09-13 10:12:34 +00:00
|
|
|
zstd = "0.9"
|
2021-05-05 16:59:12 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-05-05 22:37:31 +00:00
|
|
|
arrow_util = { path = "../arrow_util" }
|
2021-06-01 14:44:07 +00:00
|
|
|
test_helpers = { path = "../test_helpers" }
|