2022-03-31 17:39:05 +00:00
|
|
|
[package]
|
2022-05-05 19:38:32 +00:00
|
|
|
name = "ioxd_router"
|
2022-09-26 14:43:00 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2022-03-31 17:39:05 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
# Workspace dependencies, in alphabetical order
|
2023-03-17 15:20:14 +00:00
|
|
|
authz = { path = "../authz" }
|
2022-05-05 19:29:24 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2022-03-31 17:39:05 +00:00
|
|
|
clap_blocks = { path = "../clap_blocks" }
|
|
|
|
iox_catalog = { path = "../iox_catalog" }
|
|
|
|
ioxd_common = { path = "../ioxd_common" }
|
|
|
|
metric = { path = "../metric" }
|
|
|
|
mutable_batch = { path = "../mutable_batch" }
|
2023-04-04 08:43:34 +00:00
|
|
|
object_store = "0.5.6"
|
2022-03-31 17:39:05 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2022-05-06 18:51:52 +00:00
|
|
|
router = { path = "../router" }
|
2022-06-09 19:10:16 +00:00
|
|
|
sharder = { path = "../sharder" }
|
2022-03-31 17:39:05 +00:00
|
|
|
trace = { path = "../trace" }
|
|
|
|
write_buffer = { path = "../write_buffer" }
|
2022-04-02 10:34:51 +00:00
|
|
|
write_summary = { path = "../write_summary" }
|
2022-03-31 17:39:05 +00:00
|
|
|
|
|
|
|
# Crates.io dependencies, in alphabetical order
|
|
|
|
async-trait = "0.1"
|
2022-11-11 17:12:30 +00:00
|
|
|
hashbrown = { workspace = true }
|
2022-03-31 17:39:05 +00:00
|
|
|
hyper = "0.14"
|
2023-03-30 10:43:28 +00:00
|
|
|
thiserror = "1.0.40"
|
2023-03-30 09:36:04 +00:00
|
|
|
tokio = { version = "1.27", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
|
2023-02-13 10:10:53 +00:00
|
|
|
tokio-util = { version = "0.7.7" }
|
2023-02-24 18:02:23 +00:00
|
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|