gin-rummy-engine 0.2.0

Gin rummy bots: heuristic and Monte Carlo strategies over an information-hygienic view
Documentation
# 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 = "2024"
rust-version = "1.93"
name = "gin-rummy-engine"
version = "0.2.0"
authors = ["Chen-Pang He (https://jdh8.org)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Gin rummy bots: heuristic and Monte Carlo strategies over an information-hygienic view"
homepage = "https://github.com/jdh8/gin-rummy-engine"
documentation = "https://docs.rs/gin-rummy-engine"
readme = "README.md"
keywords = [
    "gin",
    "rummy",
    "ai",
    "bot",
    "monte-carlo",
]
categories = [
    "game-development",
    "games",
    "simulation",
]
license = "Apache-2.0"
repository = "https://github.com/jdh8/gin-rummy-engine"

[package.metadata.docs.rs]
all-features = true

[features]
default = ["rand"]
parallel = [
    "dep:rayon",
    "rand",
]
rand = [
    "dep:rand",
    "gin-rummy/rand",
]

[lib]
name = "gin_rummy_engine"
path = "src/lib.rs"

[[example]]
name = "arena"
path = "examples/arena.rs"
required-features = ["rand"]

[[example]]
name = "play"
path = "examples/play.rs"
required-features = ["rand"]

[[example]]
name = "tune"
path = "examples/tune.rs"
required-features = ["rand"]

[[test]]
name = "driver"
path = "tests/driver.rs"

[[test]]
name = "proptest"
path = "tests/proptest.rs"

[[test]]
name = "strength"
path = "tests/strength.rs"

[[test]]
name = "view"
path = "tests/view.rs"

[[bench]]
name = "decision"
path = "benches/decision.rs"
harness = false
required-features = ["rand"]

[dependencies.gin-rummy]
version = "0.1.3"

[dependencies.rand]
version = "0.10"
optional = true

[dependencies.rayon]
version = "1.10"
optional = true

[dependencies.thiserror]
version = "2"

[dev-dependencies.anyhow]
version = "1.0.98"

[dev-dependencies.criterion]
version = "0.8"
features = ["cargo_bench_support"]
default-features = false

[dev-dependencies.proptest]
version = "1.9"
features = ["std"]
default-features = false

[dev-dependencies.rayon]
version = "1.10"

[profile.dev.package."*"]
opt-level = 2