1// TODO: COPYRIGHT, USE & AUTHORS 2// TODO: RUST DOCS! 3 4//! A very rust-y version of GALib 5 6// External Includes 7#[macro_use] 8extern crate bitflags; 9#[macro_use] 10extern crate log; 11 12extern crate rand; 13 14// Published Modules 15pub mod ga;