mirror of
https://github.com/clap-rs/clap
synced 2024-12-15 07:12:32 +00:00
38 lines
1 KiB
TOML
38 lines
1 KiB
TOML
[package]
|
|
name = "clap_derive"
|
|
version = "0.3.0"
|
|
authors = [
|
|
"Guillaume Pinot <texitoi@texitoi.eu>",
|
|
"Kevin K. <kbknapp@gmail.com>",
|
|
"hoverbear <andrew@hoverbear.org>"
|
|
]
|
|
description = "Parse command line argument by defining a struct, derive crate."
|
|
documentation = "https://docs.rs/clap_derive"
|
|
repository = "https://github.com/kbknapp/clap_derive"
|
|
keywords = ["clap", "cli", "derive", "proc_macro", "parse"]
|
|
categories = ["command-line-interface", "development-tools::procedural-macro-helpers"]
|
|
license = "Apache-2.0/MIT"
|
|
readme = "README.md"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[badges]
|
|
travis-ci = { repository = "kbknapp/clap_derive" }
|
|
appveyor = { repository = "https://github.com/kbknapp/clap_derive", service = "github" }
|
|
|
|
[dependencies]
|
|
syn = "0.14"
|
|
quote = "0.6"
|
|
proc-macro2 = "0.4"
|
|
clippy = {version = "0.0.174", optional = true }
|
|
|
|
[dev-dependencies]
|
|
clap = {git = "https://github.com/kbknapp/clap-rs"} # ONLY FOR INITIAL DEVELOPMENT...change to real crates.io ver for rlease!
|
|
|
|
[features]
|
|
default = []
|
|
nightly = []
|
|
lints = ["clippy"]
|
|
debug = []
|
|
doc = []
|