File tree 2 files changed +16
-16
lines changed
2 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -11,29 +11,29 @@ license = "MIT"
11
11
edition = " 2021"
12
12
13
13
[dependencies ]
14
- bytemuck = { version = " 1.18 .0" , features = [" derive" , " extern_crate_alloc" ] }
14
+ bytemuck = { version = " 1.21 .0" , features = [" derive" , " extern_crate_alloc" ] }
15
15
byteorder = " 1.5.0"
16
- heed = { version = " 0.20.2 " , default-features = false }
17
- log = " 0.4.21 "
18
- memmap2 = " 0.9.4 "
19
- ordered-float = " 4.2 .0"
16
+ heed = { version = " 0.21.0 " , default-features = false }
17
+ log = " 0.4.22 "
18
+ memmap2 = " 0.9.5 "
19
+ ordered-float = " 4.6 .0"
20
20
rand = { version = " 0.8.5" , features = [" alloc" ] }
21
21
rayon = " 1.10.0"
22
- roaring = " 0.10.5 "
23
- tempfile = " 3.10.1 "
24
- thiserror = " 1 .0.61 "
22
+ roaring = " 0.10.9 "
23
+ tempfile = " 3.15.0 "
24
+ thiserror = " 2 .0.9 "
25
25
nohash = " 0.2.0"
26
26
27
27
[dev-dependencies ]
28
- anyhow = " 1.0.86 "
29
- arbitrary = { version = " 1.3.2 " , features = [" derive" ] }
30
- clap = { version = " 4.5.7 " , features = [" derive" ] }
31
- env_logger = " 0.11.3 "
32
- insta = " 1.39 .0"
28
+ anyhow = " 1.0.95 "
29
+ arbitrary = { version = " 1.4.1 " , features = [" derive" ] }
30
+ clap = { version = " 4.5.24 " , features = [" derive" ] }
31
+ env_logger = " 0.11.6 "
32
+ insta = " 1.42 .0"
33
33
instant-distance = " 0.6.1"
34
- proptest = " 1.5 .0"
34
+ proptest = " 1.6 .0"
35
35
rand = { version = " 0.8.5" , features = [" std_rng" ] }
36
- tempfile = " 3.10.1 "
36
+ tempfile = " 3.15.0 "
37
37
38
38
[features ]
39
39
default = []
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ pub struct ItemIter<'t, D: Distance> {
7
7
pub ( crate ) inner : heed:: RoPrefix < ' t , KeyCodec , NodeCodec < D > > ,
8
8
}
9
9
10
- impl < ' t , D : Distance > Iterator for ItemIter < ' t , D > {
10
+ impl < D : Distance > Iterator for ItemIter < ' _ , D > {
11
11
// TODO think about exposing the UnalignedF32Slice type
12
12
type Item = Result < ( ItemId , Vec < f32 > ) > ;
13
13
You can’t perform that action at this time.
0 commit comments