1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
//! Lightweight web based process viewer built on top of 
//! [sysinfo](https://github.com/GuillaumeGomez/sysinfo).
//! [See more info in GitHub repository](https://github.com/onur/sysinfo-web).

pub extern crate sysinfo;
extern crate serde_json;
extern crate serde;
extern crate iron;
extern crate hostname;
#[cfg(feature = "gzip")]
extern crate flate2;

pub mod sysinfo_serde;
mod sysinfo_ext;
mod web;

pub use sysinfo_ext::SysinfoExt;
pub use web::start_web_server;