Files
signal-gateway/prometheus-http-client/Cargo.toml
T

38 lines
972 B
TOML

[package]
name = "prometheus-http-client"
version = "0.1.0"
description = "HTTP client for Prometheus query API with optional time-series plotting"
keywords = ["prometheus", "metrics", "monitoring", "plotting"]
categories = ["web-programming::http-client"]
authors.workspace = true
repository.workspace = true
license.workspace = true
edition.workspace = true
include.workspace = true
[lints]
workspace = true
[dependencies]
async-trait = { workspace = true }
chrono = { workspace = true }
displaydoc = { workspace = true }
reqwest = { workspace = true }
serde = { workspace = true }
tracing = { workspace = true }
url = { workspace = true }
plotters = { workspace = true, optional = true }
[dev-dependencies]
conf = { workspace = true }
conf-extra = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true }
tracing-subscriber = { workspace = true }
[features]
default = ["plot"]
plot = ["dep:plotters"]
rustls-tls = ["reqwest/rustls-tls"]