# 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 are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "rchess" version = "2.0.0" build = "src/build.rs" autobins = false autoexamples = false autotests = false autobenches = false description = "A Chess Library Written In Rust" documentation = "https://docs.rs/rchess/2.0.0/rchess/" readme = "README.md" keywords = [ "chess", "board", "chessboard", ] categories = ["data-structures"] license = "MIT OR Apache-2.0" repository = "https://github.com/Shadowcat650/rchess" [profile.bench.build-override] opt-level = 3 [profile.dev.build-override] opt-level = 3 [profile.release.build-override] opt-level = 3 [profile.test] opt-level = 3 [profile.test.build-override] opt-level = 3 [lib] name = "rchess" path = "src/lib.rs" [[test]] name = "game" path = "tests/game.rs" [[test]] name = "hashes" path = "tests/hashes.rs" [[test]] name = "perft" path = "tests/perft.rs" [[test]] name = "positions" path = "tests/positions.rs" [[bench]] name = "perfts" path = "benches/perfts.rs" harness = false [dependencies.thiserror] version = "2.0.3" [dev-dependencies.criterion] version = "0.5.1" [build-dependencies.fastrand] version = "2.1.0" [build-dependencies.lazy_static] version = "1.5.0"