Use the new arroy upgrade method to move from 0.4 to 0.5

This commit is contained in:
Kerollmops
2025-03-11 14:52:46 +01:00
parent 3bc62f0549
commit 1d499ed9b2
6 changed files with 11 additions and 7 deletions

View File

@ -32,7 +32,7 @@ grenad = { version = "0.5.0", default-features = false, features = [
"rayon",
"tempfile",
] }
heed = { version = "0.22.0", branch = "bump-versions", git = "https://github.com/meilisearch/heed", default-features = false, features = [
heed = { version = "0.22.0", branch = "main", git = "https://github.com/meilisearch/heed", default-features = false, features = [
"serde-json",
"serde-bincode",
] }

View File

@ -83,6 +83,8 @@ pub use self::search::{
};
pub use self::update::ChannelCongestion;
pub use arroy;
pub type Result<T> = std::result::Result<T, error::Error>;
pub type Attribute = u32;