rs_docker/lib.rs
1//! Docker
2#![doc(html_root_url = "https://ghmlee.github.io/rust-docker/doc")]
3#[macro_use]
4extern crate serde_derive;
5
6extern crate serde;
7extern crate serde_json;
8
9// import external libraries
10
11extern crate futures;
12extern crate hyper;
13extern crate hyperlocal;
14
15// declare modules
16pub mod container;
17mod docker;
18pub mod filesystem;
19pub mod image;
20pub mod network;
21pub mod process;
22pub mod stats;
23pub mod system;
24mod test;
25pub mod version;
26
27// publicly re-export
28pub use docker::Docker;