othello/Cargo.toml
2025-11-11 04:10:06 -06:00

28 lines
357 B
TOML

[package]
name = "othello"
version = "0.1.0"
edition = "2024"
[lib]
name = "othello"
path = "src/lib.rs"
[[bin]]
name = "othello-cli"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.100"
regex = "1.12.2"
[dev-dependencies]
criterion = "0.7.0"
rand = "0.9.2"
[[bench]]
name = "generation"
harness = false
[[bench]]
name = "reversals"
harness = false