system-extensions 0.0.4

A robust set of extensions for operating system operations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(windows)]
mod windows;
#[cfg(windows)]
pub use self::windows::*;

#[cfg(target_os = "macos")]
mod macos;
#[cfg(target_os = "macos")]
pub use macos::*;

#[cfg(not(any(windows, target_os="macos")))]
mod linux;
#[cfg(not(any(windows, target_os="macos")))]
pub use linux::*;