othello/Cargo.toml

26 lines
325 B
TOML

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