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