2022-02-09 19:07:44 +00:00
|
|
|
[package]
|
|
|
|
name = "querier"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-02-23 11:03:22 +00:00
|
|
|
arrow-flight = "9.1"
|
2022-02-24 15:42:56 +00:00
|
|
|
async-trait = "0.1.42"
|
2022-02-25 08:54:16 +00:00
|
|
|
backoff = { path = "../backoff" }
|
2022-02-09 19:07:44 +00:00
|
|
|
client_util = { path = "../client_util" }
|
2022-02-28 17:20:38 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2022-02-28 15:01:28 +00:00
|
|
|
db = { path = "../db" }
|
2022-02-09 19:07:44 +00:00
|
|
|
futures = "0.3"
|
|
|
|
generated_types = { path = "../generated_types" }
|
2022-02-24 15:42:56 +00:00
|
|
|
hyper = "0.14"
|
|
|
|
iox_catalog = { path = "../iox_catalog" }
|
2022-02-25 08:54:16 +00:00
|
|
|
iox_object_store = { path = "../iox_object_store" }
|
2022-02-24 15:42:56 +00:00
|
|
|
metric = { path = "../metric" }
|
2022-02-25 08:54:16 +00:00
|
|
|
object_store = { path = "../object_store" }
|
2022-02-24 15:42:56 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2022-02-25 08:54:16 +00:00
|
|
|
parking_lot = "0.12"
|
|
|
|
parquet_file = { path = "../parquet_file" }
|
2022-03-02 08:59:50 +00:00
|
|
|
pin-project = "1.0"
|
2022-02-09 19:07:44 +00:00
|
|
|
rand = "0.8.3"
|
|
|
|
thiserror = "1.0"
|
2022-02-25 08:54:16 +00:00
|
|
|
time = { path = "../time" }
|
2022-02-24 15:42:56 +00:00
|
|
|
tokio = { version = "1.17", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
|
|
|
|
tokio-util = { version = "0.7.0" }
|
2022-02-09 19:07:44 +00:00
|
|
|
tonic = { version = "0.6" }
|
2022-02-24 15:42:56 +00:00
|
|
|
trace = { path = "../trace" }
|
2022-02-25 08:54:16 +00:00
|
|
|
uuid = { version = "0.8", features = ["v4"] }
|
2022-02-09 19:07:44 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
2022-02-25 08:54:16 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-02-28 17:20:38 +00:00
|
|
|
arrow = { version = "9.1", features = ["prettyprint"] }
|
|
|
|
arrow_util = { path = "../arrow_util" }
|
|
|
|
bytes = "1.0"
|
2022-02-25 08:54:16 +00:00
|
|
|
query = { path = "../query" }
|
2022-02-28 17:20:38 +00:00
|
|
|
schema = { path = "../schema" }
|