go-fish 0.2.0

A core engine for the classic Go Fish card game, providing game logic, deck management, and player interactions.
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.85.0"
name = "go-fish"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A core engine for the classic Go Fish card game, providing game logic, deck management, and player interactions."
documentation = "https://docs.rs/go-fish"
readme = "README.md"
keywords = [
    "game",
    "cards",
    "go-fish",
    "engine",
]
categories = ["games"]
license = "MIT"
repository = "https://github.com/SmithTom6304/go-fish"

[features]
bots = []

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

[[test]]
name = "complete_games"
path = "tests/complete_games.rs"
required-features = ["bots"]

[dependencies.enum-iterator]
version = "2.3.0"

[dependencies.rand]
version = "0.10"

[dependencies.rand_distr]
version = "0.6"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.tracing]
version = "0.1.44"

[dependencies.tracing-subscriber]
version = "0.3.22"
features = [
    "default",
    "env-filter",
]

[dev-dependencies.proptest]
version = "1"

[dev-dependencies.rstest]
version = "0.26.1"