From ce756336159b18a6ddd3fca6ba5af4b43d824f23 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Mar 2025 11:13:31 +0000 Subject: [PATCH] Update mio requirement from 0.8 to 1.0 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.0.3) --- updated-dependencies: - dependency-name: mio 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..bd710fd1d 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.0", 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..73e2ffa44 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.0", features = ["net", "os-poll"] } url = "1" criterion = "0.4"