Skip to content

Commit

Permalink
Merge pull request #103 from meilisearch/upgrade-dependencies
Browse files Browse the repository at this point in the history
Upgrade dependencies
  • Loading branch information
irevoire authored Jan 8, 2025
2 parents ee3ee47 + b9ec323 commit 38830a7
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
30 changes: 15 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,29 +11,29 @@ license = "MIT"
edition = "2021"

[dependencies]
bytemuck = { version = "1.18.0", features = ["derive", "extern_crate_alloc"] }
bytemuck = { version = "1.21.0", features = ["derive", "extern_crate_alloc"] }
byteorder = "1.5.0"
heed = { version = "0.20.2", default-features = false }
log = "0.4.21"
memmap2 = "0.9.4"
ordered-float = "4.2.0"
heed = { version = "0.21.0", default-features = false }
log = "0.4.22"
memmap2 = "0.9.5"
ordered-float = "4.6.0"
rand = { version = "0.8.5", features = ["alloc"] }
rayon = "1.10.0"
roaring = "0.10.5"
tempfile = "3.10.1"
thiserror = "1.0.61"
roaring = "0.10.9"
tempfile = "3.15.0"
thiserror = "2.0.9"
nohash = "0.2.0"

[dev-dependencies]
anyhow = "1.0.86"
arbitrary = { version = "1.3.2", features = ["derive"] }
clap = { version = "4.5.7", features = ["derive"] }
env_logger = "0.11.3"
insta = "1.39.0"
anyhow = "1.0.95"
arbitrary = { version = "1.4.1", features = ["derive"] }
clap = { version = "4.5.24", features = ["derive"] }
env_logger = "0.11.6"
insta = "1.42.0"
instant-distance = "0.6.1"
proptest = "1.5.0"
proptest = "1.6.0"
rand = { version = "0.8.5", features = ["std_rng"] }
tempfile = "3.10.1"
tempfile = "3.15.0"

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion src/item_iter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pub struct ItemIter<'t, D: Distance> {
pub(crate) inner: heed::RoPrefix<'t, KeyCodec, NodeCodec<D>>,
}

impl<'t, D: Distance> Iterator for ItemIter<'t, D> {
impl<D: Distance> Iterator for ItemIter<'_, D> {
// TODO think about exposing the UnalignedF32Slice type
type Item = Result<(ItemId, Vec<f32>)>;

Expand Down

0 comments on commit 38830a7

Please sign in to comment.