From 203418ae4989cc5e286f671fc7eea178fd14c5d1 Mon Sep 17 00:00:00 2001 From: Kerollmops Date: Wed, 30 Jul 2025 09:39:55 +0200 Subject: [PATCH] Use a more feature-full Hannoy version --- Cargo.lock | 7 +------ crates/milli/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a689649ab..fba44e3ef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2604,23 +2604,18 @@ dependencies = [ [[package]] name = "hannoy" version = "0.0.1" -source = "git+https://github.com/nnethercott/hannoy?tag=v0.0.1#d51750cd5612b6875375f5f4ad3928c87d55ee38" +source = "git+https://github.com/Kerollmops/hannoy?branch=release-0.0.2#f016685623dadf20bd75df0748b45643d326b146" dependencies = [ "bytemuck", "byteorder", - "enum-iterator", "hashbrown 0.15.4", "heed", - "memmap2", "min-max-heap", - "nohash", - "ordered-float 5.0.0", "page_size", "papaya", "rand 0.8.5", "rayon", "roaring", - "tempfile", "thiserror 2.0.12", "tinyvec", "tracing", diff --git a/crates/milli/Cargo.toml b/crates/milli/Cargo.toml index b24a1779f..3ff7cb323 100644 --- a/crates/milli/Cargo.toml +++ b/crates/milli/Cargo.toml @@ -88,7 +88,7 @@ rhai = { version = "1.22.2", features = [ "sync", ] } arroy = "0.6.1" -hannoy = { git = "https://github.com/nnethercott/hannoy", tag = "v0.0.1" } +hannoy = { git = "https://github.com/Kerollmops/hannoy", branch = "release-0.0.2" } rand = "0.8.5" tracing = "0.1.41" ureq = { version = "2.12.1", features = ["json"] }