mirror of
https://github.com/chylex/Apache-Prometheus-Exporter.git
synced 2025-05-13 08:34:06 +02:00
22 lines
566 B
TOML
22 lines
566 B
TOML
[package]
|
|
name = "apache_prometheus_exporter"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "apache_prometheus_exporter"
|
|
path = "src/main.rs"
|
|
|
|
[profile.release]
|
|
strip = true
|
|
lto = true
|
|
codegen-units = 1
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.75"
|
|
hyper = { version = "0.14.27", default-features = false, features = ["http1", "server", "runtime"] }
|
|
notify = { version = "6.1.1", default-features = false, features = ["macos_kqueue"] }
|
|
path-slash = "0.2.1"
|
|
prometheus-client = "0.21.2"
|
|
tokio = { version = "1.32.0", features = ["fs", "io-util", "macros", "rt", "signal"] }
|