From 8321f64f6e68c5b8a433517e535e22087573f8a4 Mon Sep 17 00:00:00 2001 From: hellodword <46193371+hellodword@users.noreply.github.com> Date: Mon, 20 May 2024 15:31:17 +0000 Subject: [PATCH] Update ahash 0.8.6 -> 0.8.11 (#4507) See: https://github.com/tkaitchuck/aHash/pull/183#issuecomment-1789806373 * Closes https://github.com/emilk/egui/issues/4476 --- Cargo.lock | 10 +++++----- Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 373236f1883..b3722fdddec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -110,9 +110,9 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" [[package]] name = "ahash" -version = "0.8.6" +version = "0.8.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a" +checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" dependencies = [ "cfg-if", "getrandom", @@ -1139,7 +1139,7 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" dependencies = [ - "libloading 0.7.4", + "libloading 0.8.0", ] [[package]] @@ -1950,7 +1950,7 @@ dependencies = [ "bitflags 2.5.0", "com", "libc", - "libloading 0.7.4", + "libloading 0.8.0", "thiserror", "widestring", "winapi", @@ -4285,7 +4285,7 @@ dependencies = [ "js-sys", "khronos-egl", "libc", - "libloading 0.7.4", + "libloading 0.8.0", "log", "metal", "naga", diff --git a/Cargo.toml b/Cargo.toml index 13c04b7c922..a42033c0efb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -62,7 +62,7 @@ egui_demo_lib = { version = "0.27.2", path = "crates/egui_demo_lib", default-fea egui_glow = { version = "0.27.2", path = "crates/egui_glow", default-features = false } eframe = { version = "0.27.2", path = "crates/eframe", default-features = false } -ahash = { version = "0.8.6", default-features = false, features = [ +ahash = { version = "0.8.11", default-features = false, features = [ "no-rng", # we don't need DOS-protection, so we let users opt-in to it instead "std", ] }