2022-01-12 14:13:20 +00:00
|
|
|
[package]
|
2022-05-06 18:51:52 +00:00
|
|
|
name = "router"
|
2022-09-26 14:43:00 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2022-01-12 14:13:20 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-01-14 11:34:42 +00:00
|
|
|
async-trait = "0.1"
|
2022-11-22 08:23:24 +00:00
|
|
|
bytes = "1.3"
|
2022-12-01 11:05:39 +00:00
|
|
|
client_util = { path = "../client_util" }
|
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-10-21 11:03:20 +00:00
|
|
|
futures = "0.3.25"
|
2022-01-12 14:13:20 +00:00
|
|
|
generated_types = { path = "../generated_types" }
|
2022-11-11 17:12:30 +00:00
|
|
|
hashbrown = { workspace = true }
|
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-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-10-11 01:19:10 +00:00
|
|
|
object_store = "0.5.1"
|
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"
|
2022-11-22 09:28:31 +00:00
|
|
|
serde_json = "1.0.89"
|
2022-01-14 13:34:16 +00:00
|
|
|
serde_urlencoded = "0.7"
|
2022-10-28 14:34:23 +00:00
|
|
|
service_grpc_catalog = { path = "../service_grpc_catalog"}
|
2022-11-16 15:25:49 +00:00
|
|
|
service_grpc_namespace = { path = "../service_grpc_namespace"}
|
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-10-28 14:34:23 +00:00
|
|
|
snafu = "0.7"
|
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-09-12 08:47:35 +00:00
|
|
|
criterion = { version = "0.4", default-features = false, features = ["async_tokio", "rayon"]}
|
2022-11-09 09:37:55 +00:00
|
|
|
influxdb_line_protocol = { path = "../influxdb_line_protocol" }
|
2022-10-14 11:34:17 +00:00
|
|
|
iox_tests = { path = "../iox_tests" }
|
2022-06-29 11:27:43 +00:00
|
|
|
once_cell = "1"
|
2022-09-01 12:07:53 +00:00
|
|
|
paste = "1.0.9"
|
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-10-12 12:37:24 +00:00
|
|
|
tokio-stream = { version = "0.1.11", 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
|