37 lines
1.1 KiB
TOML
37 lines
1.1 KiB
TOML
[package]
|
|
name = "garbage_collector"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
chrono = { version = "0.4", default-features = false }
|
|
clap = { version = "4", features = ["derive", "env"] }
|
|
clap_blocks = { path = "../clap_blocks" }
|
|
data_types = { path = "../data_types" }
|
|
futures = "0.3"
|
|
humantime = "2.1.0"
|
|
iox_catalog = { path = "../iox_catalog" }
|
|
backoff = { path = "../backoff" }
|
|
object_store = { workspace = true }
|
|
observability_deps = { path = "../observability_deps" }
|
|
snafu = "0.7"
|
|
tokio = { version = "1", features = ["macros", "rt", "sync"] }
|
|
tokio-stream = "0.1"
|
|
tokio-util = { version = "0.7.8" }
|
|
uuid = { version = "1", features = ["v4"] }
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|
|
|
|
[dev-dependencies]
|
|
async-trait = "0.1"
|
|
bytes = "1.4"
|
|
data_types = { path = "../data_types" }
|
|
filetime = "0.2"
|
|
metric = { path = "../metric" }
|
|
once_cell = { version = "1.18", features = ["parking_lot"] }
|
|
parquet_file = { path = "../parquet_file" }
|
|
tempfile = "3"
|
|
sqlx = { version = "0.6", features = [ "runtime-tokio-rustls" ] }
|
|
|