clap/Cargo.toml

33 lines
887 B
TOML
Raw Normal View History

2017-02-03 01:03:51 +01:00
[package]
name = "structopt"
version = "0.2.8"
2017-02-03 01:03:51 +01:00
authors = ["Guillaume Pinot <texitoi@texitoi.eu>"]
description = "Parse command line argument by defining a struct."
documentation = "https://docs.rs/structopt"
repository = "https://github.com/TeXitoi/structopt"
keywords = ["clap", "cli", "derive", "docopt"]
categories = ["command-line-interface"]
2018-02-25 05:22:24 -05:00
license = "Apache-2.0/MIT"
2017-02-03 01:03:51 +01:00
readme = "README.md"
[features]
default = ["clap/default"]
nightly = ["structopt-derive/nightly"]
suggestions = ["clap/suggestions"]
color = ["clap/color"]
wrap_help = ["clap/wrap_help"]
yaml = ["clap/yaml"]
lints = ["clap/lints"]
debug = ["clap/debug"]
no_cargo = ["clap/no_cargo"]
doc = ["clap/doc"]
2017-02-10 01:19:16 +01:00
[badges]
travis-ci = { repository = "TeXitoi/structopt" }
2017-02-03 01:03:51 +01:00
[dependencies]
clap = { version = "2.20", default-features = false }
structopt-derive = { path = "structopt-derive", version = "0.2.8" }
2017-02-03 01:03:51 +01:00
[workspace]