diehard 1.0.0

A dice roll simulator for tabletop RPGs (and other dice games)
Documentation
[package]
name = "diehard"
version = "1.0.0"
authors = ["Michael Dippery <michael@monkey-robot.com>"]
description = "A dice roll simulator for tabletop RPGs (and other dice games)"
readme = "README.md"
documentation = "https://docs.rs/diehard"
#repository
#homepage
license = "GPL-3.0-or-later"
keywords = ["dice", "random", "simulation", "game", "rpg"]
categories = ["command-line-utilities", "game-development"]
edition = "2024"
rust-version = "1.95"

[[bin]]
name = "roll"
path = "src/main.rs"

[dependencies]
anyhow = "1.0.102"
clap = { version = "4.6.1", features = ["derive"] }
clap-verbosity-flag = "3.0.4"
env_logger = "0.11.10"
log = "0.4.32"
rand = "0.10.1"

[dev-dependencies]
paste = "1.0.15"
proptest = "1.11.0"