2017-02-18 01:21:54 +04:00
|
|
|
[package]
|
|
|
|
name = "puzzle-solver"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["David Wang <millimillenary@gmail.com>"]
|
2017-02-26 00:36:11 +04:00
|
|
|
homepage = "https://github.com/wangds/puzzle-solver.git"
|
|
|
|
repository = "https://github.com/wangds/puzzle-solver.git"
|
|
|
|
documentation = "https://docs.rs/puzzle-solver/"
|
|
|
|
description = "Solve logic puzzles by describing their constraints. Suitable for puzzles such as Sudoku."
|
2017-02-18 01:22:44 +04:00
|
|
|
license = "MIT"
|
2017-02-26 00:36:11 +04:00
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["constraint", "puzzle", "sudoku"]
|
|
|
|
categories = ["science"]
|
2017-02-18 01:21:54 +04:00
|
|
|
|
|
|
|
[dependencies]
|
2017-02-26 00:36:11 +04:00
|
|
|
bit-set = "0.4"
|
|
|
|
|
|
|
|
[badges]
|
|
|
|
travis-ci = { repository = "wangds/puzzle-solver" }
|