gametools 0.8.0

Toolkit for game-building in Rust: cards, dice, dominos, spinners, refillable pools, and ordering helpers.
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"
name = "gametools"
version = "0.8.0"
authors = ["pygmy-twylyte <davidjvbrown.md@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Toolkit for game-building in Rust: cards, dice, dominos, spinners, refillable pools, and ordering helpers."
readme = "README.md"
keywords = [
    "games",
    "dice",
    "dominos",
    "cards",
    "spinners",
]
categories = [
    "game-engines",
    "data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/pygmy-twylyte/gametools"

[package.metadata.tarpaulin]
exclude-files = ["src/bin/scratch.rs"]

[features]
default = []
serde = ["dep:serde"]

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

[[example]]
name = "cards"
path = "examples/cards/main.rs"

[[example]]
name = "dice"
path = "examples/dice/main.rs"

[[example]]
name = "priority_queue"
path = "examples/priority_queue/main.rs"

[[example]]
name = "ranked_order"
path = "examples/ranked_order/main.rs"

[[example]]
name = "refilling_pool"
path = "examples/refilling_pool/main.rs"

[[example]]
name = "scratch"
path = "examples/scratch/main.rs"

[dependencies.bytecount]
version = "0.6.9"

[dependencies.rand]
version = "0.9.0"

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

[dependencies.strum]
version = "0.27.1"

[dependencies.strum_macros]
version = "0.27.1"

[dependencies.thiserror]
version = "2.0.18"

[dependencies.uuid]
version = "1.18.1"
features = [
    "v4",
    "serde",
]