clap/clap_generate/Cargo.toml

47 lines
1 KiB
TOML
Raw Normal View History

2020-02-05 10:04:59 +00:00
[package]
name = "clap_generate"
2021-10-17 16:00:58 +00:00
version = "3.0.0-beta.5"
2020-02-05 10:04:59 +00:00
edition = "2018"
authors = [
"Kevin K. <kbknapp@gmail.com>",
2020-02-10 18:26:10 +00:00
"Clap Maintainers"
2020-02-05 10:04:59 +00:00
]
include = [
"src/**/*",
"Cargo.toml",
2021-10-21 12:57:49 +00:00
"LICENSE-*",
2020-02-05 10:04:59 +00:00
"README.md"
]
description = "A generator library used with clap for shell completion scripts, manpage, etc."
repository = "https://github.com/clap-rs/clap/tree/master/clap_generate"
documentation = "https://docs.rs/clap_generate"
homepage = "https://clap.rs/"
keywords = [
"clap",
"cli",
"generate",
"completion",
"manpage",
]
categories = ["command-line-interface"]
license = "MIT OR Apache-2.0"
readme = "README.md"
2020-03-04 18:31:18 +00:00
[lib]
bench = false
2020-02-05 10:04:59 +00:00
[dependencies]
2021-10-17 16:00:58 +00:00
clap = { path = "../", version = "=3.0.0-beta.5", default-features = false, features = ["std"] }
2020-02-05 10:04:59 +00:00
[dev-dependencies]
2021-06-17 17:58:27 +00:00
pretty_assertions = "0.7"
2021-02-12 05:36:31 +00:00
version-sync = "0.9"
clap = { path = "../", version = "=3.0.0-beta.5", default-features = false, features = ["std", "derive"] }
2020-02-05 10:04:59 +00:00
[features]
default = []
debug = ["clap/debug"]
[package.metadata.docs.rs]
2020-04-10 15:03:48 +00:00
targets = ["x86_64-unknown-linux-gnu"]