chore: update dependencies

This commit is contained in:
Jan Christian Grünhage 2021-04-27 21:33:06 +02:00
parent c2988995e1
commit 58ff42a3c2
2 changed files with 22 additions and 23 deletions

17
Cargo.lock generated
View file

@ -332,9 +332,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]] [[package]]
name = "libc" name = "libc"
version = "0.2.93" version = "0.2.94"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9385f66bf6105b241aa65a61cb923ef20efc665cb9f9bb50ac2f0c4b7f378d41" checksum = "18794a8ad5b29321f790b55d93dfba91e125cb1a9edbd4f8e3150acc771c1a5e"
[[package]] [[package]]
name = "lock_api" name = "lock_api"
@ -542,9 +542,9 @@ dependencies = [
[[package]] [[package]]
name = "protobuf" name = "protobuf"
version = "2.22.1" version = "2.23.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b7f4a129bb3754c25a4e04032a90173c68f85168f77118ac4cb4936e7f06f92" checksum = "45604fc7a88158e7d514d8e22e14ac746081e7a70d7690074dd0029ee37458d6"
[[package]] [[package]]
name = "quote" name = "quote"
@ -700,12 +700,11 @@ dependencies = [
[[package]] [[package]]
name = "time" name = "time"
version = "0.1.44" version = "0.1.43"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
dependencies = [ dependencies = [
"libc", "libc",
"wasi",
"winapi", "winapi",
] ]
@ -837,9 +836,9 @@ dependencies = [
[[package]] [[package]]
name = "wasi" name = "wasi"
version = "0.10.0+wasi-snapshot-preview1" version = "0.10.2+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
[[package]] [[package]]
name = "winapi" name = "winapi"

View file

@ -6,18 +6,18 @@ edition = "2018"
description = "Pings configured hosts in a configurable intervals and exposes metrics for prometheus." description = "Pings configured hosts in a configurable intervals and exposes metrics for prometheus."
[dependencies] [dependencies]
prometheus = "0.12.0" prometheus = "0.12"
toml = "0.5.8" toml = "0.5"
hyper = { version = "0.14.7", features = ["full"] } hyper = { version = "0.14", features = ["full"] }
lazy_static = "1.4.0" lazy_static = "1"
futures = "0.3.14" futures = "0.3"
tokio = { version = "1.5.0", features = ["rt-multi-thread", "macros", "time"] } tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"] }
clap = "2.33.3" clap = "2"
fern = "0.6.0" fern = "0.6"
log = "0.4.14" log = "0.4"
chrono = "0.4.19" chrono = "0.4"
serde = { version = "1.0.125", features = ["derive"] } serde = { version = "1", features = ["derive"] }
tokio-icmp-echo = "0.4" tokio-icmp-echo = "0.4"
futures-util = "0.3.14" futures-util = "0.3"
anyhow = "1.0.40" anyhow = "1"
async-anyhow-logger = "0.1.0" async-anyhow-logger = "0.1"