Make all modules at least 'pub(crate)'
This commit is contained in:
parent
bd9238d686
commit
23d01d4d3f
|
@ -3,11 +3,11 @@ pub mod magic;
|
||||||
pub use magic::*;
|
pub use magic::*;
|
||||||
|
|
||||||
// Move generation implementation details
|
// Move generation implementation details
|
||||||
mod bishop;
|
pub(crate) mod bishop;
|
||||||
mod king;
|
pub(crate) mod king;
|
||||||
mod knight;
|
pub(crate) mod knight;
|
||||||
mod pawn;
|
pub(crate) mod pawn;
|
||||||
mod rook;
|
pub(crate) mod rook;
|
||||||
|
|
||||||
// Magic bitboard generation
|
// Magic bitboard generation
|
||||||
mod wizardry;
|
pub(crate) mod wizardry;
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
mod generation;
|
pub(crate) mod generation;
|
||||||
mod mask;
|
mod mask;
|
||||||
|
|
Loading…
Reference in a new issue