Skip to content

Commit 647c5a8

Browse files
committed
Bump cargo version
1 parent 3905eb9 commit 647c5a8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-c"
3-
version = "0.9.29+cargo-0.76.0"
3+
version = "0.9.30+cargo-0.77.0"
44
authors = ["Luca Barbato <[email protected]>"]
55
description = "Helper program to build and install c-like libraries"
66
license = "MIT"
@@ -28,7 +28,7 @@ name = "cargo-ctest"
2828
path = "src/bin/ctest.rs"
2929

3030
[dependencies]
31-
cargo = "0.76.0"
31+
cargo = "0.77.0"
3232
cargo-util = "0.2"
3333
semver = "1.0.3"
3434
log = "0.4"

src/cli.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ fn base_cli() -> Command {
6262
.action(ArgAction::Count)
6363
.global(true),
6464
)
65-
.arg_quiet()
65+
.arg_silent_suggestion()
6666
.arg(
6767
opt("color", "Coloring: auto, always, never")
6868
.value_name("WHEN")
@@ -80,7 +80,7 @@ fn base_cli() -> Command {
8080
.action(ArgAction::Append)
8181
.global(true),
8282
)
83-
.arg_jobs()
83+
.arg_parallel()
8484
.arg_targets_all(
8585
"Build only this package's library",
8686
"Build only the specified binary",

0 commit comments

Comments
 (0)