1[package] 2name = "structopt-derive" 3version = "0.4.18" 4edition = "2018" 5authors = ["Guillaume Pinot <texitoi@texitoi.eu>"] 6description = "Parse command line argument by defining a struct, derive crate." 7documentation = "https://docs.rs/structopt-derive" 8repository = "https://github.com/TeXitoi/structopt" 9keywords = ["clap", "cli", "derive", "docopt"] 10categories = ["command-line-interface"] 11license = "Apache-2.0/MIT" 12 13[badges] 14travis-ci = { repository = "TeXitoi/structopt" } 15 16[dependencies] 17syn = { version = "1", features = ["full"] } 18quote = "1" 19proc-macro2 = "1" 20heck = "0.3.0" 21proc-macro-error = "1.0.0" 22 23[features] 24paw = [] 25 26[lib] 27proc-macro = true 28