about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYuki Okushi <jtitor@2k36.org>2021-07-15 21:19:18 +0900
committerGitHub <noreply@github.com>2021-07-15 21:19:18 +0900
commitb99f7edad2ba7d7ac8b8a6cee5d72f4907c85b9c (patch)
tree9cca1965c2e2c6310787f63738d9ac5835ad6062
parenta5acb7b4ba98044a73f26a68810190a3401c75ee (diff)
parent6e47c8db73baecd93cefa023be3336195d9ad8f5 (diff)
downloadrust-b99f7edad2ba7d7ac8b8a6cee5d72f4907c85b9c.tar.gz
rust-b99f7edad2ba7d7ac8b8a6cee5d72f4907c85b9c.zip
Rollup merge of #87081 - a1phyr:add_wasi_ext_tracking_issue, r=dtolnay
Add tracking issue number to `wasi_ext`

Feature `wasi_ext` is tracked by #71213 but is was not in the source code.
-rw-r--r--library/std/src/os/wasi/fs.rs2
-rw-r--r--library/std/src/os/wasi/io.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/os/wasi/fs.rs b/library/std/src/os/wasi/fs.rs
index 7f26f419a4b..bd30d6ae3f3 100644
--- a/library/std/src/os/wasi/fs.rs
+++ b/library/std/src/os/wasi/fs.rs
@@ -1,7 +1,7 @@
 //! WASI-specific extensions to primitives in the `std::fs` module.
 
 #![deny(unsafe_op_in_unsafe_fn)]
-#![unstable(feature = "wasi_ext", issue = "none")]
+#![unstable(feature = "wasi_ext", issue = "71213")]
 
 use crate::ffi::OsStr;
 use crate::fs::{self, File, Metadata, OpenOptions};
diff --git a/library/std/src/os/wasi/io.rs b/library/std/src/os/wasi/io.rs
index b2e79cc1b4a..cf4501b98cb 100644
--- a/library/std/src/os/wasi/io.rs
+++ b/library/std/src/os/wasi/io.rs
@@ -1,7 +1,7 @@
 //! WASI-specific extensions to general I/O primitives
 
 #![deny(unsafe_op_in_unsafe_fn)]
-#![unstable(feature = "wasi_ext", issue = "none")]
+#![unstable(feature = "wasi_ext", issue = "71213")]
 
 use crate::fs;
 use crate::io;