[package] name = "chess_perft" version = "3.1.1" authors = ["Jordan Bray "] description = "This package runs a 'perft' test on a particular chess position. This makes every move out to a certain depth, and counts the number of leaf-nodes. This is used to verify that move generation is correct and fast. This also (optionally) verifies that the hashing function produces unique values for each position." homepage = "https://github.com/jordanbray/chess_perft" repository = "https://github.com/jordanbray/chess_perft" readme = "README.md" keywords = ["chess", "perft", "move"] license = "LGPL-3.0+" edition = "2018" [profile.release] opt-level = 3 debug = false [profile.dev] opt-level = 3 debug = true [profile.test] opt-level = 3 [dependencies] chess = "3.1.1" shakmaty = "0.15.0" getopts = "0.2.19" [dev-dependencies] bencher = "0.1.5" [[bench]] name = "benches" harness = false