37 lines
1.1 KiB
TOML
37 lines
1.1 KiB
TOML
[package]
|
|
name = "compactor"
|
|
version = "0.1.0"
|
|
authors = ["Luke Bond <luke.n.bond@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
arrow = { version = "13", features = ["prettyprint"] }
|
|
async-trait = "0.1.53"
|
|
backoff = { path = "../backoff" }
|
|
bytes = "1.0"
|
|
data_types = { path = "../data_types" }
|
|
datafusion = { path = "../datafusion" }
|
|
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"
|
|
parquet_file = { path = "../parquet_file" }
|
|
predicate = { path = "../predicate" }
|
|
query = { path = "../query" }
|
|
schema = { path = "../schema" }
|
|
snafu = "0.7"
|
|
thiserror = "1.0"
|
|
iox_time = { path = "../iox_time" }
|
|
tokio = { version = "1.18", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
|
|
tokio-util = { version = "0.7.1" }
|
|
uuid = { version = "0.8", features = ["v4"] }
|
|
workspace-hack = { path = "../workspace-hack"}
|
|
|
|
[dev-dependencies]
|
|
arrow_util = { path = "../arrow_util" }
|
|
iox_tests = { path = "../iox_tests" }
|
|
querier = { path = "../querier"}
|
|
test_helpers = { path = "../test_helpers" }
|