Skip to content

Commit b1ab3b7

Browse files
committed
Auto merge of #103308 - sunfishcode:sunfishcode/wasi-io-safety, r=joshtriplett
Mark `std::os::wasi::io::AsFd` etc. as stable. io_safety was stabilized in Rust 1.63, so mark the io_safety exports in `std::os::wasi::io` as stable. Fixes #103306.
2 parents dcb3761 + 7ac645a commit b1ab3b7

File tree

1 file changed

+2
-2
lines changed
  • library/std/src/os/wasi/io

1 file changed

+2
-2
lines changed

library/std/src/os/wasi/io/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! WASI-specific extensions to general I/O primitives.
22
3-
#![unstable(feature = "wasi_ext", issue = "71213")]
3+
#![stable(feature = "io_safety", since = "1.63.0")]
44

5-
#[unstable(feature = "wasi_ext", issue = "71213")]
5+
#[stable(feature = "io_safety", since = "1.63.0")]
66
pub use crate::os::fd::*;

0 commit comments

Comments
 (0)