rumenx-chess 0.2.0

A high-performance chess engine and REST API server written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod attacks;
pub mod board;
pub mod game;
pub mod movegen;
pub mod pgn;
pub mod san;
pub mod types;
pub mod zobrist;

pub use board::Position;
pub use game::Game;
pub use movegen::{legal_moves, legal_moves_from};
pub use types::*;