2022-02-18 14:35:45 +00:00
|
|
|
[package]
|
|
|
|
name = "compactor"
|
2022-09-26 14:43:00 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2022-02-18 14:35:45 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-10-24 17:58:38 +00:00
|
|
|
arrow = { workspace = true, features = ["prettyprint"] }
|
2023-01-31 10:18:27 +00:00
|
|
|
async-trait = "0.1.64"
|
2022-03-08 16:34:43 +00:00
|
|
|
backoff = { path = "../backoff" }
|
2023-02-01 00:30:56 +00:00
|
|
|
bytes = "1.4"
|
2022-05-05 19:29:24 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2022-10-24 17:47:45 +00:00
|
|
|
datafusion = { workspace = true }
|
2022-02-18 14:35:45 +00:00
|
|
|
futures = "0.3"
|
2022-10-19 15:03:07 +00:00
|
|
|
generated_types = { path = "../generated_types" }
|
2022-02-18 14:35:45 +00:00
|
|
|
iox_catalog = { path = "../iox_catalog" }
|
2022-10-28 14:34:23 +00:00
|
|
|
iox_query = { path = "../iox_query" }
|
|
|
|
iox_time = { path = "../iox_time" }
|
2022-02-18 14:35:45 +00:00
|
|
|
metric = { path = "../metric" }
|
2023-03-03 02:00:51 +00:00
|
|
|
object_store = "0.5.5"
|
2022-02-18 14:35:45 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2022-03-11 20:25:19 +00:00
|
|
|
parquet_file = { path = "../parquet_file" }
|
2022-02-18 14:35:45 +00:00
|
|
|
predicate = { path = "../predicate" }
|
2022-03-11 20:25:19 +00:00
|
|
|
schema = { path = "../schema" }
|
2022-10-28 14:49:24 +00:00
|
|
|
service_grpc_catalog = { path = "../service_grpc_catalog"}
|
2022-03-08 16:34:43 +00:00
|
|
|
snafu = "0.7"
|
2022-02-18 14:35:45 +00:00
|
|
|
thiserror = "1.0"
|
2023-03-02 09:50:39 +00:00
|
|
|
tokio = { version = "1.26", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
|
2023-02-13 10:10:53 +00:00
|
|
|
tokio-util = { version = "0.7.7" }
|
2022-10-19 15:03:07 +00:00
|
|
|
tonic = { version = "0.8" }
|
2022-06-17 10:28:28 +00:00
|
|
|
uuid = { version = "1", features = ["v4"] }
|
2023-02-24 18:02:23 +00:00
|
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|
2022-02-18 14:35:45 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-03-11 20:25:19 +00:00
|
|
|
arrow_util = { path = "../arrow_util" }
|
|
|
|
iox_tests = { path = "../iox_tests" }
|
2022-11-15 20:39:45 +00:00
|
|
|
itertools = "0.10.5"
|
2022-02-18 14:35:45 +00:00
|
|
|
test_helpers = { path = "../test_helpers" }
|