forked from JonathanHelianthicusDoe/shticker_book_unwritten
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The upgrade to clap v4 has mostly only changed the help texts (specifically the ones that you get from passing either the `-h` or `--help` flags). These now look quite a bit different, although the content is substantially identical. There’s no more coloration, and help texts should now only wrap at your terminal’s width, which might be difficult to read if your terminal is many characters wide. In any case, this required adding the `"wrap_help"` feature to clap. Other features were also added, but they are not new; they were just not previously optional.
- Loading branch information
1 parent
3d827ac
commit 2ddbe9b
Showing
2 changed files
with
54 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "shticker_book_unwritten" | ||
version = "1.1.0" | ||
version = "1.2.0" | ||
authors = ["Dr. Jonathan Helianthicus Doe, IV <[email protected]>"] | ||
edition = "2021" | ||
description = "Minimal CLI launcher for the Toontown Rewritten MMORPG" | ||
|
@@ -14,17 +14,25 @@ license = "GPL-3.0-or-later" | |
[dependencies] | ||
bzip2 = "0.4.3" | ||
rpassword = "7.0.0" | ||
serde = { version = "1.0.140", features = ["derive"] } | ||
serde_json = "1.0.82" | ||
serde = { version = "1.0.145", features = ["derive"] } | ||
serde_json = "1.0.85" | ||
sha-1 = "0.10.0" | ||
|
||
[dependencies.clap] | ||
version = "3.2.15" | ||
version = "4.0.4" | ||
default-features = false | ||
features = ["std", "cargo", "suggestions"] | ||
features = [ | ||
"std", | ||
"cargo", | ||
"suggestions", | ||
"help", | ||
"usage", | ||
"error-context", | ||
"wrap_help", | ||
] | ||
|
||
[dependencies.reqwest] | ||
version = "0.11.11" | ||
version = "0.11.12" | ||
default-features = false | ||
features = ["blocking", "rustls-tls"] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters