19 lines
588 B
TOML
19 lines
588 B
TOML
[package]
|
|
name = "puzzle-solver"
|
|
version = "0.2.0"
|
|
authors = ["David Wang <millimillenary@gmail.com>"]
|
|
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 and Kakuro."
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
keywords = ["constraint", "puzzle", "sudoku"]
|
|
categories = ["science"]
|
|
|
|
[dependencies]
|
|
bit-set = "0.4"
|
|
|
|
[badges]
|
|
travis-ci = { repository = "wangds/puzzle-solver" }
|