2022-03-03 16:48:30 +00:00
|
|
|
[package]
|
|
|
|
name = "clap_blocks"
|
2022-09-26 14:43:00 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2022-03-03 16:48:30 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-09-29 11:14:38 +00:00
|
|
|
clap = { version = "4", features = ["derive", "env"] }
|
2022-06-27 16:17:42 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2022-04-25 21:14:11 +00:00
|
|
|
futures = "0.3"
|
2023-02-20 02:54:56 +00:00
|
|
|
http = "0.2.9"
|
2022-04-29 11:14:15 +00:00
|
|
|
humantime = "2.1.0"
|
2022-03-03 16:48:30 +00:00
|
|
|
iox_catalog = { path = "../iox_catalog" }
|
2022-04-25 21:14:11 +00:00
|
|
|
iox_time = { path = "../iox_time" }
|
2022-03-03 16:48:30 +00:00
|
|
|
metric = { path = "../metric" }
|
2023-02-08 09:40:11 +00:00
|
|
|
object_store = "0.5.4"
|
2022-03-03 16:48:30 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2022-06-16 15:20:13 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2023-02-09 10:39:33 +00:00
|
|
|
serde_json = "1.0.93"
|
2022-04-25 21:14:11 +00:00
|
|
|
snafu = "0.7"
|
|
|
|
tempfile = "3.1.0"
|
2022-03-03 16:48:30 +00:00
|
|
|
trace = { path = "../trace" }
|
2022-04-25 21:14:11 +00:00
|
|
|
trace_exporters = { path = "../trace_exporters" }
|
2022-03-03 16:48:30 +00:00
|
|
|
trogging = { path = "../trogging", default-features = false, features = ["clap"] }
|
2022-06-17 10:28:28 +00:00
|
|
|
uuid = { version = "1", features = ["v4"] }
|
2022-05-09 18:43:22 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack" }
|
2022-04-25 21:14:11 +00:00
|
|
|
write_buffer = { path = "../write_buffer" }
|
2022-05-09 18:43:22 +00:00
|
|
|
|
2022-06-16 15:20:13 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
test_helpers = { path = "../test_helpers" }
|
|
|
|
|
2022-05-09 18:43:22 +00:00
|
|
|
[features]
|
|
|
|
azure = ["object_store/azure"] # Optional Azure Object store support
|
|
|
|
gcp = ["object_store/gcp"] # Optional GCP object store support
|
|
|
|
aws = ["object_store/aws"] # Optional AWS / S3 object store support
|