openmetrics-vici-exporter/Cargo.toml

17 lines
515 B
TOML
Raw Normal View History

2023-03-28 09:04:26 +02:00
[package]
name = "openmetrics-vici-exporter"
2025-02-13 17:06:08 +01:00
version = "0.2.0"
2023-03-28 09:04:26 +02:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2025-02-13 17:06:08 +01:00
config = { version = "0.15", features = ["yaml"] }
2023-03-28 09:04:26 +02:00
serde = { version = "1.0", features = ["derive"] }
2025-02-13 17:06:08 +01:00
metrics = "0.24"
metrics-exporter-prometheus = { version = "0.16", features = ["http-listener"] }
futures-util = "0.3"
tokio = { version = "1.43", features = ["rt-multi-thread","macros"] }
2023-03-28 09:04:26 +02:00
rsvici = "0.1"
2025-02-13 17:06:08 +01:00
anyhow = "1.0"