peshming/Cargo.toml

24 lines
629 B
TOML
Raw Normal View History

2019-02-01 14:56:35 +00:00
[package]
name = "peshming"
version = "0.4.0"
2019-02-01 14:56:35 +00:00
authors = ["Jan Christian Grünhage <jan.christian@gruenhage.xyz>"]
edition = "2018"
2019-02-06 18:29:27 +00:00
description = "Pings configured hosts in a configurable intervals and exposes metrics for prometheus."
2019-02-01 14:56:35 +00:00
[dependencies]
2021-04-27 19:33:06 +00:00
prometheus = "0.12"
toml = "0.5"
hyper = { version = "0.14", features = ["full"] }
lazy_static = "1"
futures = "0.3"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"] }
clap = "2"
fern = "0.6"
log = "0.4"
chrono = "0.4"
serde = { version = "1", features = ["derive"] }
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"