summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock30
-rw-r--r--rustls/Cargo.toml2
2 files changed, 16 insertions, 16 deletions
diff --git a/Cargo.lock b/Cargo.lock
index ea71eb8d..c929396b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -53,18 +53,6 @@ dependencies = [
]
[[package]]
-name = "ahash"
-version = "0.8.11"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
-dependencies = [
- "cfg-if",
- "once_cell",
- "version_check",
- "zerocopy",
-]
-
-[[package]]
name = "aho-corasick"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -926,6 +914,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
+name = "foldhash"
+version = "0.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "33d5ac82bdbbd872ce0dfea4e848a678cfcfdc0d210a5b20549b8c659fec0392"
+
+[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1114,8 +1108,14 @@ name = "hashbrown"
version = "0.14.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
+
+[[package]]
+name = "hashbrown"
+version = "0.15.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb"
dependencies = [
- "ahash",
+ "foldhash",
]
[[package]]
@@ -1309,7 +1309,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68b900aa2f7301e21c36462b170ee99994de34dff39a4a6a528e80e7376d07e5"
dependencies = [
"equivalent",
- "hashbrown",
+ "hashbrown 0.14.5",
]
[[package]]
@@ -2104,7 +2104,7 @@ dependencies = [
"brotli-decompressor",
"clap",
"env_logger",
- "hashbrown",
+ "hashbrown 0.15.0",
"hex",
"log",
"num-bigint",
diff --git a/rustls/Cargo.toml b/rustls/Cargo.toml
index 5d7679b5..78edc6a7 100644
--- a/rustls/Cargo.toml
+++ b/rustls/Cargo.toml
@@ -21,7 +21,7 @@ rustversion = { version = "1.0.6", optional = true }
aws-lc-rs = { version = "1.9", optional = true, default-features = false, features = ["aws-lc-sys", "prebuilt-nasm"] }
brotli = { version = "6", optional = true, default-features = false, features = ["std"] }
brotli-decompressor = { version = "4.0.1", optional = true } # 4.0.1 required for panic fix
-hashbrown = { version = "0.14", optional = true, default-features = false, features = ["ahash", "inline-more"] }
+hashbrown = { version = "0.15", optional = true, default-features = false, features = ["default-hasher", "inline-more"] }
log = { version = "0.4.8", optional = true }
# remove once our MSRV is >= 1.70
once_cell = { version = "1.16", default-features = false, features = ["alloc", "race"] }