aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/mozart-registry/src/repository
diff options
context:
space:
mode:
Diffstat (limited to 'crates/mozart-registry/src/repository')
-rw-r--r--crates/mozart-registry/src/repository/packagist_repo.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/mozart-registry/src/repository/packagist_repo.rs b/crates/mozart-registry/src/repository/packagist_repo.rs
index a3bbf40..6f9b687 100644
--- a/crates/mozart-registry/src/repository/packagist_repo.rs
+++ b/crates/mozart-registry/src/repository/packagist_repo.rs
@@ -39,8 +39,7 @@ impl Repository for PackagistRepository {
// that distinction, so for now both surface as `Err` and the
// caller decides whether the loop wants to continue (transitive
// exploration) or abort (seed-time fetch failure).
- let versions =
- packagist::fetch_package_versions(query.name, &self.cache).await?;
+ let versions = packagist::fetch_package_versions(query.name, &self.cache).await?;
// A successful fetch counts as "this repo authoritatively knows
// the name", even if the version list is empty — mirrors
// Composer's `ArrayRepository::loadPackages` which adds the