# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies # # If you believe there's an error in this file please file an # issue against the rust-lang/cargo repository. If you're # editing this file be aware that the upstream Cargo.toml # will likely look very different (and much more reasonable) [package] edition = "2018" 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" readme = "README.md" keywords = ["chess", "perft", "move"] license = "LGPL-3.0+" repository = "https://github.com/jordanbray/chess_perft" [profile.test] opt-level = 3 [profile.dev] opt-level = 3 debug = true [profile.release] opt-level = 3 debug = false [[bench]] name = "benches" harness = false [dependencies.chess] version = "3.1.1" [dependencies.getopts] version = "0.2.19" [dependencies.shakmaty] version = "0.15.0" [dev-dependencies.bencher] version = "0.1.5"