aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/mozart/src/commands/reinstall.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/mozart/src/commands/reinstall.rs')
-rw-r--r--crates/mozart/src/commands/reinstall.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/mozart/src/commands/reinstall.rs b/crates/mozart/src/commands/reinstall.rs
index c19d926..2df55c5 100644
--- a/crates/mozart/src/commands/reinstall.rs
+++ b/crates/mozart/src/commands/reinstall.rs
@@ -112,7 +112,7 @@ pub async fn execute(
// Step 5: Determine packages to reinstall.
// Build the full set of installed packages (prod + dev unless --no-dev).
- let dev_package_names: std::collections::HashSet<String> = installed
+ let dev_package_names: indexmap::IndexSet<String> = installed
.dev_package_names
.iter()
.map(|n| n.to_lowercase())
@@ -666,7 +666,7 @@ mod tests {
installed.packages.push(e2.clone());
installed.dev_package_names = vec!["phpunit/phpunit".to_string()];
- let dev_package_names: std::collections::HashSet<String> = installed
+ let dev_package_names: indexmap::IndexSet<String> = installed
.dev_package_names
.iter()
.map(|n| n.to_lowercase())