/ fedimint-metrics / Cargo.toml
Cargo.toml
 1  [package]
 2  name = "fedimint-metrics"
 3  version = {workspace = true}
 4  edition = "2021"
 5  license = "MIT"
 6  readme = "README.md"
 7  description = "fedimint-metrics allows exporting prometheus metrics from Fedimint."
 8  repository = "https://github.com/fedimint/fedimint"
 9  
10  [package.metadata.docs.rs]
11  rustc-args = ["--cfg", "tokio_unstable"]
12  
13  [lib]
14  name = "fedimint_metrics"
15  path = "./src/lib.rs"
16  
17  [dependencies]
18  anyhow = { version = "1.0.83", features = ["backtrace"] }
19  axum = "0.7.5"
20  fedimint-core = { version = "=0.4.0-alpha", path = "../fedimint-core" }
21  lazy_static = "1.4.0"
22  prometheus = "0.13.4"
23  tokio = "1"
24  tracing = { workspace = true }