2022-03-29 13:07:19 +00:00
|
|
|
[package]
|
|
|
|
name = "ioxd_router"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
# Workspace dependencies, in alphabetical order
|
|
|
|
data_types = { path = "../data_types" }
|
|
|
|
dml = { path = "../dml" }
|
|
|
|
generated_types = { path = "../generated_types" }
|
|
|
|
ioxd_common = { path = "../ioxd_common" }
|
|
|
|
metric = { path = "../metric" }
|
|
|
|
mutable_batch_pb = { path = "../mutable_batch_pb" }
|
|
|
|
router = { path = "../router" }
|
|
|
|
service_grpc_testing = { path = "../service_grpc_testing" }
|
2022-04-26 00:19:59 +00:00
|
|
|
iox_time = { path = "../iox_time" }
|
2022-03-29 13:07:19 +00:00
|
|
|
trace = { path = "../trace" }
|
|
|
|
trace_http = { path = "../trace_http" }
|
|
|
|
|
|
|
|
|
|
|
|
# Crates.io dependencies, in alphabetical order
|
|
|
|
async-trait = "0.1"
|
|
|
|
|
2022-04-29 09:56:48 +00:00
|
|
|
http = "0.2.7"
|
2022-03-29 13:07:19 +00:00
|
|
|
hyper = "0.14"
|
|
|
|
snafu = "0.7"
|
|
|
|
|
2022-04-20 11:12:17 +00:00
|
|
|
tonic = "0.7"
|
|
|
|
tonic-health = "0.6.0"
|
|
|
|
tonic-reflection = "0.4.0"
|
2022-04-28 08:21:17 +00:00
|
|
|
tokio = { version = "1.18", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
|
2022-03-29 13:07:19 +00:00
|
|
|
tokio-stream = { version = "0.1", features = ["net"] }
|
|
|
|
tokio-util = { version = "0.7.0" }
|
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
# Workspace dependencies, in alphabetical order
|
|
|
|
# Crates.io dependencies, in alphabetical order
|
|
|
|
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
|
|
|
|
regex = "1"
|