nanoargs 0.5.0

A minimal, zero-dependency argument parser for Rust CLI applications
Documentation
# 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 = "nanoargs"
version = "0.5.0"
authors = ["Anthony Sgro"]
build = false
exclude = ["tests/*.proptest-regressions"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A minimal, zero-dependency argument parser for Rust CLI applications"
readme = "README.md"
keywords = [
    "cli",
    "args",
    "parser",
    "arguments",
    "command-line",
]
categories = ["command-line-interface"]
license = "MIT"
repository = "https://github.com/anthonysgro/nanoargs"

[features]
color = ["dep:nanocolor"]

[lib]
name = "nanoargs"
path = "src/lib.rs"

[[example]]
name = "builder_api"
path = "examples/builder_api.rs"

[[example]]
name = "completions"
path = "examples/completions.rs"

[[example]]
name = "env_fallback"
path = "examples/env_fallback.rs"

[[example]]
name = "error_handling"
path = "examples/error_handling.rs"

[[example]]
name = "extract"
path = "examples/extract.rs"

[[example]]
name = "help_text"
path = "examples/help_text.rs"

[[example]]
name = "subcommands"
path = "examples/subcommands.rs"

[[example]]
name = "value_validation"
path = "examples/value_validation.rs"

[[test]]
name = "prop_alignment"
path = "tests/prop_alignment.rs"

[[test]]
name = "prop_api_inversion"
path = "tests/prop_api_inversion.rs"

[[test]]
name = "prop_bugfix"
path = "tests/prop_bugfix.rs"

[[test]]
name = "prop_colored_help"
path = "tests/prop_colored_help.rs"

[[test]]
name = "prop_completions"
path = "tests/prop_completions.rs"

[[test]]
name = "prop_convenience_validators"
path = "tests/prop_convenience_validators.rs"

[[test]]
name = "prop_core"
path = "tests/prop_core.rs"

[[test]]
name = "prop_env_var"
path = "tests/prop_env_var.rs"

[[test]]
name = "prop_extract_macro"
path = "tests/prop_extract_macro.rs"

[[test]]
name = "prop_flag_builder"
path = "tests/prop_flag_builder.rs"

[[test]]
name = "prop_multi_value"
path = "tests/prop_multi_value.rs"

[[test]]
name = "prop_named_builder"
path = "tests/prop_named_builder.rs"

[[test]]
name = "prop_option_builder"
path = "tests/prop_option_builder.rs"

[[test]]
name = "prop_positional_default_multi"
path = "tests/prop_positional_default_multi.rs"

[[test]]
name = "prop_short_flags"
path = "tests/prop_short_flags.rs"

[[test]]
name = "prop_subcommands"
path = "tests/prop_subcommands.rs"

[[test]]
name = "prop_typed_helpers"
path = "tests/prop_typed_helpers.rs"

[[test]]
name = "prop_utf8_safety"
path = "tests/prop_utf8_safety.rs"

[[test]]
name = "prop_value_validation"
path = "tests/prop_value_validation.rs"

[[test]]
name = "prop_version"
path = "tests/prop_version.rs"

[dependencies.nanocolor]
version = "0.1"
optional = true

[dev-dependencies.proptest]
version = "1"