[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.
This commit is contained in:
Eryn Wells 2025-05-21 10:08:59 -07:00
parent 9a4fa827f9
commit dbca7b4f88
7 changed files with 334 additions and 80 deletions

View file

@ -5,6 +5,8 @@ pub mod display;
pub mod en_passant;
pub mod fen;
pub mod macros;
pub mod movement;
pub mod sight;
mod board;
mod piece_sets;