enable clap's wrap_help feature

This makes the output easier to read.
This commit is contained in:
Charles Hall 2024-06-11 21:14:59 -07:00
parent 85e77832e9
commit 70fa17dde0
No known key found for this signature in database
GPG key ID: 7B8E0645816E07CF
2 changed files with 41 additions and 1 deletions

View file

@ -94,7 +94,7 @@ axum-extra = { version = "0.9.3", features = ["typed-header"] }
axum-server = { version = "0.6.0", features = ["tls-rustls"] }
base64 = "0.22.1"
bytes = "1.6.0"
clap = { version = "4.5.4", default-features = false, features = ["std", "derive", "help", "usage", "error-context", "string"] }
clap = { version = "4.5.4", default-features = false, features = ["std", "derive", "help", "usage", "error-context", "string", "wrap_help"] }
futures-util = { version = "0.3.30", default-features = false }
hmac = "0.12.1"
html-escape = "0.2.13"