clap/clap_generate/Cargo.toml
Sondre Nilsen 0b045f5d0d
feat(man): Initial man generator (#3174)
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
2022-01-28 14:55:55 -06:00

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"]