Skip to content

Commit 12b4f2e

Browse files
committed
Bump MSRV to 1.70
1 parent d1c6738 commit 12b4f2e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
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.63"
9+
rust-version = "1.70"
1010
description = "Async I/O and timers"
1111
license = "Apache-2.0 OR MIT"
1212
repository = "https://github.com/smol-rs/async-io"

src/lib.rs

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

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

0 commit comments

Comments
 (0)