# 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 = "2021" name = "dicexp" version = "1.1.1" authors = ["Christopher Collin Hall"] 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" [lib] name = "dicexp" path = "src/lib.rs" [[bin]] name = "dicexp" path = "src/app.rs" required-features = ["app"] [dependencies.bytemuck] version = "1.13" [dependencies.clap] version = "4.3" features = [ "std", "color", "help", "usage", "error-context", "suggestions", "derive", "unicode", "wrap_help", ] optional = true [dependencies.rand] version = "0.8.5" [dependencies.serde] version = "1.0" features = ["derive"] optional = true [dependencies.serde_derive] version = "1.0" optional = true [dev-dependencies.serde_json] version = "1.0.104" [features] app = ["clap"] serde_support = [ "serde", "serde_derive", ]