[package]
edition = "2021"
rust-version = "1.70"
name = "slash-lang"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parser and AST for the slash-command language"
readme = "README.md"
keywords = [
"parser",
"slash",
"command",
"dsl",
]
categories = ["parsing"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/89jobrien/slash"
[lib]
name = "slash_lang"
path = "src/lib.rs"
[[example]]
name = "parse_basic"
path = "examples/parse_basic.rs"
[[example]]
name = "parse_builder"
path = "examples/parse_builder.rs"
[[example]]
name = "parse_pipeline"
path = "examples/parse_pipeline.rs"
[[test]]
name = "ast_types"
path = "tests/ast_types.rs"
[[test]]
name = "chain"
path = "tests/chain.rs"
[[test]]
name = "lexer"
path = "tests/lexer.rs"
[[test]]
name = "mod"
path = "tests/mod.rs"
[[test]]
name = "normalize"
path = "tests/normalize.rs"
[[test]]
name = "optional"
path = "tests/optional.rs"
[[test]]
name = "parser_errors"
path = "tests/parser_errors.rs"
[[test]]
name = "parser_full"
path = "tests/parser_full.rs"
[[test]]
name = "parser_smoke"
path = "tests/parser_smoke.rs"
[[test]]
name = "priority"
path = "tests/priority.rs"
[[test]]
name = "urgency"
path = "tests/urgency.rs"
[[test]]
name = "verbosity"
path = "tests/verbosity.rs"
[dependencies.thiserror]
version = "2"
[dev-dependencies.proptest]
version = "1"