clap/clap_derive/Cargo.toml
Marti Raudsepp bc7cc4fbab Add examples for using value_hint with clap_derive
Also tweaked clap_generate example a little.
2020-10-10 00:11:44 +03:00

60 lines
1.3 KiB
TOML

[package]
name = "clap_derive"
version = "3.0.0-beta.2"
edition = "2018"
authors = [
"Guillaume Pinot <texitoi@texitoi.eu>",
"Clap Maintainers"
]
include = [
"src/**/*",
"Cargo.toml",
"README.md"
]
description = "Parse command line argument by defining a struct, derive crate."
repository = "https://github.com/clap-rs/clap/tree/master/clap_derive"
documentation = "https://docs.rs/clap_derive"
homepage = "https://clap.rs/"
keywords = [
"clap",
"cli",
"parse",
"derive",
"proc_macro"
]
categories = ["command-line-interface", "development-tools::procedural-macro-helpers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
[badges]
is-it-maintained-issue-resolution = { repository = "clap-rs/clap" }
is-it-maintained-open-issues = { repository = "clap-rs/clap" }
maintenance = {status = "actively-developed"}
[lib]
proc-macro = true
bench = false
[dependencies]
syn = { version = "1", features = ["full"] }
quote = "1"
proc-macro2 = "1"
heck = "0.3.0"
proc-macro-error = "1"
[dev-dependencies]
clap = { path = "../" }
clap_generate = { path = "../clap_generate" }
trybuild = "1.0"
rustversion = "1"
version-sync = "0.8"
[features]
default = []
unstable = []
debug = []
doc = []
[package.metadata.docs.rs]
features = ["doc"]
targets = ["x86_64-unknown-linux-gnu"]