rust-sudoku-solver/Cargo.toml
Joel Therrien 4f2d3a6c58 Add WIP support for multi-threaded generation of puzzles
There is a bug where if a puzzle isn't found, the program never
returns; hence this is WIP.
2020-09-26 14:46:22 -07:00

16 lines
No EOL
346 B
TOML

[package]
name = "sudoku_solver"
version = "0.1.0"
authors = ["Joel Therrien <joel@joeltherrien.ca>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
csv = "1.1.3"
argparse = "0.2.2"
printpdf = "0.3.2"
[dependencies.rand]
version = "0.7"
features = ["small_rng"]