Skip to content

Commit

Permalink
Auto merge of rust-lang#103308 - sunfishcode:sunfishcode/wasi-io-safe…
Browse files Browse the repository at this point in the history
…ty, 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 rust-lang#103306.
  • Loading branch information
bors committed Oct 21, 2022
2 parents dcb3761 + 7ac645a commit b1ab3b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/std/src/os/wasi/io/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! WASI-specific extensions to general I/O primitives.

#![unstable(feature = "wasi_ext", issue = "71213")]
#![stable(feature = "io_safety", since = "1.63.0")]

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

0 comments on commit b1ab3b7

Please sign in to comment.