From 80d7aa7bdc046a8ea9413d0738bee582ed128620 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Renault?= Date: Thu, 26 Jun 2025 16:54:18 +0200 Subject: [PATCH] Use a patch version of arroy to disable simd --- Cargo.lock | 5 ++--- crates/milli/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 96cfcf76c..b947ef19f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "actix-codec" @@ -394,8 +394,7 @@ checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" [[package]] name = "arroy" version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08e6111f351d004bd13e95ab540721272136fd3218b39d3ec95a2ea1c4e6a0a6" +source = "git+https://github.com/meilisearch/arroy?branch=no-simd-x86-arroy#2ebbed058a6e3292707486e5a57d754d94f3fa2a" dependencies = [ "bytemuck", "byteorder", diff --git a/crates/milli/Cargo.toml b/crates/milli/Cargo.toml index a2a020587..89b968e0b 100644 --- a/crates/milli/Cargo.toml +++ b/crates/milli/Cargo.toml @@ -87,7 +87,7 @@ rhai = { git = "https://github.com/rhaiscript/rhai", rev = "ef3df63121d27aacd838 "no_time", "sync", ] } -arroy = "0.6.1" +arroy = { git = "https://github.com/meilisearch/arroy", branch = "no-simd-x86-arroy" } rand = "0.8.5" tracing = "0.1.41" ureq = { version = "2.12.1", features = ["json"] }