We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb4b6d3 commit ba72f3dCopy full SHA for ba72f3d
2 files changed
CHANGELOG.md
@@ -1,5 +1,6 @@
1
v0.0.3
2
- Added optional `tracing` instrumentation to Game - use the `instrument_game` feature to enable.
3
+ - Additional 3x increase in build speed, by only rebuilding magic bitboards when necessary.
4
5
v0.0.2
6
- Added `Board::en_passant_target` to match standard meaning - for now, `Board::en_passant` should still be preferred in the hot path.
src/build.rs
@@ -18,5 +18,7 @@ mod square;
18
use crate::gen_tables::generate_all_tables;
19
// Generate everything.
20
fn main() {
21
+ println!("cargo:rerun-if-changed=src/gen_tables/");
22
+
23
generate_all_tables();
24
}
0 commit comments