# 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 = "chessgen" version = "0.9.4" authors = ["Dusan Saiko "] description = "Chess moves generator" readme = "README.md" keywords = [ "chess", "bitboards", "chessprogramming", ] categories = [ "algorithms", "game-engines", "game-development", ] license = "MIT" repository = "https://github.com/dsaiko/chessgen" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [profile.dev] opt-level = 0 overflow-checks = false [profile.release] opt-level = 3 lto = true codegen-units = 1 panic = "abort" overflow-checks = false strip = "debuginfo" [lib] name = "chessgen" path = "src/chessgen/lib.rs" [[bin]] name = "chessgen-perft" path = "src/perft.rs" [dependencies.fastrand] version = "2.0.0"