littlewing 0.8.0

A chess engine rated at 2050+ ELO, compatible with both UCI and XBoard protocols, with a nice CLI, and a documented library.
Documentation
1
2
3
4
5
6
pub type Color = u8;

pub const WHITE:  Color = 0b0000; // 0
pub const BLACK:  Color = 0b0001; // 1

pub const COLORS: [Color; 2] = [WHITE, BLACK];