Switch to hannoy with support for deletions

This commit is contained in:
Clément Renault
2025-08-07 12:03:24 +02:00
committed by Louis Dureuil
parent e000df8646
commit 6f0249cffc
2 changed files with 3 additions and 2 deletions

3
Cargo.lock generated
View File

@ -2604,7 +2604,7 @@ dependencies = [
[[package]] [[package]]
name = "hannoy" name = "hannoy"
version = "0.0.2" version = "0.0.2"
source = "git+https://github.com/nnethercott/hannoy?rev=cab22c0#cab22c01dce4c825ae4d0d8824ba51ed4cef57e1" source = "git+https://github.com/nnethercott/hannoy?branch=main#93a24c4cdf712152c90d27a2898715f22942c35c"
dependencies = [ dependencies = [
"bytemuck", "bytemuck",
"byteorder", "byteorder",
@ -2616,6 +2616,7 @@ dependencies = [
"rand 0.8.5", "rand 0.8.5",
"rayon", "rayon",
"roaring", "roaring",
"rustc-hash 2.1.1",
"thiserror 2.0.12", "thiserror 2.0.12",
"tinyvec", "tinyvec",
"tracing", "tracing",

View File

@ -88,7 +88,7 @@ rhai = { version = "1.22.2", features = [
"sync", "sync",
] } ] }
arroy = "0.6.1" arroy = "0.6.1"
hannoy = { git = "https://github.com/nnethercott/hannoy", rev = "cab22c0" } hannoy = { git = "https://github.com/nnethercott/hannoy", branch = "main" }
rand = "0.8.5" rand = "0.8.5"
tracing = "0.1.41" tracing = "0.1.41"
ureq = { version = "2.12.1", features = ["json"] } ureq = { version = "2.12.1", features = ["json"] }