From 82afe7826a99bf77c254d744a290f9e3520b87b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Kr=C3=B6ning?= Date: Tue, 17 Sep 2024 15:49:59 +0200 Subject: [PATCH] build(deps): upgrade direct dependencies on `mio` to version 1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Kröning --- examples/miotcp/Cargo.toml | 2 +- examples/mioudp/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/miotcp/Cargo.toml b/examples/miotcp/Cargo.toml index 7ec85e3ea..6fcf92ac4 100644 --- a/examples/miotcp/Cargo.toml +++ b/examples/miotcp/Cargo.toml @@ -4,7 +4,7 @@ authors = ["Stefan Lankes "] edition = "2021" [dependencies] -mio = { version = "0.8", features = ["net", "os-poll"] } +mio = { version = "1", features = ["net", "os-poll"] } env_logger = { version = "0.11.2", default-features = false } log = { version = "0.4.8" } diff --git a/examples/mioudp/Cargo.toml b/examples/mioudp/Cargo.toml index 2aac666ef..2b2e1f737 100644 --- a/examples/mioudp/Cargo.toml +++ b/examples/mioudp/Cargo.toml @@ -4,7 +4,7 @@ authors = ["Stefan Lankes "] edition = "2021" [dependencies] -mio = { version = "0.8", features = ["net", "os-poll"] } +mio = { version = "1", features = ["net", "os-poll"] } env_logger = { version = "0.11.2", default-features = false } log = { version = "0.4.8" }