influxdb/influxdb3_server/Cargo.toml

63 lines
2.0 KiB
TOML

[package]
name = "influxdb3_server"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
authz = { path = "../authz", features = ["http"] }
bytes = "1.5"
datafusion_util = { path = "../datafusion_util" }
data_types = { path = "../data_types" }
iox_catalog = { path = "../iox_catalog" }
iox_query = { path = "../iox_query" }
iox_time = { path = "../iox_time" }
influxdb-line-protocol = { path = "../influxdb_line_protocol" }
influxdb3_write = { path = "../influxdb3_write" }
object_store = { workspace = true }
observability_deps = { path = "../observability_deps" }
metric = { path = "../metric" }
metric_exporters = { path = "../metric_exporters" }
schema = { path = "../schema" }
service_common = { path = "../service_common" }
service_grpc_flight = { path = "../service_grpc_flight" }
trace = { path = "../trace/" }
trace_exporters = { path = "../trace_exporters" }
trace_http = { path = "../trace_http" }
tracker = { path = "../tracker" }
arrow = { workspace = true, features = ["prettyprint"] }
chrono = "0.4"
datafusion = { workspace = true }
async-trait = "0.1"
futures = "0.3.28"
hyper = "0.14"
parking_lot = "0.11.1"
thiserror = "1.0"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"] }
tokio-util = { version = "0.7.9" }
tonic = { workspace = true }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.107"
serde_urlencoded = "0.7.0"
tower = "0.4.13"
flate2 = "1.0.27"
workspace-hack = { version = "0.1", path = "../workspace-hack" }
arrow-json = "49.0.0"
arrow-schema = "49.0.0"
arrow-csv = "49.0.0"
sha2 = "0.10.8"
hex = "0.4.3"
[dev-dependencies]
parquet.workspace = true
parquet_file = { path = "../parquet_file" }
test_helpers = { path = "../test_helpers", features = ["future_timeout"] }
test_helpers_end_to_end = { path = "../test_helpers_end_to_end" }
http = "0.2.9"
hyper = "0.14"
urlencoding = "1.1"