dice-parser 0.1.1

A parser and roller for standard RPG dice notation.
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 = "dice-parser"
version = "0.1.1"
build = false
exclude = [".github/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A parser and roller for standard RPG dice notation."
readme = "README.md"
keywords = [
    "dice",
    "rpg",
    "parser",
    "roller",
    "tabletop",
]
categories = [
    "games",
    "parsing",
]
license = "GPL-3.0-only"
repository = "https://github.com/marcell-ziegler/dice-parser"

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

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

[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"

[[example]]
name = "complete_api"
path = "examples/complete_api.rs"

[[example]]
name = "custom_rng"
path = "examples/custom_rng.rs"

[[example]]
name = "error_handling"
path = "examples/error_handling.rs"

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

[dependencies.rand]
version = "0.9.2"