2022-01-12 14:13:20 +00:00
|
|
|
[package]
|
2022-05-06 18:51:52 +00:00
|
|
|
name = "router"
|
2022-01-12 14:13:20 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-01-14 11:34:42 +00:00
|
|
|
async-trait = "0.1"
|
2022-01-14 13:34:16 +00:00
|
|
|
bytes = "1.1"
|
2022-05-05 19:29:24 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2022-01-12 14:13:20 +00:00
|
|
|
dml = { path = "../dml" }
|
2022-01-14 13:34:16 +00:00
|
|
|
flate2 = "1.0"
|
2022-02-10 09:19:19 +00:00
|
|
|
futures = "0.3.21"
|
2022-01-12 14:13:20 +00:00
|
|
|
generated_types = { path = "../generated_types" }
|
2022-01-27 15:34:10 +00:00
|
|
|
hashbrown = "0.12"
|
2022-01-12 14:13:20 +00:00
|
|
|
hyper = "0.14"
|
2022-01-28 16:25:20 +00:00
|
|
|
iox_catalog = { path = "../iox_catalog" }
|
2022-04-14 17:39:18 +00:00
|
|
|
iox_catalog_service = { path = "../iox_catalog_service"}
|
2022-05-05 19:29:24 +00:00
|
|
|
iox_time = { path = "../iox_time" }
|
2022-01-12 14:13:20 +00:00
|
|
|
metric = { path = "../metric" }
|
2022-01-14 16:52:03 +00:00
|
|
|
mutable_batch = { path = "../mutable_batch" }
|
2022-01-14 11:34:42 +00:00
|
|
|
mutable_batch_lp = { path = "../mutable_batch_lp" }
|
2022-02-23 15:41:45 +00:00
|
|
|
mutable_batch_pb = { version = "0.1.0", path = "../mutable_batch_pb" }
|
2022-04-16 17:58:31 +00:00
|
|
|
object_store = { path = "../object_store" }
|
2022-01-14 11:34:42 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2022-02-01 11:50:42 +00:00
|
|
|
parking_lot = "0.12"
|
2022-01-14 16:01:01 +00:00
|
|
|
predicate = { path = "../predicate" }
|
2022-02-23 15:41:45 +00:00
|
|
|
schema = { version = "0.1.0", path = "../schema" }
|
2022-01-14 13:34:16 +00:00
|
|
|
serde = "1.0"
|
|
|
|
serde_urlencoded = "0.7"
|
2022-05-10 20:55:58 +00:00
|
|
|
service_grpc_schema = { path = "../service_grpc_schema" }
|
2022-05-12 14:22:18 +00:00
|
|
|
service_grpc_object_store = { path = "../service_grpc_object_store" }
|
2022-01-18 18:46:58 +00:00
|
|
|
siphasher = "0.3"
|
2022-01-12 14:13:20 +00:00
|
|
|
thiserror = "1.0"
|
2022-01-14 13:34:16 +00:00
|
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
|
2022-04-20 11:12:17 +00:00
|
|
|
tonic = "0.7"
|
2022-01-12 14:13:20 +00:00
|
|
|
trace = { path = "../trace/" }
|
2022-01-12 15:09:06 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
2022-01-25 15:19:48 +00:00
|
|
|
write_buffer = { path = "../write_buffer" }
|
2022-04-02 10:34:51 +00:00
|
|
|
write_summary = { path = "../write_summary" }
|
2022-01-14 11:34:42 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
assert_matches = "1.5"
|
2022-01-28 17:44:10 +00:00
|
|
|
criterion = { version = "0.3.4", features = ["async_tokio", "html_reports"] }
|
2022-02-09 13:31:13 +00:00
|
|
|
lazy_static = "1.4.0"
|
2022-03-28 08:44:01 +00:00
|
|
|
paste = "1.0.7"
|
2022-04-04 10:53:31 +00:00
|
|
|
pretty_assertions = "1.2.1"
|
2022-01-27 18:09:16 +00:00
|
|
|
rand = "0.8.3"
|
2022-01-28 16:25:20 +00:00
|
|
|
schema = { path = "../schema" }
|
2022-04-25 14:06:28 +00:00
|
|
|
test_helpers = { version = "0.1.0", path = "../test_helpers", features = ["future_timeout"] }
|
|
|
|
tokio-stream = { version = "0.1.8", default_features = false, features = [] }
|
2022-01-27 18:09:16 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "sharder"
|
|
|
|
harness = false
|
2022-01-28 17:44:10 +00:00
|
|
|
|
2022-03-04 00:28:02 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "schema_validator"
|
|
|
|
harness = false
|
|
|
|
|
2022-01-28 17:44:10 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "e2e"
|
|
|
|
harness = false
|