1 2 3 4 5 6 7 8 9 10 11 12 13
//! Platform-specific extensions for Windows.
cfg_std! {
pub mod io;
}
cfg_unstable! {
#[cfg(feature = "default")]
pub mod fs;
#[cfg(feature = "std")]
#[cfg(windows)]
pub use async_process::windows as process;
}