# 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" rust-version = "1.63.0" name = "poker" version = "0.5.0" authors = ["Daniel Mack"] description = "A crate for speedy poker hand evaluation" documentation = "https://docs.rs/poker" readme = "README.md" keywords = [ "poker", "card", "game", "evaluate", "holdem", ] categories = [ "algorithms", "data-structures", "games", "game-development", ] license = "MIT" repository = "https://github.com/deus-x-mackina/poker" [package.metadata.docs.rs] all-features = true [profile.bench] lto = true codegen-units = 1 [profile.release] lto = true codegen-units = 1 [lib] bench = false [[bench]] name = "evaluation" harness = false required-features = ["static_lookup"] [dependencies.cfg-if] version = "1" [dependencies.itertools] version = "0.10" [dependencies.phf] version = "0.11" optional = true [dependencies.rand] version = "0.8" optional = true [dependencies.rustc-hash] version = "1" [dependencies.variter] version = "0.3" default-features = false [dev-dependencies.colored] version = "2" [dev-dependencies.criterion] version = "0.5" features = ["html_reports"] [dev-dependencies.doc-comment] version = "0.3" [dev-dependencies.lazy_static] version = "1.4" [dev-dependencies.rustyline] version = "11" [dev-dependencies.rustyline-derive] version = "0.8" [build-dependencies.reqwest] version = "0.11" features = ["blocking"] optional = true [features] default = ["rand"] static_lookup = [ "phf", "reqwest", ]