1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-30 12:37:49 +00:00

all utils: enable wrap_help

This makes clap wrap the help text according to the terminal width,
which improves readability for terminal widths < 120 chars,
because clap defaults to a width of 120 chars without this feature.
This commit is contained in:
Michael Debertol 2021-06-27 16:15:49 +02:00
parent 5fce7ecbaa
commit 2ebca384c6
96 changed files with 96 additions and 95 deletions

View file

@ -225,7 +225,7 @@ test = [ "uu_test" ]
[workspace]
[dependencies]
clap = "2.33.3"
clap = { version = "2.33", features = ["wrap_help"] }
lazy_static = { version="1.3" }
textwrap = { version="=0.11.0", features=["term_size"] } # !maint: [2020-05-10; rivy] unstable crate using undocumented features; pinned currently, will review
uucore = { version=">=0.0.8", package="uucore", path="src/uucore" }