1 | //! Platform-specific extensions for Unix platforms. |
---|---|
2 | |
3 | cfg_std! { |
4 | pub mod io; |
5 | } |
6 | |
7 | cfg_default! { |
8 | pub mod fs; |
9 | pub mod net; |
10 | } |
11 | |
12 | #[cfg(all(feature = "unstable", feature = "std"))] |
13 | #[cfg_attr(feature = "docs", doc(cfg(unstable)))] |
14 | #[doc(inline)] |
15 | pub use async_process::unix as process; |
16 |