rchess 2.3.0

A Chess Library Written In Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod builder;
mod castling_rights;
mod chessboard;
pub mod movegen;
mod tables;
pub mod zobrist;

pub use builder::{BoardBuilder, BoardBuilderError};
pub use chessboard::{
    BuilderConversionError, ChessBoard, FenFormatError, FenLoadError, Footprint, Move,
};
pub use movegen::{MoveCreationError, MoveGen, StrMoveCreationError};
pub use zobrist::ZobristHash;