1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#[macro_use]
extern crate error_chain;
#[macro_use]
extern crate lazy_static;
extern crate rmp_serde as msgpack;
extern crate serde;
#[macro_use]
extern crate serde_derive;

pub mod configuration;
pub mod error;

#[cfg(test)]
mod tests;