influxdb/ingester/Cargo.toml

45 lines
1.4 KiB
TOML

[package]
name = "ingester"
version = "0.1.0"
authors = ["Nga Tran <nga-tran@live.com>"]
edition = "2021"
[dependencies]
arrow = { version = "8.0", features = ["prettyprint"] }
arrow_util = { path = "../arrow_util" }
base64 = "0.13"
bytes = "1.0"
datafusion = { path = "../datafusion" }
data_types = { path = "../data_types" }
futures = "0.3"
generated_types = { path = "../generated_types" }
chrono = { version = "0.4", default-features = false }
db = { path = "../db" }
dml = { path = "../dml" }
hyper = "0.14"
iox_catalog = { path = "../iox_catalog" }
metric = { path = "../metric" }
mutable_batch = { path = "../mutable_batch"}
object_store = { path = "../object_store" }
parking_lot = "0.12"
parquet = "8.0"
parquet_file = { path = "../parquet_file" }
observability_deps = { path = "../observability_deps" }
predicate = { path = "../predicate" }
prost = "0.9"
query = { path = "../query" }
schema = { path = "../schema" }
snafu = "0.7"
thiserror = "1.0"
time = { path = "../time" }
tokio = { version = "1.13", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
uuid = { version = "0.8", features = ["v4"] }
workspace-hack = { path = "../workspace-hack"}
write_buffer = { path = "../write_buffer" }
tokio-util = { version = "0.6.9" }
trace = { path = "../trace" }
[dev-dependencies]
mutable_batch_lp = { path = "../mutable_batch_lp" }
test_helpers = { path = "../test_helpers" }