restructured, flips working, benchmarking flips, got some basic terminal rendering
This commit is contained in:
parent
10de749e1d
commit
d7d8732904
17 changed files with 331 additions and 822 deletions
29
Cargo.toml
29
Cargo.toml
|
|
@ -1,7 +1,26 @@
|
|||
[workspace]
|
||||
members = ["iagorithms", "othello"]
|
||||
[package]
|
||||
name = "othello"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[workspace.dependencies]
|
||||
neorusticus = "0.1.3"
|
||||
ratatui = "0.29.0"
|
||||
[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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue