2022-06-17 19:55:51 +00:00
|
|
|
[package]
|
2022-07-25 12:44:37 +00:00
|
|
|
name = "garbage_collector"
|
2022-09-26 14:43:00 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2022-06-17 19:55:51 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-07-01 18:36:05 +00:00
|
|
|
chrono = { version = "0.4", default-features = false }
|
2022-09-29 11:14:38 +00:00
|
|
|
clap = { version = "4", features = ["derive", "env"] }
|
2023-01-25 11:31:48 +00:00
|
|
|
clap_blocks = { path = "../clap_blocks" }
|
2022-09-14 14:09:28 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2022-06-17 19:55:51 +00:00
|
|
|
futures = "0.3"
|
2022-09-14 14:09:28 +00:00
|
|
|
humantime = "2.1.0"
|
2022-07-18 21:27:38 +00:00
|
|
|
iox_catalog = { path = "../iox_catalog" }
|
2023-04-27 17:51:52 +00:00
|
|
|
backoff = { path = "../backoff" }
|
2023-05-26 11:03:42 +00:00
|
|
|
object_store = { workspace = true }
|
2022-06-30 19:31:27 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2022-06-17 19:55:51 +00:00
|
|
|
snafu = "0.7"
|
|
|
|
tokio = { version = "1", features = ["macros", "rt", "sync"] }
|
2022-08-10 09:14:46 +00:00
|
|
|
tokio-stream = "0.1"
|
2023-04-26 09:24:39 +00:00
|
|
|
tokio-util = { version = "0.7.8" }
|
2022-06-17 19:55:51 +00:00
|
|
|
uuid = { version = "1", features = ["v4"] }
|
2023-05-01 15:08:34 +00:00
|
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|
2022-06-20 21:12:05 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-06-14 14:59:00 +00:00
|
|
|
async-trait = "0.1"
|
2023-04-19 08:27:38 +00:00
|
|
|
bytes = "1.4"
|
2022-06-20 21:12:05 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2022-07-01 17:56:57 +00:00
|
|
|
filetime = "0.2"
|
2022-07-18 21:27:38 +00:00
|
|
|
metric = { path = "../metric" }
|
2023-06-05 02:03:15 +00:00
|
|
|
once_cell = { version = "1.18", features = ["parking_lot"] }
|
2022-06-20 21:12:05 +00:00
|
|
|
parquet_file = { path = "../parquet_file" }
|
2022-07-01 17:56:57 +00:00
|
|
|
tempfile = "3"
|
2023-06-14 14:59:00 +00:00
|
|
|
sqlx = { version = "0.6", features = [ "runtime-tokio-rustls" ] }
|
|
|
|
|