[package]
edition = "2024"
name = "clap_fmt"
version = "0.1.1"
authors = ["nobane"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Serialize a clap arg parser into the command-line arguments."
readme = "README.md"
license = "MIT"
repository = "https://github.com/nobane/clap_fmt"
[lib]
name = "clap_fmt"
path = "src/lib.rs"
[[example]]
name = "advanced"
path = "examples/advanced.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[test]]
name = "test_basic"
path = "tests/test_basic.rs"
[[test]]
name = "test_bool_actions"
path = "tests/test_bool_actions.rs"
[[test]]
name = "test_count_flags"
path = "tests/test_count_flags.rs"
[[test]]
name = "test_groups"
path = "tests/test_groups.rs"
[[test]]
name = "test_multiple_values"
path = "tests/test_multiple_values.rs"
[[test]]
name = "test_numeric_types"
path = "tests/test_numeric_types.rs"
[[test]]
name = "test_required_optional"
path = "tests/test_required_optional.rs"
[[test]]
name = "test_special_args"
path = "tests/test_special_args.rs"
[[test]]
name = "test_subcommands"
path = "tests/test_subcommands.rs"
[[test]]
name = "test_value_enums"
path = "tests/test_value_enums.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.clap]
version = "4"
features = [
"derive",
"env",
]