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-03-31 20:21:53 +00:00
|
|
|
arrow_deps = { path = "../arrow_deps" }
|
|
|
|
bytes = "1.0"
|
2021-04-05 19:37:34 +00:00
|
|
|
data_types = { path = "../data_types" }
|
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-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-03-31 20:21:53 +00:00
|
|
|
parking_lot = "0.11.1"
|
2021-04-29 16:33:46 +00:00
|
|
|
prost = "0.7"
|
|
|
|
prost-types = "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-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" }
|
|
|
|
uuid = { version = "0.8", features = ["serde", "v4"] }
|