rs_poker 1.0.0

A library to help with any Rust code dealing with poker. This includes card values, suits, hands, hand ranks, 5 card hand strength calculation, 7 card hand strength calulcation, and monte carlo game simulation helpers.
Documentation
[[bench]]
harness = false
name = "game"

[[bench]]
harness = false
name = "holdem_starting_hand"

[[bench]]
harness = false
name = "iter"

[[bench]]
harness = false
name = "parse"

[[bench]]
harness = false
name = "rank"
[badges.gitlab]
branch = "master"
repository = "eclark/rs-poker"
[dependencies.rand]
version = "0.6"
[dev-dependencies.criterion]
version = "0.2"

[package]
authors = ["Elliott Clark <eclark@apache.org>"]
categories = ["games"]
description = "A library to help with any Rust code dealing with poker. This includes card values, suits, hands, hand ranks, 5 card hand strength calculation, 7 card hand strength calulcation, and monte carlo game simulation helpers."
edition = "2018"
homepage = "https://docs.rs/rs_poker"
keywords = ["cards", "poker"]
license = "Apache-2.0"
name = "rs_poker"
readme = "README.md"
repository = "https://github.com/elliottneilclark/rs-poker"
version = "1.0.0"
[profile.release]
debug = true
lto = true