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
This commit is contained in:
parent
738ea75453
commit
8321f64f6e
10
Cargo.lock
10
Cargo.lock
|
|
@ -110,9 +110,9 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ahash"
|
name = "ahash"
|
||||||
version = "0.8.6"
|
version = "0.8.11"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a"
|
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cfg-if",
|
"cfg-if",
|
||||||
"getrandom",
|
"getrandom",
|
||||||
|
|
@ -1139,7 +1139,7 @@ version = "0.5.2"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412"
|
checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"libloading 0.7.4",
|
"libloading 0.8.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|
@ -1950,7 +1950,7 @@ dependencies = [
|
||||||
"bitflags 2.5.0",
|
"bitflags 2.5.0",
|
||||||
"com",
|
"com",
|
||||||
"libc",
|
"libc",
|
||||||
"libloading 0.7.4",
|
"libloading 0.8.0",
|
||||||
"thiserror",
|
"thiserror",
|
||||||
"widestring",
|
"widestring",
|
||||||
"winapi",
|
"winapi",
|
||||||
|
|
@ -4285,7 +4285,7 @@ dependencies = [
|
||||||
"js-sys",
|
"js-sys",
|
||||||
"khronos-egl",
|
"khronos-egl",
|
||||||
"libc",
|
"libc",
|
||||||
"libloading 0.7.4",
|
"libloading 0.8.0",
|
||||||
"log",
|
"log",
|
||||||
"metal",
|
"metal",
|
||||||
"naga",
|
"naga",
|
||||||
|
|
|
||||||
|
|
@ -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 }
|
egui_glow = { version = "0.27.2", path = "crates/egui_glow", default-features = false }
|
||||||
eframe = { version = "0.27.2", path = "crates/eframe", 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
|
"no-rng", # we don't need DOS-protection, so we let users opt-in to it instead
|
||||||
"std",
|
"std",
|
||||||
] }
|
] }
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue