Rollup merge of #103734 - Mark-Simulacrum:fix-version-stabilized, r=JohnTitor

Adjust stabilization version to 1.65.0 for wasi fds

See https://github.com/rust-lang/rust/pull/103308#issuecomment-1292277645 for this ask.

Backport of that PR to beta (1.65.0) will include a similar patch.
This commit is contained in:
Matthias Krüger 2022-11-15 10:44:08 +01:00 committed by GitHub
commit e309b79050
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
//! WASI-specific extensions to general I/O primitives.
#![stable(feature = "io_safety", since = "1.63.0")]
#![stable(feature = "io_safety_wasi", since = "1.65.0")]
#[stable(feature = "io_safety", since = "1.63.0")]
#[stable(feature = "io_safety_wasi", since = "1.65.0")]
pub use crate::os::fd::*;