Auto merge of #103308 - sunfishcode:sunfishcode/wasi-io-safety, r=jos… · rust-lang/rust@b1ab3b7 (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- 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
Lines changed: 2 additions & 2 deletions
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::*; |