dicexp 1.3.0

A Dice Expression Interpreter program and library for parsing (and rolling) role-playing game style dice notations (e.g. "2d8+5")
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 = "dicexp"
version = "1.3.0"
authors = ["Christopher Collin Hall"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = 'A Dice Expression Interpreter program and library for parsing (and rolling) role-playing game style dice notations (e.g. "2d8+5")'
homepage = "https://github.com/DrPlantabyte/DiceXp-rs.git"
documentation = "https://docs.rs/dicexp/"
readme = "README.md"
keywords = [
    "dice",
    "TTRPG",
]
categories = ["text-processing"]
license = "MPL-2.0"
repository = "https://github.com/DrPlantabyte/DiceXp-rs.git"

[features]
app = ["clap"]
serde_support = [
    "serde",
    "serde_derive",
]

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

[[bin]]
name = "dicexp"
path = "src/app.rs"
required-features = ["app"]

[dependencies.bytemuck]
version = "1.25"

[dependencies.clap]
version = "4.5"
features = [
    "std",
    "color",
    "help",
    "usage",
    "error-context",
    "suggestions",
    "derive",
    "unicode",
    "wrap_help",
]
optional = true

[dependencies.rand]
version = "0.10.0"

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

[dependencies.serde_derive]
version = "1.0"
optional = true

[dev-dependencies.serde_json]
version = "1.0"