From d2d9e6eb7e0c6e2c3d1390832f10e14d6a5d4d3b Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Mon, 19 Jul 2021 22:36:55 +0200 Subject: [PATCH] Update deps; especially for tokio 1.8.2 bug fixes --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 76abcd4..3f4a238 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ categories = ["asynchronous", "network-programming","command-line-utilities"] readme = "README.md" [dependencies] -anyhow = "1.0.41" +anyhow = "1.0.42" byteorder = "1.4.3" clap = { version = "2.33.3", default-features = false, features = ["wrap_help"] } clockpro-cache = "0.1.10" @@ -22,10 +22,10 @@ derivative = "2.2.0" dnsstamps = "0.1.7" env_logger = { version = "0.9.0", default-features = false, features = ["humantime"] } futures = { version = "0.3.15", features = ["async-await"] } -hyper = { version = "0.14.9", default_features = false, features = ["server", "http1"], optional = true } +hyper = { version = "0.14.10", default_features = false, features = ["server", "http1"], optional = true } ipext = "0.1.0" jemallocator = "0.3.2" -libsodium-sys-stable= "1.19.17" +libsodium-sys-stable= "1.19.18" log = { version = "0.4.14", features = ["std", "release_max_level_debug"] } socket2 = "0.4.0" parking_lot = "0.11.1" @@ -36,7 +36,7 @@ serde = "1.0.126" serde_derive = "1.0.126" serde-big-array = "0.3.2" siphasher = "0.3.5" -tokio = { version = "1.8.0", features = ["net", "io-std", "io-util", "fs", "time", "rt-multi-thread", "parking_lot"] } +tokio = { version = "1.8.2", features = ["net", "io-std", "io-util", "fs", "time", "rt-multi-thread", "parking_lot"] } toml = "0.5.8" [dependencies.prometheus]