Files
mycelium/mycelium-metrics/Cargo.toml
Lee Smet 2a44afd931 Bump version to v0.7.1
Signed-off-by: Lee Smet <lee.smet@hotmail.com>
2026-01-05 16:41:24 +01:00

26 lines
671 B
TOML

[package]
name = "mycelium-metrics"
version = "0.7.1"
edition = "2021"
license-file = "../LICENSE"
readme = "../README.md"
[features]
prometheus = ["dep:axum", "dep:prometheus", "dep:tokio", "dep:tracing"]
[dependencies]
axum = { version = "0.8.6", default-features = false, optional = true, features = [
"http1",
"http2",
"tokio",
] }
mycelium = { path = "../mycelium", default-features = false }
prometheus = { version = "0.14.0", default-features = false, optional = true, features = [
"process",
] }
tokio = { version = "1.48.0", default-features = false, optional = true, features = [
"net",
"rt",
] }
tracing = { version = "0.1.41", optional = true }