//! This library provides a way to access system information such as CPU load, mounted filesystems,
//! network interfaces, etc.
extern crate chrono;
extern crate lazy_static;
extern crate libc;
extern crate nom;
extern crate readable_byte;
extern crate serde;
extern crate winapi;
pub use *;
pub use Platform;
pub use PlatformImpl as System;