Skip to content

Commit a03243c

Browse files
committed
Roll back hashbrown dependency to 0.16.
Wgpu doesn't specifically need 0.17, and Firefox would like to avoid auditing 0.16 -> 0.17 for a little while longer. Adjust `.deny.toml` to permit `foldhash` v0.1.5, as depended upon by `hashbrown` `0.15.5`.
1 parent bb83a58 commit a03243c

3 files changed

Lines changed: 13 additions & 13 deletions

File tree

.deny.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ skip = [
6060

6161
# gpu-descriptor and petgraph use an old version
6262
{ name = "hashbrown", version = "0.15.5" },
63+
64+
# Used by hashbrown 0.15.5
65+
{ name = "foldhash", version = "0.1.5" },
6366
]
6467
wildcards = "deny"
6568
allow-wildcard-paths = true

Cargo.lock

Lines changed: 9 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ futures-lite = "2"
131131
glam = "0.32.0"
132132
glob = "0.3"
133133
half = { version = "2.5", default-features = false } # We require 2.5 to have `Arbitrary` support.
134-
hashbrown = { version = "0.17", default-features = false, features = [
134+
hashbrown = { version = "0.16", default-features = false, features = [
135135
"default-hasher",
136136
"inline-more",
137137
] }

0 commit comments

Comments
 (0)