peshming/Cargo.toml

34 lines
1,015 B
TOML
Raw Normal View History

2019-02-01 14:56:35 +00:00
[package]
name = "peshming"
2022-04-02 23:53:03 +00:00
version = "0.5.1"
2021-04-27 19:40:51 +00:00
license = "AGPL-3.0-only"
2019-02-01 14:56:35 +00:00
authors = ["Jan Christian Grünhage <jan.christian@gruenhage.xyz>"]
2021-04-27 19:40:51 +00:00
repository = "https://git.jcg.re/jcgruenhage/peshming"
keywords = ["ping", "icmp", "prometheus"]
2022-04-02 20:13:33 +00:00
edition = "2021"
2019-02-06 18:29:27 +00:00
description = "Pings configured hosts in a configurable intervals and exposes metrics for prometheus."
build = "build.rs"
2019-02-01 14:56:35 +00:00
[dependencies]
2021-04-27 19:33:06 +00:00
toml = "0.5"
futures = "0.3"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"] }
2022-03-17 14:25:59 +00:00
clap = { version = "3", features = ["derive", "wrap_help"] }
2021-04-27 19:33:06 +00:00
fern = "0.6"
log = { version = "0.4", features = ["serde"] }
2021-04-27 19:33:06 +00:00
chrono = "0.4"
serde = { version = "1", features = ["derive"] }
2022-03-17 10:13:32 +00:00
serde_with = "1"
2021-04-27 18:55:09 +00:00
tokio-icmp-echo = "0.4"
2021-04-27 19:33:06 +00:00
futures-util = "0.3"
anyhow = "1"
async-anyhow-logger = "0.1"
2022-04-02 20:10:17 +00:00
axum = "0.5"
2022-03-17 15:11:31 +00:00
metrics = "0.18"
metrics-exporter-prometheus = { version = "0.9", default-features = false }
[build-dependencies]
clap = { version = "3", features = ["derive", "wrap_help"] }
clap_mangen = "0.1"
clap_complete = "3"