2022-01-17 20:38:03 +00:00
|
|
|
[package]
|
|
|
|
name = "ingester"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Nga Tran <nga-tran@live.com>"]
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-01-27 13:33:27 +00:00
|
|
|
arrow = { version = "8.0", features = ["prettyprint"] }
|
2022-02-09 19:07:44 +00:00
|
|
|
arrow-flight = "8.0"
|
2022-01-24 17:00:23 +00:00
|
|
|
arrow_util = { path = "../arrow_util" }
|
2022-02-08 15:23:40 +00:00
|
|
|
async-trait = "0.1.42"
|
2022-01-26 20:46:03 +00:00
|
|
|
base64 = "0.13"
|
|
|
|
bytes = "1.0"
|
2022-01-20 23:22:41 +00:00
|
|
|
datafusion = { path = "../datafusion" }
|
|
|
|
data_types = { path = "../data_types" }
|
2022-01-26 20:46:03 +00:00
|
|
|
futures = "0.3"
|
2022-01-27 19:44:20 +00:00
|
|
|
generated_types = { path = "../generated_types" }
|
2022-02-03 11:47:28 +00:00
|
|
|
chrono = { version = "0.4", default-features = false }
|
|
|
|
db = { path = "../db" }
|
|
|
|
dml = { path = "../dml" }
|
2022-01-21 23:02:19 +00:00
|
|
|
hyper = "0.14"
|
2022-01-18 21:11:25 +00:00
|
|
|
iox_catalog = { path = "../iox_catalog" }
|
2022-01-21 23:02:19 +00:00
|
|
|
metric = { path = "../metric" }
|
2022-01-19 01:57:13 +00:00
|
|
|
mutable_batch = { path = "../mutable_batch"}
|
2022-01-26 19:26:01 +00:00
|
|
|
object_store = { path = "../object_store" }
|
2022-02-01 11:50:42 +00:00
|
|
|
parking_lot = "0.12"
|
2022-01-26 20:46:03 +00:00
|
|
|
parquet = "8.0"
|
2022-01-28 16:56:48 +00:00
|
|
|
parquet_file = { path = "../parquet_file" }
|
2022-02-03 11:47:28 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2022-01-20 23:22:41 +00:00
|
|
|
predicate = { path = "../predicate" }
|
2022-01-26 20:46:03 +00:00
|
|
|
prost = "0.9"
|
2022-01-20 23:22:41 +00:00
|
|
|
query = { path = "../query" }
|
|
|
|
schema = { path = "../schema" }
|
2022-01-19 01:57:13 +00:00
|
|
|
snafu = "0.7"
|
2022-01-21 23:02:19 +00:00
|
|
|
thiserror = "1.0"
|
2022-01-28 14:41:59 +00:00
|
|
|
time = { path = "../time" }
|
|
|
|
tokio = { version = "1.13", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
|
2022-02-09 19:07:44 +00:00
|
|
|
tonic = { version = "0.6" }
|
2022-01-19 17:36:18 +00:00
|
|
|
uuid = { version = "0.8", features = ["v4"] }
|
2022-01-18 23:10:42 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
2022-02-03 11:47:28 +00:00
|
|
|
write_buffer = { path = "../write_buffer" }
|
|
|
|
tokio-util = { version = "0.6.9" }
|
|
|
|
trace = { path = "../trace" }
|
2022-01-25 23:29:16 +00:00
|
|
|
|
2022-01-26 15:22:51 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
mutable_batch_lp = { path = "../mutable_batch_lp" }
|
|
|
|
test_helpers = { path = "../test_helpers" }
|