Joel Therrien
4f2d3a6c58
There is a bug where if a puzzle isn't found, the program never returns; hence this is WIP.
16 lines
No EOL
346 B
TOML
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"] |