Add dependency: bit-set.

We will be using bit-sets to keep track of which puzzle variables are
used in which constraints, and which constraints need to be woken up.
This commit is contained in:
David Wang 2017-02-18 16:05:10 +11:00
parent eebe23f2e0
commit c62c26aafd
2 changed files with 3 additions and 0 deletions

View File

@ -5,3 +5,4 @@ authors = ["David Wang <millimillenary@gmail.com>"]
license = "MIT"
[dependencies]
bit-set = "*"

View File

@ -1,2 +1,4 @@
//! This crate searches for the solutions to logic puzzles.
//! The puzzle rules are expressed as constraints.
extern crate bit_set;