From 7b39ea4554b18bce4381ff3a17769bc7baca55d6 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Wed, 17 Nov 2021 22:36:46 +0100 Subject: [PATCH] Update deps; includes a nasty bug in tokio --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4dbf651..ff908c0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,17 +12,17 @@ categories = ["asynchronous", "network-programming","command-line-utilities"] readme = "README.md" [dependencies] -anyhow = "1.0.44" +anyhow = "1.0.45" byteorder = "1.4.3" clap = { version = "2.33.3", default-features = false, features = ["wrap_help"] } clockpro-cache = "0.1.10" -coarsetime = "0.1.19" +coarsetime = "0.1.20" daemonize-simple = "0.1.5" derivative = "2.2.0" dnsstamps = "0.1.9" env_logger = { version = "0.9.0", default-features = false, features = ["humantime"] } futures = { version = "0.3.17", features = ["async-await"] } -hyper = { version = "0.14.14", default_features = false, features = ["server", "http1"], optional = true } +hyper = { version = "0.14.15", default_features = false, features = ["server", "http1"], optional = true } ipext = "0.1.0" jemallocator = "0.3.2" libsodium-sys-stable= "1.19.19" @@ -36,7 +36,7 @@ serde = "1.0.130" serde_derive = "1.0.130" serde-big-array = "0.3.2" siphasher = "0.3.7" -tokio = { version = "1.13.0", features = ["net", "io-std", "io-util", "fs", "time", "rt-multi-thread", "parking_lot"] } +tokio = { version = "1.14.0", features = ["net", "io-std", "io-util", "fs", "time", "rt-multi-thread", "parking_lot"] } toml = "0.5.8" [dependencies.prometheus]