Make all modules at least 'pub(crate)'

This commit is contained in:
Bruno BELANYI 2022-07-24 13:40:01 +02:00
parent bd9238d686
commit 23d01d4d3f
2 changed files with 7 additions and 7 deletions

View file

@ -3,11 +3,11 @@ pub mod magic;
pub use magic::*;
// Move generation implementation details
mod bishop;
mod king;
mod knight;
mod pawn;
mod rook;
pub(crate) mod bishop;
pub(crate) mod king;
pub(crate) mod knight;
pub(crate) mod pawn;
pub(crate) mod rook;
// Magic bitboard generation
mod wizardry;
pub(crate) mod wizardry;

View file

@ -1,2 +1,2 @@
mod generation;
pub(crate) mod generation;
mod mask;