1[package] 2name = "structopt" 3version = "0.3.26" 4edition = "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"] 11license = "Apache-2.0 OR MIT" 12readme = "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"] 24paw = ["structopt-derive/paw", "paw_dep"] 25 26[badges] 27travis-ci = { repository = "TeXitoi/structopt" } 28 29[dependencies] 30clap = { version = "2.33", default-features = false } 31structopt-derive = { path = "structopt-derive", version = "=0.4.18" } 32lazy_static = "1.4.0" 33paw_dep = { version = "1", optional = true, package = "paw" } 34 35[dev-dependencies] 36trybuild = { version = "1.0.5", features = ["diff"] } 37rustversion = "1" 38strum = { version = "0.21", features = ["derive"] } 39