Use fxhash instead of ahash

This commit is contained in:
Nikolay Kim 2021-09-17 15:35:06 +06:00
parent 44850fdffc
commit f3d02ec81d
3 changed files with 6 additions and 4 deletions

View file

@ -1,9 +1,11 @@
# Changes
## [0.4.0] - 2021-09-15
## [0.4.0] - 2021-09-17
* Refactor web middlewares/filters registration and management
* Use fxhash instead of ahash
## [0.4.0-b.13] - 2021-09-12
* Fix update timer wheel bucket calculation

View file

@ -51,10 +51,10 @@ ntex-macros = "0.1.3"
ntex-util = "0.1.1"
ntex-bytes = "0.1.4"
ahash = "0.7.4"
base64 = "0.13"
bitflags = "1.3"
derive_more = "0.99.14"
fxhash = "0.2.1"
futures-core = { version = "0.3.16", default-features = false, features = ["alloc"] }
futures-sink = { version = "0.3.16", default-features = false, features = ["alloc"] }
log = "0.4"

View file

@ -13,5 +13,5 @@ pub use self::extensions::Extensions;
pub use ntex_bytes::{Buf, BufMut, ByteString, Bytes, BytesMut};
pub use ntex_util::future::*;
pub type HashMap<K, V> = std::collections::HashMap<K, V, ahash::RandomState>;
pub type HashSet<V> = std::collections::HashSet<V, ahash::RandomState>;
pub type HashMap<K, V> = std::collections::HashMap<K, V, fxhash::FxBuildHasher>;
pub type HashSet<V> = std::collections::HashSet<V, fxhash::FxBuildHasher>;