aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/mozart/src/commands/remove.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/mozart/src/commands/remove.rs')
-rw-r--r--crates/mozart/src/commands/remove.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/crates/mozart/src/commands/remove.rs b/crates/mozart/src/commands/remove.rs
index c52d410..d4b3aef 100644
--- a/crates/mozart/src/commands/remove.rs
+++ b/crates/mozart/src/commands/remove.rs
@@ -279,6 +279,7 @@ pub async fn execute(
block_abandoned: false,
root_branch_alias: None,
preferred_versions: indexmap::IndexMap::new(),
+ block_insecure: false,
};
// Print header messages
@@ -567,6 +568,7 @@ async fn remove_unused(
block_abandoned: false,
root_branch_alias: None,
preferred_versions: indexmap::IndexMap::new(),
+ block_insecure: false,
};
console.info("Resolving dependencies to detect unused packages...");
@@ -925,6 +927,7 @@ mod tests {
block_abandoned: false,
root_branch_alias: None,
preferred_versions: indexmap::IndexMap::new(),
+ block_insecure: false,
};
let resolved = resolve(&request)
.await
@@ -986,6 +989,7 @@ mod tests {
block_abandoned: false,
root_branch_alias: None,
preferred_versions: indexmap::IndexMap::new(),
+ block_insecure: false,
};
let resolved2 = resolve(&request2)
.await