ocelot-chess 0.1.3

A simple(ish) chess engine written entirely in Rust with no dependencies.
1
2
3
4
5
6
//!# search
//!This module holds code to look into the future!

mod tree;

pub use tree::*;