othello/Cargo.toml
2026-05-04 20:49:31 -05:00

28 lines
358 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"
rand = "0.10.1"
regex = "1.12.2"
[dev-dependencies]
criterion = "0.7.0"
[[bench]]
name = "generation"
harness = false
[[bench]]
name = "reversals"
harness = false