[perft] A small Perft program

This commit is contained in:
Eryn Wells 2025-06-08 17:19:00 -07:00
parent ae0ae49093
commit 0167794346
4 changed files with 80 additions and 1 deletions

11
perft/Cargo.toml Normal file
View file

@ -0,0 +1,11 @@
[package]
name = "perft"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.98"
chessfriend_board = { path = "../board" }
chessfriend_position = { path = "../position" }
clap = { version = "4.4.12", features = ["derive"] }
thiserror = "2"