We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 209f8c8 commit 47090b1Copy full SHA for 47090b1
std/src/os/hermit/io/mod.rs
@@ -1,13 +1,4 @@
1
-#![stable(feature = "os_fd", since = "1.66.0")]
+#![stable(feature = "rust1", since = "1.0.0")]
2
3
-mod net;
4
-#[path = "../../fd/owned.rs"]
5
-mod owned;
6
-#[path = "../../fd/raw.rs"]
7
-mod raw;
8
-
9
-// Export the types and traits for the public API.
10
-#[stable(feature = "os_fd", since = "1.66.0")]
11
-pub use owned::*;
12
13
-pub use raw::*;
+#[stable(feature = "rust1", since = "1.0.0")]
+pub use crate::os::fd::*;
std/src/os/mod.rs
@@ -160,7 +160,7 @@ pub(crate) mod watchos;
160
#[cfg(target_os = "xous")]
161
pub mod xous;
162
163
-#[cfg(any(unix, target_os = "wasi", doc))]
+#[cfg(any(unix, target_os = "hermit", target_os = "wasi", doc))]
164
pub mod fd;
165
166
#[cfg(any(target_os = "linux", target_os = "android", doc))]
0 commit comments