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
#![cfg_attr(feature = "dev", allow(unstable_features))]
#![cfg_attr(feature = "dev", feature(plugin))]
#![cfg_attr(feature = "dev", plugin(clippy))]
#![deny(trivial_numeric_casts,
unsafe_code,
unused_import_braces, unused_qualifications)]
#![recursion_limit = "1024"]
extern crate uuid;
extern crate rand;
extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate serde_json;
#[cfg(test)]
extern crate quickcheck;
extern crate futures;
extern crate tokio_core;
extern crate tokio_io;
extern crate tokio_timer;
extern crate bytes;
#[macro_use]
extern crate error_chain;
extern crate comms;
extern crate kabuki;
pub mod state;
pub mod engine;
pub mod net;
pub mod utils;
pub mod actors;
mod errors;
pub use errors::*;
#[cfg(test)]
mod tests {
#[test]
fn it_works() {}
}