[dependencies]
[dev-dependencies.pretty_assertions]
version = "1"
[dev-dependencies.proptest]
version = "1"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "env_defaults"
path = "examples/env_defaults.rs"
[[example]]
name = "git"
path = "examples/git.rs"
[[example]]
name = "subcommands"
path = "examples/subcommands.rs"
[features]
color = []
default = ["help", "suggest", "color"]
help = []
suggest = []
[lib]
name = "rust_args_parser"
path = "src/lib.rs"
[lints.clippy]
cargo = "warn"
complexity = "warn"
correctness = "warn"
nursery = "warn"
pedantic = "warn"
performance = "warn"
redundant_pub_crate = "warn"
style = "warn"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-interface"]
description = "Tiny, fast, callback-based CLI argument parser for Rust"
documentation = "https://docs.rs/rust-args-parser"
edition = "2021"
homepage = "https://github.com/milchinskiy/rust-args-parser"
keywords = ["cli", "command-line", "args", "parser"]
license = "MIT OR Apache-2.0"
name = "rust-args-parser"
readme = "README.md"
repository = "https://github.com/milchinskiy/rust-args-parser"
rust-version = "1.60"
version = "1.0.1"
[[test]]
name = "builtins"
path = "tests/builtins.rs"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "complex"
path = "tests/complex.rs"
[[test]]
name = "env_defaults"
path = "tests/env_defaults.rs"
[[test]]
name = "flags_values"
path = "tests/flags_values.rs"
[[test]]
name = "groups"
path = "tests/groups.rs"
[[test]]
name = "help"
path = "tests/help.rs"
[[test]]
name = "positionals"
path = "tests/positionals.rs"
[[test]]
name = "subcommands"
path = "tests/subcommands.rs"
[[test]]
name = "suggest"
path = "tests/suggest.rs"
[[test]]
name = "utils"
path = "tests/utils.rs"
[[test]]
name = "validators"
path = "tests/validators.rs"