2023-01-18 16:36:40 +00:00
|
|
|
[package]
|
|
|
|
name = "compactor2"
|
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
|
|
|
|
[dependencies]
|
2023-01-31 10:18:27 +00:00
|
|
|
async-trait = "0.1.64"
|
2023-01-19 10:33:57 +00:00
|
|
|
backoff = { path = "../backoff" }
|
2023-02-01 00:30:56 +00:00
|
|
|
bytes = "1.4"
|
2023-01-20 13:41:23 +00:00
|
|
|
datafusion = { workspace = true }
|
2023-01-18 18:51:59 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2023-01-18 16:36:40 +00:00
|
|
|
futures = "0.3"
|
|
|
|
iox_catalog = { path = "../iox_catalog" }
|
|
|
|
iox_query = { path = "../iox_query" }
|
|
|
|
iox_time = { path = "../iox_time" }
|
|
|
|
metric = { path = "../metric" }
|
2023-02-08 09:40:11 +00:00
|
|
|
object_store = "0.5.4"
|
2023-01-18 16:36:40 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
|
|
|
parquet_file = { path = "../parquet_file" }
|
2023-01-20 13:41:23 +00:00
|
|
|
predicate = { path = "../predicate" }
|
2023-01-18 18:51:59 +00:00
|
|
|
rand = "0.8.3"
|
2023-01-20 13:41:23 +00:00
|
|
|
schema = { path = "../schema" }
|
2023-01-31 14:37:06 +00:00
|
|
|
sharder = { path = "../sharder" }
|
2023-01-18 18:51:59 +00:00
|
|
|
snafu = "0.7"
|
2023-01-18 16:36:40 +00:00
|
|
|
tokio = { version = "1", features = ["macros", "rt", "sync"] }
|
2023-02-10 09:42:00 +00:00
|
|
|
tokio-util = { version = "0.7.5" }
|
2023-01-25 10:35:07 +00:00
|
|
|
tracker = { path = "../tracker" }
|
2023-01-19 13:11:44 +00:00
|
|
|
uuid = { version = "1", features = ["v4"] }
|
2023-01-18 16:36:40 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-01-20 22:34:50 +00:00
|
|
|
arrow_util = { path = "../arrow_util" }
|
|
|
|
iox_tests = { path = "../iox_tests" }
|
2023-01-19 12:29:38 +00:00
|
|
|
test_helpers = { path = "../test_helpers"}
|
2023-02-07 15:08:47 +00:00
|
|
|
insta = { version = "1.26.0", features = ["yaml"] }
|