[package]
edition = "2024"
name = "pound"
version = "0.1.5"
authors = ["atagen"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "low footprint, derive-first CLI parser"
readme = "README.md"
keywords = [
"cli",
"args",
"argparse",
"derive",
"command-line",
]
categories = ["command-line-interface"]
license = "EUPL-1.2"
repository = "https://github.com/manic-systems/pound"
[features]
default = [
"std",
"help",
"derive",
]
derive = ["dep:pound-derive"]
help = ["pound-derive?/help"]
std = []
[lib]
name = "pound"
path = "src/lib.rs"
[[example]]
name = "grab"
path = "examples/grab.rs"
required-features = ["derive"]
[[example]]
name = "vault"
path = "examples/vault.rs"
required-features = ["derive"]
[[test]]
name = "aliases"
path = "tests/aliases.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "derive"
path = "tests/derive.rs"
[[test]]
name = "env"
path = "tests/env.rs"
[[test]]
name = "raw"
path = "tests/raw.rs"
[[test]]
name = "subcommands"
path = "tests/subcommands.rs"
[[test]]
name = "ui"
path = "tests/ui.rs"
[dependencies.pound-derive]
version = "0.1.4"
optional = true
[dev-dependencies.trybuild]
version = "1"
[lints.clippy]
arbitrary_source_item_ordering = "allow"
else_if_without_else = "allow"
exhaustive_enums = "allow"
exhaustive_structs = "allow"
implicit_return = "allow"
min_ident_chars = "allow"
missing_docs_in_private_items = "allow"
missing_errors_doc = "allow"
missing_inline_in_public_items = "allow"
mod_module_files = "allow"
module_name_repetitions = "allow"
option_if_let_else = "allow"
question_mark_used = "allow"
redundant_pub_crate = "allow"
single_call_fn = "allow"
single_char_lifetime_names = "allow"
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1