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-05-27 10:28:14 +00:00
|
|
|
arrow = { version = "4.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-04-13 17:47:10 +00:00
|
|
|
internal_types = {path = "../internal_types"}
|
2021-05-14 17:37:39 +00:00
|
|
|
metrics = { path = "../metrics" }
|
2021-03-31 20:21:53 +00:00
|
|
|
object_store = {path = "../object_store"}
|
2021-04-29 16:33:46 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2021-05-05 16:59:12 +00:00
|
|
|
# Turn off the "arrow" feature; it currently has a bug that causes the crate to rebuild every time
|
|
|
|
# and we're not currently using it anyway
|
2021-05-24 15:37:22 +00:00
|
|
|
parquet = "4.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-07-05 08:23:58 +00:00
|
|
|
persistence_windows = { path = "../persistence_windows" }
|
2021-04-29 16:33:46 +00:00
|
|
|
prost = "0.7"
|
2021-04-16 18:26:37 +00:00
|
|
|
query = { path = "../query" }
|
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-04-29 16:33:46 +00:00
|
|
|
tracker = { path = "../tracker" }
|
2021-05-05 16:59:12 +00:00
|
|
|
uuid = { version = "0.8", features = ["serde", "v4"] }
|
|
|
|
|
|
|
|
[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" }
|