1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#[macro_use]
extern crate log;
#[macro_use]
extern crate serde_derive;
extern crate serde;
#[macro_use]
extern crate serde_json;
extern crate byteorder;
extern crate uuid;
extern crate libc;
#[cfg(windows)]
extern crate named_pipe;

#[macro_use]
mod macros;
mod error;
mod utils;
mod connection;
pub mod models;
pub mod client;

pub use client::Client;
pub use connection::{Connection, SocketConnection};