From a2b2f988686b5efb645b1bf085812f7488df8545 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 24 Sep 2025 23:43:23 +0300
Subject: [PATCH] build(deps): bump hashbrown from 0.15.5 to 0.16.0 (#2084)
Bumps [hashbrown](https://github.com/rust-lang/hashbrown) from 0.15.5 to
0.16.0.
Release notes
Sourced from hashbrown's
releases.
v0.16.0
Changed
- Bump foldhash, the default hasher, to 0.2.0.
- Replaced
DefaultHashBuilder
with a newtype wrapper
around foldhash
instead of re-exporting it directly.
Changelog
Sourced from hashbrown's
changelog.
0.16.0
- 2025-08-28
Changed
- Bump foldhash, the default hasher, to 0.2.0.
- Replaced
DefaultHashBuilder
with a newtype wrapper
around foldhash
instead
of re-exporting it directly.
Commits
8d4def0
Merge pull request #643
from cuviper/newtype-hasher
e0f404c
use feature(hasher_prefixfree_extras)
95ffed3
Change DefaultHashBuilder
to an opaque newtype
bf35a11
Merge pull request #641
from hoxxep/foldhash-0.2
e2a634b
Merge pull request #642
from heiher/loong-simd-types
88794e7
loongarch64: Use unified data types for SIMD intrinsics
b22dd85
perf: Bump foldhash to 0.2.0
fe72a08
Merge pull request #639
from gaujay/unbloat-get_inner-perf
71f8f37
Merge pull request #637
from gaujay/add-benchmarks
f1c039c
Un-bloat get_inner functions to restore lookup performance
- Additional commits viewable in compare
view
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
Cargo.lock | 4 ++--
Cargo.toml | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index fbf9e30d..8142b612 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2526,7 +2526,7 @@ dependencies = [
"bitflags 2.9.4",
"compact_str",
"document-features",
- "hashbrown 0.15.5",
+ "hashbrown 0.16.0",
"indoc",
"itertools 0.14.0",
"kasuari",
@@ -2604,7 +2604,7 @@ dependencies = [
"color-eyre",
"crossterm 0.29.0",
"document-features",
- "hashbrown 0.15.5",
+ "hashbrown 0.16.0",
"indoc",
"instability",
"itertools 0.14.0",
diff --git a/Cargo.toml b/Cargo.toml
index bde4e597..0823a8db 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -38,7 +38,7 @@ crossterm = "0.29"
document-features = "0.2"
fakeit = "1"
futures = "0.3"
-hashbrown = "0.15"
+hashbrown = "0.16"
indoc = "2"
instability = "0.3"
itertools = { version = "0.14", default-features = false, features = ["use_alloc"] }