mirror of
https://github.com/clap-rs/clap
synced 2024-12-15 15:22:30 +00:00
Allow clap features to be activated independently (#100)
This commit is contained in:
parent
ccb04a30cc
commit
4111f9c6f8
2 changed files with 10 additions and 0 deletions
|
@ -5,6 +5,8 @@
|
|||
short-circuiting flags. ([#98](https://github.com/TeXitoi/structopt/pull/98)
|
||||
by [@quodlibetor](https://github.com/quodlibetor))
|
||||
|
||||
* Allow users to enable `clap` features independently.
|
||||
|
||||
# v0.2.7 (2018-04-12)
|
||||
|
||||
* Add flattening, the insertion of options of another StructOpt struct into another ([#92](https://github.com/TeXitoi/structopt/pull/92)) by [@birkenfeld](https://github.com/birkenfeld)
|
||||
|
|
|
@ -13,6 +13,14 @@ 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"]
|
||||
|
||||
[badges]
|
||||
travis-ci = { repository = "TeXitoi/structopt" }
|
||||
|
|
Loading…
Reference in a new issue