chessfriend/position/src/lib.rs
Eryn Wells dbca7b4f88 [position, board] Move castle, movement, and sight modules to the board crate
Nothing about this code depends on Position, so push it down to a lower layer.
2025-05-21 10:08:59 -07:00

13 lines
254 B
Rust

// Eryn Wells <eryn@erynwells.me>
mod position;
#[macro_use]
mod macros;
#[cfg(test)]
#[macro_use]
mod testing;
pub use chessfriend_board::{fen, PlacePieceError, PlacePieceStrategy};
pub use position::{CastleEvaluationError, Position, ValidateMove};