From 8f6782acd5a312f655292b48d0170d6e35ea24db Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 24 Nov 2025 19:27:54 +0300
Subject: [PATCH] build(deps): bump hashbrown from 0.16.0 to 0.16.1 (#2228)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Bumps [hashbrown](https://github.com/rust-lang/hashbrown) from 0.16.0 to
0.16.1.
Release notes
Sourced from hashbrown's
releases.
v0.16.1
Added
- Added
HashTable methods related to the raw bucket index
(#657)
- Added
VacantEntryRef::insert_with_key (#579)
Changed
- Removed specialization for
Copy types (#662)
- The
get_many_mut family of methods have been renamed to
get_disjoint_mut
to match the standard library. The old names are still present for now,
but
deprecated. (#648)
- Recognize and use over-sized allocations when using custom
allocators. (#523)
- Depend on
serde_core instead of serde. (#649)
- Optimized
collect on rayon parallel iterators. (#652)
Changelog
Sourced from hashbrown's
changelog.
0.16.1
- 2025-11-20
Added
- Added
HashTable methods related to the raw bucket index
(#657)
- Added
VacantEntryRef::insert_with_key (#579)
Changed
- Removed specialization for
Copy types (#662)
- The
get_many_mut family of methods have been renamed to
get_disjoint_mut
to match the standard library. The old names are still present for now,
but
deprecated. (#648)
- Recognize and use over-sized allocations when using custom
allocators. (#523)
- Depend on
serde_core instead of serde. (#649)
- Optimized
collect on rayon parallel iterators. (#652)
Commits
1876e4f
Add PR link for get_disjoint_mut rename
2e363b6
Update CHANGELOG for version 0.16.1
88d54a5
chore: release v0.16.1
21be06c
Merge pull request #657
from cuviper/table-bucket
af971f3
Add T to bucket iterators and inline their methods
7ccb6d6
Add HashTable::iter_buckets and
iter_hash_buckets
aeb7996
Add HashTable::get_bucket_entry_unchecked
e885a4e
get_bucket_entry -> Result\<OccupiedEntry,
AbsentEntry>
dabfbef
Add get_bucket_unchecked and
get_bucket_unchecked_mut
42d9377
Make HashTable entries use Tag instead of a
full hash
- 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>
Co-authored-by: Orhun Parmaksız
---
Cargo.lock | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index f110c946..5a028447 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1135,9 +1135,9 @@ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
[[package]]
name = "hashbrown"
-version = "0.16.0"
+version = "0.16.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
+checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
dependencies = [
"allocator-api2",
"equivalent",
@@ -1553,7 +1553,7 @@ version = "0.4.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "012b421f57b19b6dca64a11f6703087faa71aaef81c6e7cae57dcf7cdf286303"
dependencies = [
- "hashbrown 0.16.0",
+ "hashbrown 0.16.1",
"portable-atomic",
"portable-atomic-util",
"thiserror 2.0.17",
@@ -1667,7 +1667,7 @@ version = "0.16.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96051b46fc183dc9cd4a223960ef37b9af631b55191852a8274bfef064cda20f"
dependencies = [
- "hashbrown 0.16.0",
+ "hashbrown 0.16.1",
]
[[package]]
@@ -2398,7 +2398,7 @@ dependencies = [
"bitflags 2.10.0",
"compact_str",
"document-features",
- "hashbrown 0.16.0",
+ "hashbrown 0.16.1",
"indoc",
"itertools 0.14.0",
"kasuari",
@@ -2476,7 +2476,7 @@ dependencies = [
"color-eyre",
"crossterm 0.29.0",
"document-features",
- "hashbrown 0.16.0",
+ "hashbrown 0.16.1",
"indoc",
"instability",
"itertools 0.14.0",