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"
|
2023-04-19 12:44:41 +00:00
|
|
|
authz = { path = "../authz", features = ["http"] }
|
2023-05-22 09:50:06 +00:00
|
|
|
base64 = "0.21.1"
|
2023-02-01 00:30:56 +00:00
|
|
|
bytes = "1.4"
|
2023-02-10 16:40:24 +00:00
|
|
|
crossbeam-utils = "0.8.15"
|
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"
|
2023-03-31 10:44:23 +00:00
|
|
|
futures = "0.3.28"
|
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" }
|
2023-04-04 08:43:34 +00:00
|
|
|
object_store = "0.5.6"
|
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-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"
|
2023-04-13 10:07:32 +00:00
|
|
|
serde_json = "1.0.96"
|
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-12 14:22:18 +00:00
|
|
|
service_grpc_object_store = { path = "../service_grpc_object_store" }
|
2023-02-10 16:40:24 +00:00
|
|
|
service_grpc_schema = { path = "../service_grpc_schema" }
|
2022-06-09 19:10:16 +00:00
|
|
|
sharder = { path = "../sharder" }
|
2023-02-10 16:40:24 +00:00
|
|
|
smallvec = "1.10.0"
|
2022-01-12 14:13:20 +00:00
|
|
|
thiserror = "1.0"
|
2023-03-23 14:46:19 +00:00
|
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"] }
|
2023-04-12 16:07:19 +00:00
|
|
|
tonic = { workspace = true }
|
2022-01-12 14:13:20 +00:00
|
|
|
trace = { path = "../trace/" }
|
2023-02-24 18:02:23 +00:00
|
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|
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"]}
|
2023-03-17 13:19:50 +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"
|
2023-03-06 10:40:41 +00:00
|
|
|
paste = "1.0.12"
|
2022-09-01 10:20:26 +00:00
|
|
|
pretty_assertions = "1.3.0"
|
2023-04-26 13:39:20 +00:00
|
|
|
proptest = "1.1.0"
|
2022-01-27 18:09:16 +00:00
|
|
|
rand = "0.8.3"
|
2022-04-25 14:06:28 +00:00
|
|
|
test_helpers = { version = "0.1.0", path = "../test_helpers", features = ["future_timeout"] }
|
2023-03-23 14:46:19 +00:00
|
|
|
tokio = { version = "1", features = ["test-util"] }
|
2023-04-26 09:31:04 +00:00
|
|
|
tokio-stream = { version = "0.1.13", 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
|