Skip to content

Commit 3674e38

Browse files
authored
Merge pull request #225 from LingMan/clap
Upgrade clap from 3.2 to 4.0
2 parents 7d31ae1 + 3f21bb3 commit 3674e38

File tree

8 files changed

+306
-228
lines changed

8 files changed

+306
-228
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ jobs:
3030
run: cargo test
3131
- name: Verify that binary works
3232
run: |
33-
cargo run -- bisect-rustc --help | grep "EXAMPLES:"
34-
cargo run -- --help | grep "SUBCOMMANDS:"
33+
cargo run -- bisect-rustc --help | grep "Examples:"
34+
cargo run -- --help | grep "Commands:"

Cargo.lock

Lines changed: 64 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ reqwest = { version = "0.11.12", features = ["blocking", "json"] }
2929
rustc_version = "0.4.0"
3030
serde = { version = "1.0.145", features = ["derive"] }
3131
serde_json = "1.0"
32-
clap = { version = "3.2", features = ["derive"] }
32+
clap = { version = "4.0", features = ["derive", "wrap_help"] }
3333
tar = "0.4"
3434
tee = "0.1"
3535
tempfile = "3"

0 commit comments

Comments
 (0)