2019-04-23 23:06:35 +02:00
|
|
|
[package]
|
2019-06-09 20:09:06 +02:00
|
|
|
name = "prometheus_wireguard_exporter"
|
2022-03-11 17:48:35 +01:00
|
|
|
version = "3.6.2"
|
2019-06-09 20:09:06 +02:00
|
|
|
authors = ["Francesco Cogno <francesco.cogno@outlook.com>"]
|
|
|
|
description = "Prometheus WireGuard Exporter"
|
|
|
|
edition = "2018"
|
2019-04-23 23:06:35 +02:00
|
|
|
|
2019-06-09 20:09:06 +02:00
|
|
|
readme = "README.md"
|
|
|
|
license = "MIT"
|
|
|
|
repository = "https://github.com/MindFlavor/prometheus_wireguard_exporter"
|
|
|
|
documentation = "https://github.com/MindFlavor/prometheus_wireguard_exporter"
|
|
|
|
homepage = "https://github.com/MindFlavor/prometheus_wireguard_exporter"
|
2019-04-23 23:06:35 +02:00
|
|
|
|
2019-06-09 20:09:06 +02:00
|
|
|
keywords = ["prometheus", "exporter", "wireguard"]
|
|
|
|
categories = ["database"]
|
2019-04-23 23:06:35 +02:00
|
|
|
|
2021-07-08 11:06:41 +02:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
leaky_log = []
|
|
|
|
|
2019-04-23 23:06:35 +02:00
|
|
|
[dependencies]
|
2021-07-08 11:06:41 +02:00
|
|
|
log = "0.4.14"
|
2021-11-03 11:14:14 +01:00
|
|
|
env_logger = "0.9.0"
|
2022-03-11 17:48:35 +01:00
|
|
|
clap = { version = "3.1.0", features = ["cargo", "env"] }
|
2021-03-25 14:17:41 +01:00
|
|
|
serde_json = "1.0"
|
|
|
|
serde = "1.0"
|
|
|
|
thiserror = "1.0"
|
2022-03-11 17:48:35 +01:00
|
|
|
anyhow = "1.0"
|
2021-03-25 14:17:41 +01:00
|
|
|
hyper = { version = "0.14", features = ["stream"] }
|
|
|
|
http = "0.2"
|
|
|
|
tokio = { version = "1.0", features = ["macros", "rt"] }
|
2022-03-11 17:48:35 +01:00
|
|
|
prometheus_exporter_base = { version = "1.3", features = ["hyper_server"] }
|
2021-07-08 11:06:41 +02:00
|
|
|
regex = "1.5.4"
|
2021-07-16 15:11:51 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-08-06 09:50:53 +02:00
|
|
|
clippy = "0.0"
|