2020-01-18 12:10:07 +00:00
|
|
|
[package]
|
|
|
|
name = "clap_derive"
|
2021-12-09 13:00:33 +00:00
|
|
|
version = "3.0.0-rc.1"
|
2020-01-18 12:10:07 +00:00
|
|
|
edition = "2018"
|
2020-02-03 10:22:49 +00:00
|
|
|
include = [
|
|
|
|
"src/**/*",
|
|
|
|
"Cargo.toml",
|
2021-10-21 12:57:49 +00:00
|
|
|
"LICENSE-*",
|
2020-02-03 10:22:49 +00:00
|
|
|
"README.md"
|
2020-01-18 12:10:07 +00:00
|
|
|
]
|
|
|
|
description = "Parse command line argument by defining a struct, derive crate."
|
2020-02-03 10:22:49 +00:00
|
|
|
repository = "https://github.com/clap-rs/clap/tree/master/clap_derive"
|
2020-01-18 12:10:07 +00:00
|
|
|
documentation = "https://docs.rs/clap_derive"
|
2020-02-03 10:22:49 +00:00
|
|
|
keywords = [
|
|
|
|
"clap",
|
|
|
|
"cli",
|
2020-05-11 09:13:35 +00:00
|
|
|
"parse",
|
2020-02-03 10:22:49 +00:00
|
|
|
"derive",
|
2020-05-11 09:13:35 +00:00
|
|
|
"proc_macro"
|
2020-02-03 10:22:49 +00:00
|
|
|
]
|
2020-01-18 12:10:07 +00:00
|
|
|
categories = ["command-line-interface", "development-tools::procedural-macro-helpers"]
|
2020-02-03 10:22:49 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2020-01-18 12:10:07 +00:00
|
|
|
readme = "README.md"
|
|
|
|
|
2021-12-08 03:26:57 +00:00
|
|
|
[package.metadata.release]
|
|
|
|
shared-version = true
|
|
|
|
tag = false
|
|
|
|
|
2020-01-18 12:10:07 +00:00
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
2020-03-04 18:31:18 +00:00
|
|
|
bench = false
|
2020-01-18 12:10:07 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2021-07-29 20:27:20 +00:00
|
|
|
syn = { version = "1.0.74", features = ["full"] }
|
2021-04-11 09:38:13 +00:00
|
|
|
quote = "1.0.9"
|
2021-07-29 20:27:20 +00:00
|
|
|
proc-macro2 = "1.0.28"
|
2020-01-18 12:10:07 +00:00
|
|
|
heck = "0.3.0"
|
2020-05-28 22:10:12 +00:00
|
|
|
proc-macro-error = "1"
|
2020-01-18 12:10:07 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
debug = []
|
2020-02-03 10:22:49 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
2020-04-10 15:03:48 +00:00
|
|
|
targets = ["x86_64-unknown-linux-gnu"]
|