othello/Cargo.toml
2025-11-08 05:50:32 -06:00

27 lines
342 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"
[[bench]]
name = "generation"
harness = false
[[bench]]
name = "reversals"
harness = false