[package]
edition = "2024"
name = "clars"
version = "0.1.1"
authors = ["Dariusz Depta <depta@engos.de>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command line argument resolution system"
documentation = "https://docs.rs/clars"
readme = "README.md"
keywords = [
"command",
"line",
"argument",
"resolution",
"system",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/EngosSoftware/clars.git"
[lib]
name = "clars"
path = "src/lib.rs"
[[example]]
name = "sedi"
path = "examples/sedi.rs"
[[test]]
name = "mod"
path = "tests/mod.rs"
[[test]]
name = "test_lexer"
path = "tests/test_lexer.rs"
[[test]]
name = "test_model"
path = "tests/test_model.rs"
[[test]]
name = "test_parser"
path = "tests/test_parser.rs"