From 94ae672216b7ac530db034b778111f4ca3aec315 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 25 May 2026 01:17:57 +0000 Subject: [PATCH] chore(deps): update rust crate hashbrown to 0.17 --- Cargo.lock | 21 ++++++++++++--------- Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 325d8d44d78..a6f812b4ce0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1746,8 +1746,6 @@ dependencies = [ "allocator-api2", "equivalent", "foldhash 0.2.0", - "serde", - "serde_core", ] [[package]] @@ -1755,6 +1753,11 @@ name = "hashbrown" version = "0.17.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a" +dependencies = [ + "foldhash 0.2.0", + "serde", + "serde_core", +] [[package]] name = "heck" @@ -2356,7 +2359,7 @@ dependencies = [ "diff", "env_logger", "half", - "hashbrown 0.16.1", + "hashbrown 0.17.1", "hlsl-snapshots", "indexmap", "itertools 0.14.0", @@ -3058,7 +3061,7 @@ version = "29.0.0" dependencies = [ "bytemuck", "env_logger", - "hashbrown 0.16.1", + "hashbrown 0.17.1", "log", "raw-window-handle", "ron", @@ -4638,7 +4641,7 @@ dependencies = [ "cfg-if", "cfg_aliases", "document-features", - "hashbrown 0.16.1", + "hashbrown 0.17.1", "js-sys", "log", "naga", @@ -4708,7 +4711,7 @@ dependencies = [ "bytemuck", "cfg_aliases", "document-features", - "hashbrown 0.16.1", + "hashbrown 0.17.1", "indexmap", "log", "macro_rules_attribute", @@ -4840,7 +4843,7 @@ dependencies = [ "glutin-winit", "glutin_wgl_sys", "gpu-allocator", - "hashbrown 0.16.1", + "hashbrown 0.17.1", "js-sys", "khronos-egl", "libc", @@ -4886,7 +4889,7 @@ dependencies = [ "bitflags 2.11.1", "env_logger", "exhaust", - "hashbrown 0.16.1", + "hashbrown 0.17.1", "pico-args", "pollster", "serde", @@ -4962,7 +4965,7 @@ dependencies = [ "bitflags 2.11.1", "bytemuck", "exhaust", - "hashbrown 0.16.1", + "hashbrown 0.17.1", "js-sys", "log", "raw-window-handle", diff --git a/Cargo.toml b/Cargo.toml index 05d4c4ec593..6e1ba419ab5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -130,7 +130,7 @@ futures-lite = "2" glam = "0.32.0" glob = "0.3" half = { version = "2.5", default-features = false } # We require 2.5 to have `Arbitrary` support. -hashbrown = { version = "0.16", default-features = false, features = [ +hashbrown = { version = "0.17", default-features = false, features = [ "default-hasher", "inline-more", ] }