2022-03-31 16:03:31 +00:00
|
|
|
[package]
|
|
|
|
name = "ioxd_querier"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
# Workspace dependencies, in alphabetical order
|
2022-05-05 19:29:24 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2022-03-31 16:03:31 +00:00
|
|
|
generated_types = { path = "../generated_types" }
|
|
|
|
iox_catalog = { path = "../iox_catalog" }
|
|
|
|
ioxd_common = { path = "../ioxd_common" }
|
|
|
|
metric = { path = "../metric" }
|
2022-05-13 16:26:07 +00:00
|
|
|
object_store = "0.0.1"
|
2022-03-31 16:03:31 +00:00
|
|
|
querier = { path = "../querier" }
|
2022-05-18 09:38:35 +00:00
|
|
|
iox_query = { path = "../iox_query" }
|
2022-03-31 16:03:31 +00:00
|
|
|
service_grpc_flight = { path = "../service_grpc_flight" }
|
|
|
|
service_grpc_influxrpc = { path = "../service_grpc_influxrpc" }
|
2022-04-26 00:19:59 +00:00
|
|
|
iox_time = { path = "../iox_time" }
|
2022-03-31 16:03:31 +00:00
|
|
|
trace = { path = "../trace" }
|
|
|
|
|
|
|
|
# Crates.io dependencies, in alphabetical order
|
2022-05-17 14:13:03 +00:00
|
|
|
arrow-flight = "14.0.0"
|
2022-03-31 16:03:31 +00:00
|
|
|
async-trait = "0.1"
|
|
|
|
hyper = "0.14"
|
2022-04-28 08:21:17 +00:00
|
|
|
tokio = { version = "1.18", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
|
2022-04-20 11:12:17 +00:00
|
|
|
tonic = "0.7"
|
2022-03-31 16:03:31 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
|
|
|
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
# Workspace dependencies, in alphabetical order
|
|
|
|
iox_tests = { path = "../iox_tests" }
|
|
|
|
|
|
|
|
# Crates.io dependencies, in alphabetical order
|