aboutsummaryrefslogtreecommitdiff
path: root/structopt/structopt-derive/Cargo.toml
blob: ad547af27c10634aa687ef2af05b8b70a0b1cf89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "structopt-derive"
version = "0.4.0"
edition = "2018"
authors = ["Guillaume Pinot <texitoi@texitoi.eu>"]
description = "Parse command line argument by defining a struct, derive crate."
documentation = "https://docs.rs/structopt-derive"
repository = "https://github.com/TeXitoi/structopt"
keywords = ["clap", "cli", "derive", "docopt"]
categories = ["command-line-interface"]
license = "Apache-2.0/MIT"

[badges]
travis-ci = { repository = "TeXitoi/structopt" }

[dependencies]
syn = { version = "1", features = ["full"] }
quote = "1"
proc-macro2 = "1"
heck = "0.3.0"
proc-macro-error = "0.4.3"

[features]
paw = []

[lib]
proc-macro = true