Files
pezkuwi-sdk/bizinikiwi/utils/prometheus/Cargo.toml
T
pezkuwichain 78095d125e fix: quick-checks CI failures - taplo format, zepter, umbrella
1. TOML format (taplo): 123 files reformatted using correct config
   - Command: taplo format --config .config/taplo.toml

2. Zepter feature propagation fix:
   - pezframe-support: added pezsp-timestamp/try-runtime to try-runtime feature

3. generate-umbrella.py bug fix:
   - Script crashed when Cargo.toml/src didn't exist in umbrella dir
   - Added existence checks before deletion
2026-01-26 00:39:59 +03:00

48 lines
1.1 KiB
TOML

[package]
description = "Endpoint to expose Prometheus metrics"
name = "bizinikiwi-prometheus-endpoint"
version = "0.17.0"
license = "Apache-2.0"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
repository.workspace = true
readme = "README.md"
documentation.workspace = true
[lints]
workspace = true
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
http-body-util = { workspace = true }
hyper = { features = ["http1", "server"], workspace = true }
hyper-util = { features = [
"server-auto",
"server-graceful",
"tokio",
], workspace = true }
log = { workspace = true, default-features = true }
prometheus = { workspace = true }
thiserror = { workspace = true }
tokio = { features = [
"net",
"parking_lot",
], workspace = true, default-features = true }
[dev-dependencies]
hyper-util = { features = [
"client-legacy",
"tokio",
], workspace = true, default-features = true }
tokio = { features = [
"macros",
"rt-multi-thread",
], workspace = true, default-features = true }
[features]
std = ["log/std"]
serde = []