1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

#![feature(integer_atomics)]
#![feature(try_from)]
#![feature(vec_resize_default)]
#![feature(fn_traits)]
#![feature(read_initializer)]

extern crate serde;
extern crate rmp_serde as rmps;

extern crate byteorder;

mod error;
pub mod queue;
pub mod sync;
pub mod async;
pub mod connection;
pub mod message;
pub mod protocol;
pub mod tracker;
pub mod macros;

pub use error::RPCError;
pub use error::RPCResult;

pub use protocol::FlugrostProtocol;