puzzle-solver/Cargo.toml

22 lines
705 B
TOML
Raw Normal View History

2017-02-18 01:21:54 +04:00
[package]
name = "puzzle-solver"
2017-04-16 02:32:52 +04:00
version = "0.4.1"
2017-02-18 01:21:54 +04:00
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/"
2017-03-05 01:58:06 +04:00
description = "Solve logic puzzles by describing their constraints. Suitable for puzzles such as Sudoku and Kakuro."
2017-02-18 01:22:44 +04:00
license = "MIT"
2017-02-26 00:36:11 +04:00
readme = "README.md"
2017-03-12 01:15:56 +04:00
keywords = ["constraint", "finite", "domain", "puzzle", "sudoku"]
2017-02-26 00:36:11 +04:00
categories = ["science"]
2021-12-07 20:47:45 +04:00
edition = "2021"
2017-02-18 01:21:54 +04:00
[dependencies]
2017-02-26 00:36:11 +04:00
bit-set = "0.4"
2017-03-13 01:30:11 +04:00
num-rational = { version = "0.1", default-features = false }
num-traits = "0.1"
2017-02-26 00:36:11 +04:00
[badges]
travis-ci = { repository = "wangds/puzzle-solver" }