File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ pub use crate::sys::windows_ext as windows;
23
23
pub mod linux;
24
24
25
25
#[ cfg( doc) ]
26
+ #[ stable( feature = "wasi_ext_doc" , since = "1.35.0" ) ]
26
27
pub use crate :: sys:: wasi_ext as wasi;
27
28
28
29
// If we're not documenting libstd then we just expose the main modules as we otherwise would.
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ cfg_if::cfg_if! {
111
111
cfg_if:: cfg_if! {
112
112
if #[ cfg( target_os = "wasi" ) ] {
113
113
// On WASI we'll document what's already available
114
- #[ stable( feature = "rust1 " , since = "1.0 .0" ) ]
114
+ #[ stable( feature = "wasi_ext_doc " , since = "1.35 .0" ) ]
115
115
pub use self :: ext as wasi_ext;
116
116
} else if #[ cfg( any( target_os = "hermit" ,
117
117
target_arch = "wasm32" ,
@@ -125,6 +125,7 @@ cfg_if::cfg_if! {
125
125
} else {
126
126
// On other platforms like Windows document the bare bones of WASI
127
127
#[ path = "wasi/ext/mod.rs" ]
128
+ #[ stable( feature = "wasi_ext_doc" , since = "1.35.0" ) ]
128
129
pub mod wasi_ext;
129
130
}
130
131
}
You can’t perform that action at this time.
0 commit comments