Skip to content

Commit

Permalink
Rollup merge of rust-lang#87081 - a1phyr:add_wasi_ext_tracking_issue,…
Browse files Browse the repository at this point in the history
… r=dtolnay

Add tracking issue number to `wasi_ext`

Feature `wasi_ext` is tracked by rust-lang#71213 but is was not in the source code.
  • Loading branch information
JohnTitor committed Jul 15, 2021
2 parents ce1cec4 + 6e47c8d commit d8db5bf
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 d8db5bf

Please sign in to comment.