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