You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
801 B
TOML
27 lines
801 B
TOML
[package]
|
|
name = "rexaping"
|
|
version = "0.5.0"
|
|
license = "AGPL-3.0-only"
|
|
authors = ["Marek Isalski <marek@faelix.net>", "Jan Christian Grünhage <jan.christian@gruenhage.xyz>"]
|
|
repository = "https://gitea.faelix.net/FAELIX/rexaping"
|
|
keywords = ["ping", "icmp", "prometheus"]
|
|
edition = "2021"
|
|
description = "Pings configured hosts in a configurable intervals and labels, and exposes metrics for prometheus."
|
|
|
|
[dependencies]
|
|
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"] }
|
|
tokio-icmp-echo = "0.4"
|
|
futures-util = "0.3"
|
|
anyhow = "1"
|
|
async-anyhow-logger = "0.1"
|