1
2
3
4
5
6
7
8
//! This is a crate that provides datastructs who manage different types of data
//! to make it easier to safe memory and optimize loading time
#![deny(missing_docs)]
#![feature(test)]
pub mod world;

#[cfg(test)]
mod test;