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-06-30 20:39:34 +00:00
|
|
|
chrono-english = "0.1.4"
|
2022-09-29 11:14:38 +00:00
|
|
|
clap = { version = "4", features = ["derive", "env"] }
|
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" }
|
2022-10-11 01:19:10 +00:00
|
|
|
object_store = { version = "0.5.1" }
|
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"
|
2022-09-20 11:14:39 +00:00
|
|
|
tokio-util = { version = "0.7.4" }
|
2022-06-17 19:55:51 +00:00
|
|
|
uuid = { version = "1", features = ["v4"] }
|
2022-06-20 21:12:05 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-07-18 21:27:38 +00:00
|
|
|
clap_blocks = { path = "../clap_blocks" }
|
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" }
|
2022-10-31 16:23:40 +00:00
|
|
|
once_cell = { version = "1.16.0", 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"
|