bitstackchess 0.1.1

A bitboard‐based chess game engine with 10 × u128 move history
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// src/lib.rs

pub mod core;
pub mod board;
pub mod rules;

pub mod engine;
pub use engine::{ChessEngine, GameCore};

/// Stub module for a future CLI adapter. It will import only `ChessEngine` and
/// expose command‐line parsing, without touching any internals like MovePlanes.
pub mod cli_adapter;