1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
#![feature(custom_derive, iter_arith, plugin, step_by, test)]
#![cfg_attr(test, deny(missing_docs, warnings))]
#![forbid(unused_variables)]
#![plugin(json_macros, num_macros)]

extern crate byteorder;
extern crate flate2;
extern crate nbt;
extern crate num;
extern crate regex;
extern crate rustc_serialize;
extern crate test;
extern crate time;
extern crate uuid;

pub mod packet;
pub mod proto;
pub mod types;
mod util;