From 6edc51c8d3d50b968d8b5a01a9d68994032dd1a2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 02:03:55 +0000 Subject: [PATCH 1/4] Update windows-sys requirement from 0.60.0 to 0.61.0 Updates the requirements on [windows-sys](https://github.com/microsoft/windows-rs) to permit the latest version. - [Release notes](https://github.com/microsoft/windows-rs/releases) - [Commits](https://github.com/microsoft/windows-rs/compare/0.60.0...0.61.0) --- updated-dependencies: - dependency-name: windows-sys dependency-version: 0.61.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b376bea..0b28936 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ slab = "0.4.2" tracing = { version = "0.1.37", default-features = false, optional = true } [target.'cfg(windows)'.dependencies] -windows-sys = { version = "0.60.0", features = ["Win32_Foundation"] } +windows-sys = { version = "0.61.0", features = ["Win32_Foundation"] } [build-dependencies] autocfg = "1" From 21ab419bcbe6f54ca0c711395dc7661bd4e299ff Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Mon, 8 Sep 2025 22:54:45 +0900 Subject: [PATCH 2/4] Update Cargo.toml --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0b28936..062b11c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ slab = "0.4.2" tracing = { version = "0.1.37", default-features = false, optional = true } [target.'cfg(windows)'.dependencies] -windows-sys = { version = "0.61.0", features = ["Win32_Foundation"] } +windows-sys = { version = "0.61", features = ["Win32_Foundation"] } [build-dependencies] autocfg = "1" From 55280599b1378f95c65a1321a41fc4e0c459d810 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Mon, 8 Sep 2025 22:55:22 +0900 Subject: [PATCH 3/4] Update Rust version to 1.71 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 062b11c..d25583c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ name = "async-io" version = "2.5.0" authors = ["Stjepan Glavina "] edition = "2021" -rust-version = "1.70" +rust-version = "1.71" description = "Async I/O and timers" license = "Apache-2.0 OR MIT" repository = "https://github.com/smol-rs/async-io" From ab89bcc72ff2e57e2313cd73349757f13822bdc6 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Mon, 8 Sep 2025 22:56:39 +0900 Subject: [PATCH 4/4] Update comment --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index cc04571..f080d46 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1252,7 +1252,7 @@ unsafe impl IoSafe for std::process::ChildStderr {} #[cfg(unix)] unsafe impl IoSafe for std::os::unix::net::UnixStream {} -// PipeReader & PipeWriter require std >= 1.87, our MSRV is 1.70, hence +// PipeReader & PipeWriter require std >= 1.87, our MSRV is 1.71, hence // conditional on cfg()s, generated from build.rs #[cfg(not(async_io_no_pipe))] unsafe impl IoSafe for std::io::PipeReader {}