2023-06-16 17:02:13 +00:00
|
|
|
[package]
|
|
|
|
name = "compactor_scheduler"
|
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
|
|
|
|
[dependencies]
|
2023-07-24 10:07:18 +00:00
|
|
|
async-trait = "0.1.72"
|
2023-06-22 18:48:08 +00:00
|
|
|
backoff = { path = "../backoff" }
|
2023-06-16 17:02:13 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2023-06-22 18:48:08 +00:00
|
|
|
iox_catalog = { path = "../iox_catalog" }
|
|
|
|
iox_time = { path = "../iox_time" }
|
|
|
|
observability_deps = { path = "../observability_deps" }
|
2023-06-21 17:29:38 +00:00
|
|
|
sharder = { path = "../sharder" }
|
2023-06-28 22:04:00 +00:00
|
|
|
uuid = { version = "1", features = ["v4"] }
|
2023-06-16 17:02:13 +00:00
|
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-06-22 18:48:08 +00:00
|
|
|
iox_tests = { path = "../iox_tests" }
|
2023-06-28 13:18:08 +00:00
|
|
|
tokio = { version = "1.29", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
|