blob: e081f8959bf66df57ab81609249f63776df3b5c4 [file] [log] [blame]
Matthew Maurerdc6194e2020-06-02 11:15:18 -07001[package]
2name = "structopt-derive"
David LeGareb66219a2022-03-02 16:21:26 +00003version = "0.4.18"
Matthew Maurerdc6194e2020-06-02 11:15:18 -07004edition = "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