Skip to content

Commit 84296e2

Browse files
committed
fix: add quiet verbosity during resolve
1 parent 0153221 commit 84296e2

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/bin/cargo/commands/remove.rs

+5
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,12 @@ pub fn exec(config: &mut Config, args: &ArgMatches) -> CliResult {
110110

111111
// Reload the workspace since we've changed dependencies
112112
let ws = args.workspace(config)?;
113+
let verbosity = ws.config().shell().verbosity();
114+
ws.config()
115+
.shell()
116+
.set_verbosity(cargo::core::Verbosity::Quiet);
113117
let (_, resolve) = resolve_ws(&ws)?;
118+
ws.config().shell().set_verbosity(verbosity);
114119

115120
// Attempt to gc unused patches and re-resolve if anything is removed
116121
if gc_unused_patches(&workspace, &resolve)? {

0 commit comments

Comments
 (0)