Auto merge of #103308 - sunfishcode:sunfishcode/wasi-io-safety, r=jos… · rust-lang/rust@b1ab3b7 (original) (raw)
Navigation Menu
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit b1ab3b7
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.
File tree
1 file changed
lines changed
- library/std/src/os/wasi/io
1 file changed
lines changed
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
1 | 1 | //! WASI-specific extensions to general I/O primitives. |
2 | 2 | |
3 | -#![unstable(feature = "wasi_ext", issue = "71213")] | |
3 | +#![stable(feature = "io_safety", since = "1.63.0")] | |
4 | 4 | |
5 | -#[unstable(feature = "wasi_ext", issue = "71213")] | |
5 | +#[stable(feature = "io_safety", since = "1.63.0")] | |
6 | 6 | pub use crate::os::fd::*; |