From 5f18a9b2ee4a7aa6bc2cb01888ac427d1fd7e752 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Renault?= Date: Thu, 2 Oct 2025 11:00:48 +0200 Subject: [PATCH] Move dependencies to actual versions --- Cargo.lock | 9 ++++++--- crates/milli/Cargo.toml | 6 +++--- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7d20ade3e..be75bd332 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -454,7 +454,8 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" [[package]] name = "arroy" version = "0.6.4-nested-rtxns" -source = "git+https://github.com/meilisearch/arroy?branch=use-heed-nested-rtxns#61c8f4f0addeff968e80438018d0aee2c1eb8d67" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb8b6b34d9d83e3b837cb7f72a439dbd2293b102393c084af5e5b097212e1532" dependencies = [ "bytemuck", "byteorder", @@ -1075,7 +1076,8 @@ dependencies = [ [[package]] name = "cellulite" version = "0.3.1-nested-rtxns" -source = "git+https://github.com/meilisearch/cellulite?branch=use-heed-nested-rtxns#9fb1866cc49277d26f606769112fa704944ccc61" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db298d57a80b9284327800b394ee3921307c2fdda87c6d37202f5cf400478981" dependencies = [ "crossbeam", "geo", @@ -2757,7 +2759,8 @@ dependencies = [ [[package]] name = "hannoy" version = "0.0.9-nested-rtxns" -source = "git+https://github.com/nnethercott/hannoy?branch=use-heed-nested-rtxns#d4ca5454eff6539e9fc2119f07113abebbda0a39" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc5a945b92b063e677d658cfcc7cb6dec2502fe44631f017084938f14d6ce30e" dependencies = [ "bytemuck", "byteorder", diff --git a/crates/milli/Cargo.toml b/crates/milli/Cargo.toml index 7fe46b53d..7a9db7412 100644 --- a/crates/milli/Cargo.toml +++ b/crates/milli/Cargo.toml @@ -19,7 +19,7 @@ bstr = "1.12.0" bytemuck = { version = "1.23.1", features = ["extern_crate_alloc"] } byteorder = "1.5.0" charabia = { version = "0.9.7", default-features = false } -cellulite = { version = "0.3.1-nested-rtxns", git = "https://github.com/meilisearch/cellulite", "branch" = "use-heed-nested-rtxns" } +cellulite = "0.3.1-nested-rtxns" concat-arrays = "0.1.2" convert_case = "0.8.0" crossbeam-channel = "0.5.15" @@ -89,8 +89,8 @@ rhai = { version = "1.22.2", features = [ "no_time", "sync", ] } -arroy = { version = "0.6.4-nested-rtxns", git = "https://github.com/meilisearch/arroy", "branch" = "use-heed-nested-rtxns" } -hannoy = { version = "0.0.9-nested-rtxns", git = "https://github.com/nnethercott/hannoy", "branch" = "use-heed-nested-rtxns", features = ["arroy"] } +arroy = "0.6.4-nested-rtxns" +hannoy = { version = "0.0.9-nested-rtxns", features = ["arroy"] } rand = "0.8.5" tracing = "0.1.41" ureq = { version = "2.12.1", features = ["json"] }