File tree Expand file tree Collapse file tree 8 files changed +2
-26
lines changed Expand file tree Collapse file tree 8 files changed +2
-26
lines changed Original file line number Diff line number Diff line change @@ -19,8 +19,7 @@ cfg_if::cfg_if! {
19
19
20
20
pub mod linux;
21
21
22
- #[ stable( feature = "wasi_ext_doc" , since = "1.35.0" ) ]
23
- pub use crate :: sys:: wasi_ext as wasi;
22
+ pub mod wasi;
24
23
25
24
pub mod windows;
26
25
} else if #[ cfg( doc) ] {
Load Diff This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 25
25
//! }
26
26
//! ```
27
27
28
+ #![ stable( feature = "rust1" , since = "1.0.0" ) ]
28
29
#![ deny( unsafe_op_in_unsafe_fn) ]
29
30
#![ doc( cfg( target_os = "wasi" ) ) ]
30
31
Original file line number Diff line number Diff line change @@ -74,20 +74,3 @@ cfg_if::cfg_if! {
74
74
pub mod c;
75
75
}
76
76
}
77
-
78
- #[ cfg( doc) ]
79
- #[ cfg( not( any(
80
- target_os = "hermit" ,
81
- all( target_arch = "wasm32" , not( target_os = "wasi" ) ) ,
82
- all( target_vendor = "fortanix" , target_env = "sgx" )
83
- ) ) ) ]
84
- cfg_if:: cfg_if! {
85
- if #[ cfg( target_os = "wasi" ) ] {
86
- #[ stable( feature = "wasi_ext_doc" , since = "1.35.0" ) ]
87
- pub use self :: ext as wasi_ext;
88
- } else {
89
- #[ path = "wasi/ext/mod.rs" ]
90
- #[ stable( feature = "wasi_ext_doc" , since = "1.35.0" ) ]
91
- pub mod wasi_ext;
92
- }
93
- }
Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ pub mod mutex;
33
33
pub mod net;
34
34
pub mod os;
35
35
pub use crate :: sys_common:: os_str_bytes as os_str;
36
- pub mod ext;
37
36
#[ path = "../unix/path.rs" ]
38
37
pub mod path;
39
38
#[ path = "../unsupported/pipe.rs" ]
You can’t perform that action at this time.
0 commit comments