1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#![cfg_attr(test, deny(missing_docs, warnings))]
#![forbid(unused_variables)]
// #![feature(associated_type_defaults)]
// #![feature(read_exact)]

extern crate byteorder;
extern crate flate2;
#[macro_use]
extern crate log;
pub extern crate nbt;
extern crate num;
extern crate rand;
extern crate regex;
extern crate rustc_serialize;
extern crate time;
extern crate uuid;

pub mod consts;
pub mod packet;
pub mod proto;
pub mod types;
mod util;
pub mod vanilla;
pub mod world;