1
0
Fork 0
sudoku_constraint_solver/Cargo.toml
Johann150 38157d7b5e
make the solver more generic
The solver is now not specific to Sudoku but pretty much any game where
a set of square tiles needs to be filled according to a specific rule.

Since it is not specific to Sudoku any more, it is a bit less performant,
but that is not a big issue in my use case, so is fine.
2023-10-08 21:25:56 +02:00

10 lines
222 B
TOML

[package]
name = "sudoku_constraint_solver"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "*"
simple_logger = "*"