1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
pub use self::platform_impl::*; #[cfg(target_os = "windows")] #[path = "windows/mod.rs"] mod platform_impl; #[cfg(any( target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "netbsd", target_os = "openbsd", ))] #[path = "unix/mod.rs"] mod platform_impl; #[cfg(target_os = "macos")] #[path = "macos/mod.rs"] mod platform_impl; #[cfg(target_os = "android")] #[path = "android/mod.rs"] mod platform_impl; #[cfg(target_os = "ios")] #[path = "ios/mod.rs"] mod platform_impl; #[cfg(target_os = "emscripten")] #[path = "emscripten/mod.rs"] mod platform_impl;