2020-01-18 17:40:07 +05:30
|
|
|
[package]
|
|
|
|
name = "clap_derive"
|
2021-08-14 23:40:49 +01:00
|
|
|
version = "3.0.0-beta.4"
|
2020-01-18 17:40:07 +05:30
|
|
|
edition = "2018"
|
|
|
|
authors = [
|
2020-02-03 11:22:49 +01:00
|
|
|
"Guillaume Pinot <texitoi@texitoi.eu>",
|
2020-02-10 19:26:10 +01:00
|
|
|
"Clap Maintainers"
|
2020-02-03 11:22:49 +01:00
|
|
|
]
|
|
|
|
include = [
|
|
|
|
"src/**/*",
|
|
|
|
"Cargo.toml",
|
|
|
|
"README.md"
|
2020-01-18 17:40:07 +05:30
|
|
|
]
|
|
|
|
description = "Parse command line argument by defining a struct, derive crate."
|
2020-02-03 11:22:49 +01:00
|
|
|
repository = "https://github.com/clap-rs/clap/tree/master/clap_derive"
|
2020-01-18 17:40:07 +05:30
|
|
|
documentation = "https://docs.rs/clap_derive"
|
2020-02-03 11:22:49 +01:00
|
|
|
homepage = "https://clap.rs/"
|
|
|
|
keywords = [
|
|
|
|
"clap",
|
|
|
|
"cli",
|
2020-05-11 11:13:35 +02:00
|
|
|
"parse",
|
2020-02-03 11:22:49 +01:00
|
|
|
"derive",
|
2020-05-11 11:13:35 +02:00
|
|
|
"proc_macro"
|
2020-02-03 11:22:49 +01:00
|
|
|
]
|
2020-01-18 17:40:07 +05:30
|
|
|
categories = ["command-line-interface", "development-tools::procedural-macro-helpers"]
|
2020-02-03 11:22:49 +01:00
|
|
|
license = "MIT OR Apache-2.0"
|
2020-01-18 17:40:07 +05:30
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
2020-03-04 21:31:18 +03:00
|
|
|
bench = false
|
2020-01-18 17:40:07 +05:30
|
|
|
|
|
|
|
[dependencies]
|
2021-07-29 15:27:20 -05:00
|
|
|
syn = { version = "1.0.74", features = ["full"] }
|
2021-04-11 10:38:13 +01:00
|
|
|
quote = "1.0.9"
|
2021-07-29 15:27:20 -05:00
|
|
|
proc-macro2 = "1.0.28"
|
2020-01-18 17:40:07 +05:30
|
|
|
heck = "0.3.0"
|
2020-05-29 00:10:12 +02:00
|
|
|
proc-macro-error = "1"
|
2020-01-18 17:40:07 +05:30
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-05-03 11:48:01 +02:00
|
|
|
clap = { path = "../" }
|
2020-10-09 01:05:05 +03:00
|
|
|
clap_generate = { path = "../clap_generate" }
|
2020-02-10 19:26:10 +01:00
|
|
|
trybuild = "1.0"
|
2020-01-31 14:58:00 +07:00
|
|
|
rustversion = "1"
|
2021-02-14 09:50:21 +00:00
|
|
|
version-sync = "0.9"
|
2020-01-18 17:40:07 +05:30
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
debug = []
|
2020-02-03 11:22:49 +01:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
2020-04-10 17:03:48 +02:00
|
|
|
targets = ["x86_64-unknown-linux-gnu"]
|