From 12c62d315d0700827c5109720dabd9c50c06c491 Mon Sep 17 00:00:00 2001 From: daimond113 Date: Sun, 9 Mar 2025 12:59:59 +0100 Subject: [PATCH] refactor: build search without async It didn't benefit from being async (nothing is a future in there). For some reason Clippy didn't complain despite the unused_async lint being enabled. --- registry/CHANGELOG.md | 4 ++++ registry/src/main.rs | 2 +- registry/src/search.rs | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/registry/CHANGELOG.md b/registry/CHANGELOG.md index bcbdbbe..d757269 100644 --- a/registry/CHANGELOG.md +++ b/registry/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unreleased] +### Changed +- Make search building not async (as it didn't benefit from it) by @daimond113 + ## [0.2.1] - 2025-03-02 ### Changed - Print more error info by @daimond113 diff --git a/registry/src/main.rs b/registry/src/main.rs index 09eb3c6..7951f17 100644 --- a/registry/src/main.rs +++ b/registry/src/main.rs @@ -122,7 +122,7 @@ async fn run() -> std::io::Result<()> { .await .expect("failed to get index config"); - let (search_reader, search_writer, query_parser) = make_search(&project, &source).await; + let (search_reader, search_writer, query_parser) = make_search(&project, &source); let app_data = web::Data::new(AppState { storage: { diff --git a/registry/src/search.rs b/registry/src/search.rs index 6604289..01197dd 100644 --- a/registry/src/search.rs +++ b/registry/src/search.rs @@ -103,7 +103,7 @@ pub fn find_max_searchable(file: &IndexFile) -> Option<(&VersionId, &IndexFileEn }) } -pub async fn make_search( +pub fn make_search( project: &Project, source: &PesdePackageSource, ) -> (IndexReader, IndexWriter, QueryParser) {