Skip to content

Commit aabee96

Browse files
Update windows-sys requirement from 0.60 to 0.61 (#243)
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](microsoft/windows-rs@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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Taiki Endo <[email protected]>
1 parent db95d91 commit aabee96

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name = "async-io"
66
version = "2.5.0"
77
authors = ["Stjepan Glavina <[email protected]>"]
88
edition = "2021"
9-
rust-version = "1.70"
9+
rust-version = "1.71"
1010
description = "Async I/O and timers"
1111
license = "Apache-2.0 OR MIT"
1212
repository = "https://github.com/smol-rs/async-io"
@@ -37,7 +37,7 @@ slab = "0.4.2"
3737
tracing = { version = "0.1.37", default-features = false, optional = true }
3838

3939
[target.'cfg(windows)'.dependencies]
40-
windows-sys = { version = "0.60.0", features = ["Win32_Foundation"] }
40+
windows-sys = { version = "0.61", features = ["Win32_Foundation"] }
4141

4242
[build-dependencies]
4343
autocfg = "1"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1252,7 +1252,7 @@ unsafe impl IoSafe for std::process::ChildStderr {}
12521252
#[cfg(unix)]
12531253
unsafe impl IoSafe for std::os::unix::net::UnixStream {}
12541254

1255-
// PipeReader & PipeWriter require std >= 1.87, our MSRV is 1.70, hence
1255+
// PipeReader & PipeWriter require std >= 1.87, our MSRV is 1.71, hence
12561256
// conditional on cfg()s, generated from build.rs
12571257
#[cfg(not(async_io_no_pipe))]
12581258
unsafe impl IoSafe for std::io::PipeReader {}

0 commit comments

Comments
 (0)