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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#![allow(dead_code)]
#![allow(unused_variables)]

#![recursion_limit="1280"]

#[macro_use]
extern crate futures;
extern crate tokio_core;
extern crate tokio_io;
extern crate tokio_tls;

#[macro_use]
extern crate bitflags;
#[macro_use]
extern crate error_chain;
#[macro_use]
extern crate nom;
#[cfg(test)]
#[macro_use]
extern crate nom_test_helpers;
#[macro_use]
extern crate enum_primitive;
extern crate bytes;
extern crate touch;
extern crate linked_hash_map;
extern crate take;
extern crate regex;
#[macro_use]
extern crate lazy_static;
extern crate futures_mutex;
#[macro_use]
extern crate serde_derive;
extern crate serde;
extern crate bincode;

pub mod errors;
pub mod types;
pub mod proto;
pub mod client;
pub mod persistence;
pub mod tokio;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {}
}