From 7e84bbe1e3e3ad147007d8f567470e6079a80ecd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 18:55:14 +0000 Subject: [PATCH] build(deps): 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.0) --- updated-dependencies: - dependency-name: mio dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- actix-server/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-server/Cargo.toml b/actix-server/Cargo.toml index f0658542..b5a2ba7a 100644 --- a/actix-server/Cargo.toml +++ b/actix-server/Cargo.toml @@ -31,7 +31,7 @@ actix-utils = "3" futures-core = { version = "0.3.17", default-features = false, features = ["alloc"] } futures-util = { version = "0.3.17", default-features = false, features = ["alloc"] } -mio = { version = "0.8", features = ["os-poll", "net"] } +mio = { version = "1.0", features = ["os-poll", "net"] } socket2 = "0.5" tokio = { version = "1.23.1", features = ["sync"] } tracing = { version = "0.1.30", default-features = false, features = ["log"] }