prometheus_gbl_exporter/Cargo.toml
2023-05-29 23:08:21 +02:00

19 lines
340 B
TOML

[package]
name = "prometheus_gbl_exporter"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tiny_http = "0.12"
anyhow = "1.0.71"
# minimalize size
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"