We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0153221 commit 84296e2Copy full SHA for 84296e2
src/bin/cargo/commands/remove.rs
@@ -110,7 +110,12 @@ pub fn exec(config: &mut Config, args: &ArgMatches) -> CliResult {
110
111
// Reload the workspace since we've changed dependencies
112
let ws = args.workspace(config)?;
113
+ let verbosity = ws.config().shell().verbosity();
114
+ ws.config()
115
+ .shell()
116
+ .set_verbosity(cargo::core::Verbosity::Quiet);
117
let (_, resolve) = resolve_ws(&ws)?;
118
+ ws.config().shell().set_verbosity(verbosity);
119
120
// Attempt to gc unused patches and re-resolve if anything is removed
121
if gc_unused_patches(&workspace, &resolve)? {
0 commit comments