cozy_chess_types/
lib.rs

1#![cfg_attr(not(feature = "std"), no_std)]
2#![deny(missing_docs)]
3#![doc = include_str!("../README.md")]
4
5/// Module for helper macros.
6pub mod helpers;
7
8/// The color module.
9pub mod color;
10/// The piece module
11pub mod piece;
12/// The square module.
13pub mod square;
14/// The file module.
15pub mod file;
16/// The rank module.
17pub mod rank;
18/// The bitboard module.
19pub mod bitboard;
20/// The castling module.
21pub mod castling;
22/// The sliders module.
23pub mod sliders;
24/// The chess_move module.
25pub mod chess_move;
26
27pub use color::*;
28pub use piece::*;
29pub use square::*;
30pub use file::*;
31pub use rank::*;
32pub use bitboard::*;
33pub use castling::*;
34pub use sliders::*;
35pub use chess_move::*;