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 11[package ]
22name = " hashbrown"
3- version = " 0.6.3 "
3+ version = " 0.7.0 "
44authors = [" Amanieu d'Antras <amanieu@gmail.com>" ]
55description = " A Rust port of Google's SwissTable hash map"
66license = " Apache-2.0/MIT"
@@ -14,7 +14,7 @@ build = "build.rs"
1414
1515[dependencies ]
1616# 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 }
1818
1919# For external trait impls
2020rayon = { version = " 1.0" , optional = true }
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ use core::ops::Index;
1010
1111/// Default hasher for `HashMap`.
1212#[ cfg( feature = "ahash" ) ]
13- pub type DefaultHashBuilder = ahash:: ABuildHasher ;
13+ pub type DefaultHashBuilder = ahash:: RandomState ;
1414
1515/// Dummy default hasher for `HashMap`.
1616#[ cfg( not( feature = "ahash" ) ) ]
You can’t perform that action at this time.
0 commit comments