blob: fb77ef2648ac1335d2451b8d4f4ffa99d535ed95 [file] [log] [blame]
Matthew Maurer32e76692020-06-02 11:15:15 -07001[package]
2name = "structopt"
David LeGare12ae7f82022-03-02 16:20:50 +00003version = "0.3.26"
Matthew Maurer32e76692020-06-02 11:15:15 -07004edition = "2018"
5authors = ["Guillaume Pinot <texitoi@texitoi.eu>", "others"]
6description = "Parse command line argument by defining a struct."
7documentation = "https://docs.rs/structopt"
8repository = "https://github.com/TeXitoi/structopt"
9keywords = ["clap", "cli", "derive", "docopt"]
10categories = ["command-line-interface"]
Haibo Huange7bfadf2020-09-23 21:23:42 -070011license = "Apache-2.0 OR MIT"
Matthew Maurer32e76692020-06-02 11:15:15 -070012readme = "README.md"
13
14[features]
15default = ["clap/default"]
16suggestions = ["clap/suggestions"]
17color = ["clap/color"]
18wrap_help = ["clap/wrap_help"]
19yaml = ["clap/yaml"]
20lints = ["clap/lints"]
21debug = ["clap/debug"]
22no_cargo = ["clap/no_cargo"]
23doc = ["clap/doc"]
Haibo Huange7bfadf2020-09-23 21:23:42 -070024paw = ["structopt-derive/paw", "paw_dep"]
Matthew Maurer32e76692020-06-02 11:15:15 -070025
26[badges]
27travis-ci = { repository = "TeXitoi/structopt" }
28
29[dependencies]
30clap = { version = "2.33", default-features = false }
David LeGare12ae7f82022-03-02 16:20:50 +000031structopt-derive = { path = "structopt-derive", version = "=0.4.18" }
Matthew Maurer32e76692020-06-02 11:15:15 -070032lazy_static = "1.4.0"
Haibo Huange7bfadf2020-09-23 21:23:42 -070033paw_dep = { version = "1", optional = true, package = "paw" }
Matthew Maurer32e76692020-06-02 11:15:15 -070034
35[dev-dependencies]
36trybuild = { version = "1.0.5", features = ["diff"] }
37rustversion = "1"
Joel Galenson3a84c422021-09-22 11:22:15 -070038strum = { version = "0.21", features = ["derive"] }