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-03-30 10:14:36 +00:00
|
|
|
async-trait = "0.1.68"
|
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" }
|
2023-02-15 09:28:19 +00:00
|
|
|
itertools = "0.10.5"
|
2023-01-18 16:36:40 +00:00
|
|
|
metric = { path = "../metric" }
|
2023-04-04 08:43:34 +00:00
|
|
|
object_store = "0.5.6"
|
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 16:36:40 +00:00
|
|
|
tokio = { version = "1", features = ["macros", "rt", "sync"] }
|
2023-02-13 10:10:53 +00:00
|
|
|
tokio-util = { version = "0.7.7" }
|
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-02-24 18:02:23 +00:00
|
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|
2023-01-18 16:36:40 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-01-20 22:34:50 +00:00
|
|
|
arrow_util = { path = "../arrow_util" }
|
2023-03-10 22:14:47 +00:00
|
|
|
assert_matches = "1"
|
2023-02-13 12:06:42 +00:00
|
|
|
compactor2_test_utils = { path = "../compactor2_test_utils" }
|
2023-01-20 22:34:50 +00:00
|
|
|
iox_tests = { path = "../iox_tests" }
|
2023-01-19 12:29:38 +00:00
|
|
|
test_helpers = { path = "../test_helpers"}
|
2023-03-24 18:25:01 +00:00
|
|
|
insta = { version = "1.29.0", features = ["yaml"] }
|