We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
wasi
cfg(not(doc))
1 parent b3bec45 commit f8a2b7dCopy full SHA for f8a2b7d
std/src/os/mod.rs
@@ -41,6 +41,10 @@ pub use crate::sys::ext as windows;
41
#[cfg(any(target_os = "linux", target_os = "l4re"))]
42
pub mod linux;
43
44
+#[cfg(not(doc))]
45
+#[cfg(target_os = "wasi")]
46
+pub mod wasi;
47
+
48
#[cfg(target_os = "android")]
49
pub mod android;
50
#[cfg(target_os = "dragonfly")]
@@ -71,7 +75,5 @@ pub mod redox;
71
75
pub mod solaris;
72
76
#[cfg(target_os = "vxworks")]
73
77
pub mod vxworks;
74
-#[cfg(target_os = "wasi")]
-pub mod wasi;
78
79
pub mod raw;
0 commit comments