From 2f260d8b27be5aa74e86e1f3da0f64ec03fb11c2 Mon Sep 17 00:00:00 2001 From: Zhenchi Date: Tue, 19 Nov 2024 19:21:58 +0800 Subject: [PATCH] fix: android build failed due to simsimd (#5019) Signed-off-by: Zhenchi --- Cargo.lock | 4 ++-- src/common/function/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 99520f8d5a3f..d0f946405457 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -11217,9 +11217,9 @@ dependencies = [ [[package]] name = "simsimd" -version = "6.0.5" +version = "4.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be2ad0164e13e58a994d3dd1ff57d44cee87c445708e3acea7ad4f03a47092ce" +checksum = "efc843bc8f12d9c8e6b734a0fe8918fc497b42f6ae0f347dbfdad5b5138ab9b4" dependencies = [ "cc", ] diff --git a/src/common/function/Cargo.toml b/src/common/function/Cargo.toml index 9a546227e826..cb876b352dd9 100644 --- a/src/common/function/Cargo.toml +++ b/src/common/function/Cargo.toml @@ -41,7 +41,7 @@ s2 = { version = "0.0.12", optional = true } serde.workspace = true serde_json.workspace = true session.workspace = true -simsimd = "6" +simsimd = "4" snafu.workspace = true sql.workspace = true statrs = "0.16"