aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/installer.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/installer.rs')
-rw-r--r--crates/shirabe/src/installer.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/shirabe/src/installer.rs b/crates/shirabe/src/installer.rs
index 068b85c3..6d943ea7 100644
--- a/crates/shirabe/src/installer.rs
+++ b/crates/shirabe/src/installer.rs
@@ -1436,14 +1436,13 @@ impl Installer {
alias_normalized: alias.get("alias_normalized").cloned().unwrap_or_default(),
})
.collect();
- let temporary_constraints: IndexMap<String, AnyConstraint> = IndexMap::new();
let mut repository_set = RepositorySet::new(
&minimum_stability,
stability_flags,
root_aliases_input,
self.package.get_references().clone(),
root_requires,
- temporary_constraints,
+ self.temporary_constraints.clone(),
);
repository_set.add_repository(crate::repository::RepositoryInterfaceHandle::new(
RootPackageRepository::new(self.fixed_root_package.clone()),