2021-03-31 01:31:51 +00:00
|
|
|
[package]
|
|
|
|
name = "parquet_file"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Nga Tran <nga-tran@live.com>"]
|
2021-10-25 08:45:44 +00:00
|
|
|
edition = "2021"
|
2021-03-31 01:31:51 +00:00
|
|
|
|
|
|
|
[dependencies] # In alphabetical order
|
2022-02-23 09:25:46 +00:00
|
|
|
arrow = { version = "9.1", 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-04-05 19:37:34 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2022-02-25 15:10:23 +00:00
|
|
|
data_types2 = { path = "../data_types2" }
|
2021-05-05 16:59:12 +00:00
|
|
|
datafusion = { path = "../datafusion" }
|
|
|
|
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" }
|
2021-08-05 19:20:49 +00:00
|
|
|
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" }
|
2022-02-23 11:25:15 +00:00
|
|
|
parquet = {version = "9.1", features = ["experimental"]}
|
2022-01-13 17:07:15 +00:00
|
|
|
parquet-format = "4.0"
|
2022-02-01 11:50:42 +00:00
|
|
|
parking_lot = "0.12"
|
2022-01-13 17:07:15 +00:00
|
|
|
pbjson-types = "0.2"
|
2021-07-05 08:23:58 +00:00
|
|
|
persistence_windows = { path = "../persistence_windows" }
|
2021-09-14 15:12:56 +00:00
|
|
|
predicate = { path = "../predicate" }
|
2022-01-13 17:07:15 +00:00
|
|
|
prost = "0.9"
|
2022-01-11 19:22:36 +00:00
|
|
|
snafu = "0.7"
|
2021-10-11 09:45:08 +00:00
|
|
|
schema = { path = "../schema" }
|
2021-06-01 14:44:07 +00:00
|
|
|
tempfile = "3.1.0"
|
2021-05-05 08:29:47 +00:00
|
|
|
thrift = "0.13"
|
2021-10-11 20:40:00 +00:00
|
|
|
time = { path = "../time" }
|
2022-02-22 16:27:43 +00:00
|
|
|
tokio = { version = "1.17", features = ["macros", "parking_lot", "rt", "rt-multi-thread", "sync"] }
|
2021-04-16 18:26:37 +00:00
|
|
|
tokio-stream = "0.1"
|
2021-12-03 16:50:46 +00:00
|
|
|
uuid = { version = "0.8", features = ["v4"] }
|
2022-02-15 12:10:24 +00:00
|
|
|
zstd = "0.10"
|
2021-11-19 14:21:57 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
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" }
|