mirror of
https://github.com/async-rs/async-std.git
synced 2025-04-11 10:56:44 +00:00
15 lines
291 B
Rust
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;
|