mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
Use fxhash instead of ahash
This commit is contained in:
parent
44850fdffc
commit
f3d02ec81d
3 changed files with 6 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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>;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue