# 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 = "rpg-chat-command-parser" version = "0.1.0" authors = ["Khomenko Maksym maximus.khomenko@gmail.com"] build = false include = [ "Cargo.toml", "Cargo.lock", "LICENSE", "README.md", "src/**", "tests/**", ] autobins = false autoexamples = false autotests = false autobenches = false description = "A command line parser for RPG-like chat commands. Processes commands such as '/heal Player1', '/equip sword', or '/party invite Player2', validates their structure, and produces structured output for integration into games." homepage = "https://github.com/Emril44/rpg-chat-command-parser" readme = "README.md" keywords = [ "rpg", "parser", "chat-commands", ] categories = [ "command-line-utilities", "parsing", ] license = "MIT" repository = "https://github.com/Emril44/rpg-chat-command-parser" [package.metadata.docs.rs] all-features = true [lib] name = "rpg_chat_command_parser" path = "src/lib.rs" [[bin]] name = "rpg-chat-command-parser" path = "src/main.rs" [[test]] name = "integration" path = "tests/integration.rs" [dependencies.anyhow] version = "1.0" [dependencies.clap] version = "4.0" features = ["derive"] [dependencies.pest] version = "2.1" [dependencies.pest_derive] version = "2.1" [dependencies.thiserror] version = "1.0" [dev-dependencies.assert_matches] version = "1.5"