influxdb/ingester/Cargo.toml

48 lines
1.4 KiB
TOML
Raw Normal View History

[package]
name = "ingester"
version = "0.1.0"
authors = ["Nga Tran <nga-tran@live.com>"]
edition = "2021"
[dependencies]
arrow = { version = "8.0", features = ["prettyprint"] }
arrow-flight = "8.0"
arrow_util = { path = "../arrow_util" }
async-trait = "0.1.42"
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" }
2022-01-19 01:57:13 +00:00
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" }
2022-01-19 01:57:13 +00:00
snafu = "0.7"
thiserror = "1.0"
time = { path = "../time" }
tokio = { version = "1.13", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
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"}
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" }