[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