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]
|
2022-08-31 13:30:47 +00:00
|
|
|
arrow = { version = "21.0.0", features = ["prettyprint"] }
|
2022-08-01 08:30:33 +00:00
|
|
|
async-trait = "0.1.57"
|
2022-03-08 16:34:43 +00:00
|
|
|
backoff = { path = "../backoff" }
|
2022-07-20 10:00:08 +00:00
|
|
|
bytes = "1.2"
|
2022-05-05 19:29:24 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2022-03-11 20:25:19 +00:00
|
|
|
datafusion = { path = "../datafusion" }
|
2022-02-18 14:35:45 +00:00
|
|
|
futures = "0.3"
|
|
|
|
iox_catalog = { path = "../iox_catalog" }
|
|
|
|
metric = { path = "../metric" }
|
2022-08-17 13:44:48 +00:00
|
|
|
object_store = "0.4.0"
|
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-05-18 09:38:35 +00:00
|
|
|
iox_query = { path = "../iox_query" }
|
2022-03-11 20:25:19 +00:00
|
|
|
schema = { path = "../schema" }
|
2022-03-08 16:34:43 +00:00
|
|
|
snafu = "0.7"
|
2022-02-18 14:35:45 +00:00
|
|
|
thiserror = "1.0"
|
2022-04-26 00:19:59 +00:00
|
|
|
iox_time = { path = "../iox_time" }
|
2022-09-06 14:13:28 +00:00
|
|
|
tokio = { version = "1.21", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
|
2022-06-06 14:46:27 +00:00
|
|
|
tokio-util = { version = "0.7.3" }
|
2022-06-17 10:28:28 +00:00
|
|
|
uuid = { version = "1", features = ["v4"] }
|
2022-02-18 14:35:45 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-03-11 20:25:19 +00:00
|
|
|
arrow_util = { path = "../arrow_util" }
|
|
|
|
iox_tests = { path = "../iox_tests" }
|
2022-02-18 14:35:45 +00:00
|
|
|
test_helpers = { path = "../test_helpers" }
|