2022-02-18 14:35:45 +00:00
|
|
|
[package]
|
|
|
|
name = "compactor"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Luke Bond <luke.n.bond@gmail.com>"]
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
async-trait = "0.1.42"
|
2022-03-08 16:34:43 +00:00
|
|
|
backoff = { path = "../backoff" }
|
|
|
|
data_types2 = { path = "../data_types2" }
|
2022-02-18 14:35:45 +00:00
|
|
|
futures = "0.3"
|
|
|
|
iox_catalog = { path = "../iox_catalog" }
|
|
|
|
metric = { path = "../metric" }
|
|
|
|
object_store = { path = "../object_store" }
|
|
|
|
observability_deps = { path = "../observability_deps" }
|
|
|
|
parking_lot = "0.12"
|
|
|
|
predicate = { path = "../predicate" }
|
2022-03-08 16:34:43 +00:00
|
|
|
query = { path = "../query" }
|
|
|
|
snafu = "0.7"
|
2022-02-18 14:35:45 +00:00
|
|
|
thiserror = "1.0"
|
2022-03-08 16:34:43 +00:00
|
|
|
time = { path = "../time" }
|
2022-02-22 16:27:43 +00:00
|
|
|
tokio = { version = "1.17", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
|
2022-02-18 14:35:45 +00:00
|
|
|
tokio-util = { version = "0.7.0" }
|
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
test_helpers = { path = "../test_helpers" }
|