File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " hashbrown"
3
- version = " 0.6.3 "
3
+ version = " 0.7.0 "
4
4
authors = [
" Amanieu d'Antras <[email protected] >" ]
5
5
description = " A Rust port of Google's SwissTable hash map"
6
6
license = " Apache-2.0/MIT"
@@ -14,7 +14,7 @@ build = "build.rs"
14
14
15
15
[dependencies ]
16
16
# For the default hasher
17
- ahash = { version = " 0.2.11 " , optional = true , default-features = false }
17
+ ahash = { version = " 0.3.2 " , optional = true , default-features = false }
18
18
19
19
# For external trait impls
20
20
rayon = { version = " 1.0" , optional = true }
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ use core::ops::Index;
10
10
11
11
/// Default hasher for `HashMap`.
12
12
#[ cfg( feature = "ahash" ) ]
13
- pub type DefaultHashBuilder = ahash:: ABuildHasher ;
13
+ pub type DefaultHashBuilder = ahash:: RandomState ;
14
14
15
15
/// Dummy default hasher for `HashMap`.
16
16
#[ cfg( not( feature = "ahash" ) ) ]
You can’t perform that action at this time.
0 commit comments