You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Upgrade to ahash 0.8
This changes the default hasher to use a fixed key by default and removes the dependency on `getrandom`. This is fine since hashbrown has never made any guarantees about HashDoS resistance in its default hasher.
Users who require HashDoS resistance should explicitly use `ahash::RandomState` or `std::collections::hash_map::RandomState` as the hasher when creating a `HashMap`.
Fixes#356
Copy file name to clipboardExpand all lines: README.md
-2Lines changed: 0 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -107,8 +107,6 @@ This crate has the following Cargo features:
107
107
of compilation time. (enabled by default)
108
108
-`bumpalo`: Provides a `BumpWrapper` type which allows `bumpalo` to be used for memory allocation.
109
109
-`ahash`: Compiles with ahash as default hasher. (enabled by default)
110
-
-`ahash-compile-time-rng`: Activates the `compile-time-rng` feature of ahash. For targets with no random number generator
111
-
this pre-generates seeds at compile time and embeds them as constants. See [aHash's documentation](https://github.com/tkaitchuck/aHash#flags) (disabled by default)
0 commit comments