[package] name = "clap_derive" version = "3.0.0-rc.1" 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"]