We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a465781 + f65b268 commit 7adba3aCopy full SHA for 7adba3a
Cargo.toml
@@ -27,8 +27,8 @@ name = "rust-semver-public"
27
path = "src/bin/rust_semver_public.rs"
28
29
[dependencies]
30
-cargo = "0.43"
31
-crates-io = "0.31"
+cargo = "0.44"
+crates-io = "0.32"
32
curl = "0.4.21"
33
env_logger = "0.7"
34
anyhow = "1.0.27"
src/bin/cargo_semver.rs
@@ -72,15 +72,9 @@ fn main() {
72
cli::exit_with_error(&config, e);
73
}
74
75
- let quiet = if matches.opt_present("q") {
76
- Some(true)
77
- } else {
78
- None
79
- };
80
-
81
let config_res = config.configure(
82
0, // verbose
83
- quiet,
+ matches.opt_present("q"), // quiet
84
None, // color
85
false, // frozen
86
false, // locked
0 commit comments