Skip to content

Commit

Permalink
Rollup merge of #87081 - a1phyr:add_wasi_ext_tracking_issue, r=dtolnay
Browse files Browse the repository at this point in the history
Add tracking issue number to `wasi_ext`

Feature `wasi_ext` is tracked by #71213 but is was not in the source code.
  • Loading branch information
JohnTitor authored Jul 15, 2021
2 parents a5acb7b + 6e47c8d commit b99f7ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library/std/src/os/wasi/fs.rs
Original file line number Diff line number Diff line change
@@ -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};
Expand Down
2 changes: 1 addition & 1 deletion library/std/src/os/wasi/io.rs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down

0 comments on commit b99f7ed

Please sign in to comment.