about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2022-11-15 10:44:08 +0100
committerGitHub <noreply@github.com>2022-11-15 10:44:08 +0100
commite309b79050c4dd47c08b3ef2b8228701883c5c24 (patch)
tree175288326852a78adde0625b9b7f99186dac7cb2
parent1a6ed3050ff0ba96d0fa4e91fd657fe983623330 (diff)
parent5410ac1155737da9625f0941b7947cca09683377 (diff)
downloadrust-e309b79050c4dd47c08b3ef2b8228701883c5c24.tar.gz
rust-e309b79050c4dd47c08b3ef2b8228701883c5c24.zip
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.
-rw-r--r--library/std/src/os/wasi/io/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/os/wasi/io/mod.rs b/library/std/src/os/wasi/io/mod.rs
index 57bd842a50c..4e123a1eec8 100644
--- a/library/std/src/os/wasi/io/mod.rs
+++ b/library/std/src/os/wasi/io/mod.rs
@@ -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::*;