mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 14:54:15 +00:00
45 lines
884 B
TOML
45 lines
884 B
TOML
[package]
|
|
name = "clap_derive"
|
|
version = "3.0.0"
|
|
edition = "2018"
|
|
include = [
|
|
"src/**/*",
|
|
"Cargo.toml",
|
|
"LICENSE-*",
|
|
"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"
|
|
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"
|
|
|
|
[package.metadata.release]
|
|
shared-version = true
|
|
tag = false
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
bench = false
|
|
|
|
[dependencies]
|
|
syn = { version = "1.0.74", features = ["full"] }
|
|
quote = "1.0.9"
|
|
proc-macro2 = "1.0.28"
|
|
heck = "0.3.0"
|
|
proc-macro-error = "1"
|
|
|
|
[features]
|
|
default = []
|
|
debug = []
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|