1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#![doc(html_root_url = "https://jordanbray.github.io/chess/")]

pub mod color;
pub mod piece;
pub mod square;
pub mod chess_move;
pub mod bitboard;
pub mod castle_rights;
pub mod board;
pub mod magic;
pub mod construct;
extern crate rand;
#[macro_use]
extern crate lazy_static;