[package]
edition = "2024"
name = "d20"
version = "0.2.0"
authors = [
"Dan Nemeth <dan.nemeth@gmail.com>",
"Kevin Hoffman <alothien@gmail.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A library for rolling dice based on simple expressions"
homepage = "https://github.com/pholactery/d20"
documentation = "https://docs.rs/d20"
readme = "README.md"
keywords = [
"dice",
"roll",
"game",
"random",
"dnd",
]
license = "MPL-2.0"
repository = "https://github.com/pholactery/d20"
[lib]
name = "d20"
path = "src/lib.rs"
[[test]]
name = "characterization"
path = "tests/characterization.rs"
[[test]]
name = "properties"
path = "tests/properties.rs"
[dependencies.rand]
version = "0.10"
[dependencies.regex]
version = "1"
[dependencies.thiserror]
version = "2"
[dev-dependencies.proptest]
version = "1"