chore: there and back again: hashbrown 0.15 (#7461)

This backs out commit 005bde99f96adde838e7bcd458576475673efcfd (#7081).
This commit is contained in:
Erich Gubler 2025-04-01 17:15:01 -04:00 committed by GitHub
parent ab38e8e430
commit c4b781bdea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 16 additions and 17 deletions

27
Cargo.lock generated
View File

@ -61,12 +61,6 @@ dependencies = [
"memchr", "memchr",
] ]
[[package]]
name = "allocator-api2"
version = "0.2.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
[[package]] [[package]]
name = "android-activity" name = "android-activity"
version = "0.5.2" version = "0.5.2"
@ -1405,6 +1399,12 @@ dependencies = [
"spin", "spin",
] ]
[[package]]
name = "foldhash"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f"
[[package]] [[package]]
name = "foreign-types" name = "foreign-types"
version = "0.5.0" version = "0.5.0"
@ -1753,9 +1753,9 @@ dependencies = [
[[package]] [[package]]
name = "gpu-descriptor" name = "gpu-descriptor"
version = "0.3.0" version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c08c1f623a8d0b722b8b99f821eb0ba672a1618f0d3b16ddbee1cedd2dd8557" checksum = "dcf29e94d6d243368b7a56caa16bc213e4f9f8ed38c4d9557069527b5d5281ca"
dependencies = [ dependencies = [
"bitflags 2.9.0", "bitflags 2.9.0",
"gpu-descriptor-types", "gpu-descriptor-types",
@ -1796,12 +1796,11 @@ dependencies = [
[[package]] [[package]]
name = "hashbrown" name = "hashbrown"
version = "0.14.5" version = "0.15.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
dependencies = [ dependencies = [
"ahash", "foldhash",
"allocator-api2",
"serde", "serde",
] ]
@ -2023,9 +2022,9 @@ dependencies = [
[[package]] [[package]]
name = "indexmap" name = "indexmap"
version = "2.5.0" version = "2.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68b900aa2f7301e21c36462b170ee99994de34dff39a4a6a528e80e7376d07e5" checksum = "8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652"
dependencies = [ dependencies = [
"arbitrary", "arbitrary",
"equivalent", "equivalent",

View File

@ -107,13 +107,13 @@ flume = "0.11"
futures-lite = "2" futures-lite = "2"
glam = "0.29" glam = "0.29"
half = "2.5" # We require 2.5 to have `Arbitrary` support. half = "2.5" # We require 2.5 to have `Arbitrary` support.
hashbrown = { version = "0.14.5", default-features = false, features = [ hashbrown = { version = "0.15.2", default-features = false, features = [
"ahash", "default-hasher",
"inline-more", "inline-more",
] } ] }
heck = "0.5.0" heck = "0.5.0"
image = { version = "0.24", default-features = false, features = ["png"] } image = { version = "0.24", default-features = false, features = ["png"] }
indexmap = { version = "2.5.0", default-features = false } indexmap = { version = "2.7.1", default-features = false }
itertools = { version = "0.13.0" } itertools = { version = "0.13.0" }
ktx2 = "0.3" ktx2 = "0.3"
libc = { version = "0.2", default-features = false } libc = { version = "0.2", default-features = false }