20 lines
564 B
TOML
20 lines
564 B
TOML
[package]
|
|
name = "ioxd_garbage_collector"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
futures = "0.3"
|
|
hyper = "0.14"
|
|
garbage_collector = { path = "../garbage_collector" }
|
|
ioxd_common = { path = "../ioxd_common" }
|
|
metric = { path = "../metric" }
|
|
observability_deps = { path = "../observability_deps" }
|
|
snafu = "0.7"
|
|
tokio = { version = "1", features = ["sync"] }
|
|
trace = { path = "../trace" }
|
|
workspace-hack = { path = "../workspace-hack"}
|