hyperhive/hive-metric/Cargo.toml

22 lines
585 B
TOML

[package]
name = "hive-metric"
version.workspace = true
edition.workspace = true
[[bin]]
name = "hive-metric"
path = "src/main.rs"
[dependencies]
anyhow.workspace = true
clap.workspace = true
# OTEL SDK — only used by this crate, so kept local rather than in workspace.dependencies.
opentelemetry = "0.32"
opentelemetry_sdk = { version = "0.32", features = ["metrics"] }
opentelemetry-otlp = { version = "0.32", default-features = false, features = [
"metrics",
"http-json",
"reqwest-client",
"reqwest-rustls",
] }
tokio = { workspace = true, features = ["rt", "macros"] }