From 15cd6a8786a59ae3697085b0e45c22dce207fa94 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 Oct 2025 13:15:25 +0000 Subject: [PATCH] Update mio requirement from 0.8 to 1.1 Updates the requirements on [mio](https://github.com/tokio-rs/mio) to permit the latest version. - [Release notes](https://github.com/tokio-rs/mio/releases) - [Changelog](https://github.com/tokio-rs/mio/blob/master/CHANGELOG.md) - [Commits](https://github.com/tokio-rs/mio/compare/v0.8.0...v1.1.0) --- updated-dependencies: - dependency-name: mio dependency-version: 1.1.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- apps/Cargo.toml | 2 +- quiche/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/Cargo.toml b/apps/Cargo.toml index 3c9db1a9e..33f168b26 100644 --- a/apps/Cargo.toml +++ b/apps/Cargo.toml @@ -23,7 +23,7 @@ default = [ "sfv"] [dependencies] docopt = "1" env_logger = "0.6" -mio = { version = "0.8", features = ["net", "os-poll"] } +mio = { version = "1.1", features = ["net", "os-poll"] } url = "1" log = "0.4" octets = { version = "0.2", path = "../octets" } diff --git a/quiche/Cargo.toml b/quiche/Cargo.toml index 0b0c0886a..f3f36e67c 100644 --- a/quiche/Cargo.toml +++ b/quiche/Cargo.toml @@ -75,7 +75,7 @@ env_logger = "0.6" winapi = { version = "0.3", features = ["wincrypt", "ws2def", "ws2ipdef", "ws2tcpip"] } [dev-dependencies] -mio = { version = "0.8", features = ["net", "os-poll"] } +mio = { version = "1.1", features = ["net", "os-poll"] } url = "1" criterion = "0.4"