From f3d02ec81dfc94e56367b994db8c01e1f198d4ff Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Fri, 17 Sep 2021 15:35:06 +0600 Subject: [PATCH] Use fxhash instead of ahash --- ntex/CHANGES.md | 4 +++- ntex/Cargo.toml | 2 +- ntex/src/util/mod.rs | 4 ++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/ntex/CHANGES.md b/ntex/CHANGES.md index 154f13cb..335e7300 100644 --- a/ntex/CHANGES.md +++ b/ntex/CHANGES.md @@ -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 diff --git a/ntex/Cargo.toml b/ntex/Cargo.toml index 20183497..c0aaaf82 100644 --- a/ntex/Cargo.toml +++ b/ntex/Cargo.toml @@ -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" diff --git a/ntex/src/util/mod.rs b/ntex/src/util/mod.rs index b531a19d..33c0b0af 100644 --- a/ntex/src/util/mod.rs +++ b/ntex/src/util/mod.rs @@ -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 = std::collections::HashMap; -pub type HashSet = std::collections::HashSet; +pub type HashMap = std::collections::HashMap; +pub type HashSet = std::collections::HashSet;