claptrap 0.1.0

Bring the power of Clap to shell scripts.
Documentation
[[bin]]
name = "claptrap"
path = "src/main.rs"

[dependencies.anstream]
version = "0.6.19"

[dependencies.anstyle]
version = "1.0.11"

[dependencies.anyhow]
version = "1.0.98"

[dependencies.clap]
features = ["derive", "string", "cargo", "wrap_help", "usage", "unstable-styles", "color", "suggestions", "error-context", "env"]
version = "4.5.41"

[dependencies.clap-markdown]
version = "0.1.5"

[dependencies.clap_complete]
version = "4.5.54"

[dependencies.clap_mangen]
version = "0.2.27"

[dependencies.crc32fast]
version = "1.5.0"

[dependencies.indexmap]
features = ["serde"]
version = "2.10.0"

[dependencies.itertools]
version = "0.14.0"

[dependencies.minijinja]
version = "2.11.0"

[dependencies.schemars]
features = ["derive", "indexmap2"]
optional = true
version = "1.0.1"

[dependencies.serde]
features = ["derive"]
version = "1.0.219"

[dependencies.serde_json]
features = ["preserve_order"]
version = "1.0.140"

[dependencies.serde_yaml]
features = []
version = "=0.9.33"

[dependencies.toml]
features = ["preserve_order"]
version = "0.9.2"

[dev-dependencies.insta]
version = "1.43.1"

[dev-dependencies.test-case]
version = "3.3.1"

[features]
default = ["schema"]
schema = ["schemars"]

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

[lints.clippy]
cast_possible_truncation = "allow"
map_unwrap_or = "allow"
missing_const_for_fn = "allow"
option_if_let_else = "allow"
struct_field_names = "allow"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.clippy.nursery]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1

[package]
authors = ["FujiApple <fujiapple852@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities"]
description = "Bring the power of Clap to shell scripts."
documentation = "https://github.com/fujiapple852/claptrap"
edition = "2024"
homepage = "https://github.com/fujiapple852/claptrap"
keywords = ["cli", "clap", "parse", "arg", "shell"]
license = "Apache-2.0"
name = "claptrap"
readme = "README.md"
repository = "https://github.com/fujiapple852/claptrap"
rust-version = "1.85.0"
version = "0.1.0"

[[package.metadata.generate-rpm.assets]]
dest = "/usr/bin/claptrap"
mode = "755"
source = "target/release/claptrap"

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

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

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

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

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