openmetrics-vici-exporter/Cargo.toml

17 lines
529 B
TOML
Raw Normal View History

2023-03-28 09:04:26 +02:00
[package]
name = "openmetrics-vici-exporter"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
config = { version = "0.13.1", features = ["yaml"] }
serde = { version = "1.0", features = ["derive"] }
2023-06-27 21:00:25 +02:00
metrics = "0.21.0"
metrics-exporter-prometheus = { version = "0.12.1", features = ["http-listener"] }
2023-03-28 09:04:26 +02:00
futures-util = "0.3.25"
2023-04-05 11:42:31 +02:00
tokio = { version = "1.21.2", features = ["rt-multi-thread","macros"] }
2023-03-28 09:04:26 +02:00
rsvici = "0.1"
2023-03-28 10:23:04 +02:00
anyhow = "1.0.70"