1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
//! docker-rs is a rust library to interact with Docker API
//!
//! * Currently the only method to connect to docker is through unix
//! socket.
#[macro_use]
extern crate quick_error;

#[macro_use]
extern crate serde_derive;

extern crate serde;
extern crate serde_json;

pub mod api;
pub mod client;
mod errors;
mod utils;

pub use client::DockerClient;