mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 14:54:15 +00:00
0b045f5d0d
This is an initial implementation with plenty of room to grow, including - Allowing pulling out a subset of the generated man page for greater customization - Subcommand handling - Extra sections - Consolidate argument formatter after #2914 Fixes #552
30 lines
676 B
TOML
30 lines
676 B
TOML
[package]
|
|
name = "clap_generate"
|
|
version = "3.0.2"
|
|
edition = "2018"
|
|
include = [
|
|
"src/**/*",
|
|
"Cargo.toml",
|
|
"LICENSE-*",
|
|
"README.md"
|
|
]
|
|
description = "Renamed to clap_complete"
|
|
repository = "https://github.com/clap-rs/clap/tree/master/clap_generate"
|
|
documentation = "https://docs.rs/clap_generate"
|
|
keywords = [
|
|
"clap",
|
|
"cli",
|
|
"generate",
|
|
"completion",
|
|
]
|
|
categories = ["command-line-interface"]
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
clap = { path = "../", version = "3.0.0", default-features = false, features = ["std"] }
|
|
clap_complete = { path = "../clap_complete", version = "3.0.0"}
|
|
|
|
[features]
|
|
default = []
|
|
debug = ["clap_complete/debug"]
|