influxdb/ingester/Cargo.toml

29 lines
898 B
TOML
Raw Normal View History

[package]
name = "ingester"
version = "0.1.0"
authors = ["Nga Tran <nga-tran@live.com>"]
edition = "2021"
[dependencies]
2022-01-19 16:20:20 +00:00
arrow = { version = "7.0", features = ["prettyprint"] }
arrow_util = { path = "../arrow_util" }
datafusion = { path = "../datafusion" }
data_types = { path = "../data_types" }
hyper = "0.14"
iox_catalog = { path = "../iox_catalog" }
metric = { path = "../metric" }
2022-01-19 01:57:13 +00:00
mutable_batch = { path = "../mutable_batch"}
2022-01-18 23:10:42 +00:00
parking_lot = "0.11.2"
predicate = { path = "../predicate" }
query = { path = "../query" }
schema = { path = "../schema" }
2022-01-19 01:57:13 +00:00
snafu = "0.7"
2022-01-21 21:49:02 +00:00
tokio = { version = "1.13", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
thiserror = "1.0"
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"}
[dev-dependencies]
mutable_batch_lp = { path = "../mutable_batch_lp" }
test_helpers = { path = "../test_helpers" }