update arroy to the latest un-released version

This commit is contained in:
Tamo
2025-07-07 12:27:19 +02:00
parent 4a2b8be428
commit 3b95007292
3 changed files with 4 additions and 3 deletions

2
Cargo.lock generated
View File

@@ -445,7 +445,7 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
[[package]] [[package]]
name = "arroy" name = "arroy"
version = "0.7.0" version = "0.7.0"
source = "git+https://github.com/meilisearch/arroy.git?rev=a63f0979b216dde10d50fdfa4fadcb2b1dea73c7#a63f0979b216dde10d50fdfa4fadcb2b1dea73c7" source = "git+https://github.com/meilisearch/arroy.git?rev=1a21e5c0cbe3e106b05d834076a5b727cf46bca1#1a21e5c0cbe3e106b05d834076a5b727cf46bca1"
dependencies = [ dependencies = [
"bytemuck", "bytemuck",
"byteorder", "byteorder",

View File

@@ -88,7 +88,7 @@ rhai = { version = "1.22.2", features = [
"sync", "sync",
] } ] }
# arroy = "0.6.1" # arroy = "0.6.1"
arroy = { git = "https://github.com/meilisearch/arroy.git", rev = "a63f0979b216dde10d50fdfa4fadcb2b1dea73c7" } # incremental update arroy = { git = "https://github.com/meilisearch/arroy.git", rev = "1a21e5c0cbe3e106b05d834076a5b727cf46bca1" } # incremental update
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"] }

View File

@@ -421,7 +421,8 @@ impl From<arroy::Error> for Error {
| arroy::Error::MissingKey { .. } | arroy::Error::MissingKey { .. }
| arroy::Error::MissingMetadata(_) | arroy::Error::MissingMetadata(_)
| arroy::Error::CannotDecodeKeyMode { .. } | arroy::Error::CannotDecodeKeyMode { .. }
| arroy::Error::UnknownVersion { .. } => { | arroy::Error::UnknownVersion { .. }
| arroy::Error::Panic(_) => {
Error::InternalError(InternalError::ArroyError(value)) Error::InternalError(InternalError::ArroyError(value))
} }
} }