sysinfo_web/lib.rs
1//! Lightweight web based process viewer built on top of
2//! [sysinfo](https://github.com/GuillaumeGomez/sysinfo).
3//! [See more info in GitHub repository](https://github.com/onur/sysinfo-web).
4
5pub extern crate sysinfo;
6extern crate serde_json;
7extern crate serde;
8extern crate iron;
9extern crate hostname;
10#[cfg(feature = "gzip")]
11extern crate flate2;
12
13pub mod sysinfo_serde;
14mod sysinfo_ext;
15mod web;
16
17pub use sysinfo_ext::SysinfoExt;
18pub use web::start_web_server;