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-07-20 10:00:08 +00:00
|
|
|
bytes = "1.2"
|
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-08-30 01:24:21 +00:00
|
|
|
futures = "0.3.24"
|
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-05-13 14:07:58 +00:00
|
|
|
service_grpc_catalog = { path = "../service_grpc_catalog"}
|
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-08-17 13:44:48 +00:00
|
|
|
object_store = "0.4.0"
|
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-06-09 19:10:16 +00:00
|
|
|
sharder = { path = "../sharder" }
|
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-08-09 17:30:44 +00:00
|
|
|
tonic = "0.8"
|
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-07-07 07:09:27 +00:00
|
|
|
criterion = { version = "0.3.6", features = ["async_tokio", "html_reports"] }
|
2022-06-29 11:27:43 +00:00
|
|
|
once_cell = "1"
|
2022-08-03 09:03:25 +00:00
|
|
|
paste = "1.0.8"
|
2022-09-01 10:20:26 +00:00
|
|
|
pretty_assertions = "1.3.0"
|
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"] }
|
2022-06-06 14:21:54 +00:00
|
|
|
tokio-stream = { version = "0.1.9", default_features = false, features = [] }
|
2022-01-27 18:09:16 +00:00
|
|
|
|
2022-08-16 08:11:23 +00:00
|
|
|
[lib]
|
|
|
|
# Allow --save-baseline to work
|
|
|
|
# https://github.com/bheisler/criterion.rs/issues/275
|
|
|
|
bench = false
|
|
|
|
|
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
|