influxdb/ingester/Cargo.toml

20 lines
575 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"] }
datafusion = { path = "../datafusion" }
data_types = { path = "../data_types" }
iox_catalog = { path = "../iox_catalog" }
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-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"}