diff options
| author | Benoît du Garreau <bdgdlm@outlook.com> | 2021-07-12 14:59:29 +0200 |
|---|---|---|
| committer | Benoît du Garreau <bdgdlm@outlook.com> | 2021-07-12 15:01:39 +0200 |
| commit | 6e47c8db73baecd93cefa023be3336195d9ad8f5 (patch) | |
| tree | 72cdc915744894a404b87e5301c1c99b7a588cd8 | |
| parent | e97c29bda238cf55ddd7eec772deb823364b1846 (diff) | |
| download | rust-6e47c8db73baecd93cefa023be3336195d9ad8f5.tar.gz rust-6e47c8db73baecd93cefa023be3336195d9ad8f5.zip | |
Add tracking issue number to `wasi_ext`
| -rw-r--r-- | library/std/src/os/wasi/fs.rs | 2 | ||||
| -rw-r--r-- | library/std/src/os/wasi/io.rs | 2 |
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; |
