-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
37 lines (35 loc) · 1011 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
[package]
name = "iptables_exporter"
version = "0.4.0"
edition = "2021"
authors = [
"Kevin K. <kbknapp@gmail.com>",
]
description = "A Prometheus exporter for iptables"
repository = "https://github.com/kbknapp/iptables_exporter"
keywords = [
"prometheus",
"iptables",
"exporter",
"prometheus_exporter",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
readme = "README.md"
rust-version = "1.74.1" # MSRV
[badges]
is-it-maintained-issue-resolution = { repository = "kbknapp/iptables_exporter" }
is-it-maintained-open-issues = { repository = "kbknapp/iptables_exporter" }
maintenance = {status = "actively-developed"}
[dependencies]
anyhow = "1.0.40"
clap = {version= "4.0.0", features = ["derive", "cargo", "wrap_help"]}
once_cell = "1.17.0"
prometheus = "0.13.3"
prometheus-hyper = "0.1.2"
regex = "1.7.1"
strum = { version = "0.24.1", features = ["derive"] }
thiserror = "1.0.24"
tokio = { version = "1.5.0", features = ["full"] }
tracing = "0.1.25"
tracing-subscriber = "0.3.16"