22 lines
706 B
TOML
22 lines
706 B
TOML
[package]
|
|
name = "compactor_scheduler"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.71"
|
|
backoff = { path = "../backoff" }
|
|
data_types = { path = "../data_types" }
|
|
iox_catalog = { path = "../iox_catalog" }
|
|
iox_time = { path = "../iox_time" }
|
|
observability_deps = { path = "../observability_deps" }
|
|
sharder = { path = "../sharder" }
|
|
uuid = { version = "1", features = ["v4"] }
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|
|
|
|
[dev-dependencies]
|
|
iox_tests = { path = "../iox_tests" }
|
|
tokio = { version = "1.29", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
|