From 284068d73be3624cbe225b06af60278f9a0a72f0 Mon Sep 17 00:00:00 2001 From: Dimitris Apostolou Date: Sat, 9 Mar 2024 09:36:22 +0200 Subject: [PATCH] fix: fix RUSTSEC-2024-0019 --- Cargo.lock | 4 ++-- command/Cargo.toml | 2 +- e2e/Cargo.toml | 2 +- lib/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8181c258f..8f5813391 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -868,9 +868,9 @@ dependencies = [ [[package]] name = "mio" -version = "0.8.10" +version = "0.8.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" +checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" dependencies = [ "libc", "log 0.4.20", diff --git a/command/Cargo.toml b/command/Cargo.toml index c2a428f52..900264903 100644 --- a/command/Cargo.toml +++ b/command/Cargo.toml @@ -33,7 +33,7 @@ log = "^0.4.20" time = "^0.3.31" toml = "^0.8.8" memchr = "^2.7.1" -mio = { version = "^0.8.10", features = ["os-poll", "net"] } +mio = { version = "^0.8.11", features = ["os-poll", "net"] } nix = { version = "^0.27.1", features = ["socket", "uio"] } nom = "^7.1.3" prost = "^0.12.3" diff --git a/e2e/Cargo.toml b/e2e/Cargo.toml index 9850f54e2..13494471e 100644 --- a/e2e/Cargo.toml +++ b/e2e/Cargo.toml @@ -9,7 +9,7 @@ futures = "^0.3.30" hyper = { version = "^0.14.27", features = ["client", "http1"] } hyper-rustls = { version = "^0.24.2", default-features = false, features = ["webpki-tokio", "http1", "tls12", "logging"] } libc = "^0.2.152" -mio = "^0.8.10" +mio = "^0.8.11" rustls = { version = "^0.21.10", features = ["dangerous_configuration"] } time = "^0.3.31" tokio = { version = "1.35.1", features = ["net", "rt-multi-thread"] } diff --git a/lib/Cargo.toml b/lib/Cargo.toml index de43bdc15..5bf08d851 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -37,7 +37,7 @@ idna = "^0.5.0" kawa = { version = "^0.6.4", default-features = false } libc = "^0.2.152" memchr = "^2.7.1" -mio = { version = "^0.8.10", features = ["os-poll", "os-ext", "net"] } +mio = { version = "^0.8.11", features = ["os-poll", "os-ext", "net"] } nom = { version = "^7.1.3", default-features = true, features = ["std"] } poule = "^0.3.2" rand = "^0.8.5"