[package] name = "clap_derive" version = "0.3.0" authors = [ "Guillaume Pinot ", "Kevin K. ", "hoverbear " ] 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 } [features] default = [] nightly = [] lints = ["clippy"] debug = [] doc = []