From 1851e358cb2020370f9e95fe4ef791ec83840a16 Mon Sep 17 00:00:00 2001 From: Zeying Zhu Date: Sat, 9 May 2026 15:13:46 -0400 Subject: [PATCH] cleanup: re-point asap-gorilla path-dep at asap-gorilla-rust directly MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Drop the symlink indirection. Previously `asap-query-engine/Cargo.toml` had: asap-gorilla = { path = "../../ASAPCollector/asap-gorilla" } where `asap-gorilla` was a symlink to `asap-gorilla-rust/`. The symlink existed for backwards-compat with pre-unify-Gorilla-implementations (#357) consumers; with the unification done, all readers should refer to the canonical Rust crate dir directly. This is the **first** of two coordinated PRs: 1. (this) backend Cargo.toml repointed to `asap-gorilla-rust` 2. (next) collector deletes the now-unused `asap-gorilla` symlink Merge order: this PR first, otherwise the collector symlink delete breaks the backend's path resolution. Verification: - `cargo check --workspace` → clean. Co-Authored-By: Claude Opus 4.7 (1M context) --- asap-query-engine/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asap-query-engine/Cargo.toml b/asap-query-engine/Cargo.toml index c64bf84e8..ea1e2135e 100644 --- a/asap-query-engine/Cargo.toml +++ b/asap-query-engine/Cargo.toml @@ -88,7 +88,7 @@ crc32fast = "1.4" # `default-features = false` + `tokio-rustls-tls` so it shares the # rustls backend already pulled in by `reqwest`. `lru` powers the # Phase 3 `ChunkCache` keyed on chunk object key. -asap-gorilla = { path = "../../ASAPCollector/asap-gorilla" } +asap-gorilla = { path = "../../ASAPCollector/asap-gorilla-rust" } # mvp/v5 NOTE FOR REVIEWERS: this PR depends on the matching # `mvp/v5-postings-compactor` PR in ASAPCollector — specifically the # `asap_gorilla::Postings` type and the `IndexEntry::byte_offset /