-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
40 lines (36 loc) · 1021 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "wireguard_exporter"
version = "0.3.0"
edition = "2021"
authors = [
"Kevin K. <kbknapp@gmail.com>",
]
description = "A Prometheus exporter for WireGuard"
repository = "https://github.com/kbknapp/wireguard_exporter"
keywords = [
"prometheus",
"wireguard",
"exporter",
"prometheus_exporter",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
readme = "README.md"
[badges]
is-it-maintained-issue-resolution = { repository = "kbknapp/wireguard_exporter" }
is-it-maintained-open-issues = { repository = "kbknapp/wireguard_exporter" }
maintenance = {status = "actively-developed"}
[dependencies]
color-eyre = { version = "0.5.11", default-features = false }
clap = "3.0.0-beta.5"
prometheus = "0.13.0"
prometheus-hyper = "0.1.3"
tokio = { version = "1.5.0", features = ["full"] }
tracing = "0.1.25"
tracing-subscriber = "0.3.1"
base64 = "0.13.0"
time = { version = "0.3.5", features = ["local-offset"] }
maxminddb = "0.24.0"
[build-dependencies]
clap = "3.0.0-beta.5"
[features]