2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-04-11 10:56:44 +00:00
async-std/src/os/unix/mod.rs
2020-12-01 16:02:00 +01:00

15 lines
291 B
Rust

//! Platform-specific extensions for Unix platforms.
cfg_std! {
pub mod io;
}
cfg_default! {
pub mod fs;
pub mod net;
}
#[cfg(all(feature = "unstable", feature = "std"))]
#[cfg_attr(feature = "docs", doc(cfg(unstable)))]
#[doc(inline)]
pub use async_process::unix as process;