mirror of
https://github.com/async-rs/async-std.git
synced 2025-05-01 04:31:23 +00:00
9 lines
231 B
Rust
9 lines
231 B
Rust
//! OS-specific extensions.
|
|
|
|
#[cfg(any(unix, feature = "docs"))]
|
|
#[cfg_attr(feature = "docs", doc(cfg(unix)))]
|
|
pub mod unix;
|
|
|
|
#[cfg(any(windows, feature = "docs"))]
|
|
#[cfg_attr(feature = "docs", doc(cfg(windows)))]
|
|
pub mod windows;
|