dep: update rustc_hash

This commit is contained in:
chyyran 2024-06-21 20:55:21 -04:00 committed by Ronny Chan
parent b5d523e9f3
commit 98958dfb5e
4 changed files with 17 additions and 11 deletions

22
Cargo.lock generated
View file

@ -1194,7 +1194,7 @@ checksum = "c6287b8071643d2f88055233b1ecfec954819cd5f91ff4095d5f2e2739a37b3a"
dependencies = [ dependencies = [
"glslang-sys", "glslang-sys",
"once_cell", "once_cell",
"rustc-hash", "rustc-hash 1.1.0",
"thiserror", "thiserror",
] ]
@ -1662,7 +1662,7 @@ dependencies = [
"objc2 0.5.2", "objc2 0.5.2",
"objc2-metal", "objc2-metal",
"paste", "paste",
"rustc-hash", "rustc-hash 2.0.0",
"sptr", "sptr",
"thiserror", "thiserror",
"windows", "windows",
@ -1677,7 +1677,7 @@ dependencies = [
"halfbrown", "halfbrown",
"num-traits", "num-traits",
"objc2-metal", "objc2-metal",
"rustc-hash", "rustc-hash 2.0.0",
"wgpu-types", "wgpu-types",
"windows", "windows",
] ]
@ -1725,7 +1725,7 @@ dependencies = [
"matches", "matches",
"naga", "naga",
"rspirv", "rspirv",
"rustc-hash", "rustc-hash 2.0.0",
"serde", "serde",
"spirv", "spirv",
"spirv-to-dxil", "spirv-to-dxil",
@ -2060,7 +2060,7 @@ dependencies = [
"log", "log",
"num-traits", "num-traits",
"petgraph", "petgraph",
"rustc-hash", "rustc-hash 1.1.0",
"spirv", "spirv",
"termcolor", "termcolor",
"thiserror", "thiserror",
@ -2867,7 +2867,7 @@ version = "0.12.0+sdk-1.3.268.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69cf3a93856b6e5946537278df0d3075596371b1950ccff012f02b0f7eafec8d" checksum = "69cf3a93856b6e5946537278df0d3075596371b1950ccff012f02b0f7eafec8d"
dependencies = [ dependencies = [
"rustc-hash", "rustc-hash 1.1.0",
"spirv", "spirv",
] ]
@ -2887,6 +2887,12 @@ version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
[[package]]
name = "rustc-hash"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152"
[[package]] [[package]]
name = "rustix" name = "rustix"
version = "0.38.34" version = "0.38.34"
@ -3689,7 +3695,7 @@ dependencies = [
"parking_lot", "parking_lot",
"profiling", "profiling",
"raw-window-handle 0.6.2", "raw-window-handle 0.6.2",
"rustc-hash", "rustc-hash 1.1.0",
"smallvec", "smallvec",
"thiserror", "thiserror",
"web-sys", "web-sys",
@ -3733,7 +3739,7 @@ dependencies = [
"range-alloc", "range-alloc",
"raw-window-handle 0.6.2", "raw-window-handle 0.6.2",
"renderdoc-sys", "renderdoc-sys",
"rustc-hash", "rustc-hash 1.1.0",
"smallvec", "smallvec",
"thiserror", "thiserror",
"wasm-bindgen", "wasm-bindgen",

View file

@ -35,7 +35,7 @@ __cbindgen_internal_objc = ["objc2-metal", "objc2"]
thiserror = "1.0.37" thiserror = "1.0.37"
paste = "1.0.9" paste = "1.0.9"
gl = { version = "0.14.0", optional = true } gl = { version = "0.14.0", optional = true }
rustc-hash = "1.1.0" rustc-hash = "2.0.0"
ash = { version = "0.37", optional = true } ash = { version = "0.37", optional = true }
spirv_cross = { package = "librashader-spirv-cross", version = "0.25.1" } spirv_cross = { package = "librashader-spirv-cross", version = "0.25.1" }
sptr = "0.3.2" sptr = "0.3.2"

View file

@ -27,7 +27,7 @@ gl = { version = "0.14.0", optional = true }
ash = { version = "0.37", optional = true } ash = { version = "0.37", optional = true }
wgpu-types = { version = "0.20.0", optional = true } wgpu-types = { version = "0.20.0", optional = true }
num-traits = "0.2.15" num-traits = "0.2.15"
rustc-hash = "1.1.0" rustc-hash = "2.0.0"
halfbrown = "0.2.4" halfbrown = "0.2.4"
[target.'cfg(windows)'.dependencies.windows] [target.'cfg(windows)'.dependencies.windows]

View file

@ -32,7 +32,7 @@ serde = { version = "1.0", features = ["derive"], optional = true }
indexmap = { version = "2.1.0", features = [] } indexmap = { version = "2.1.0", features = [] }
matches = { version = "0.1.10", features = [] } matches = { version = "0.1.10", features = [] }
rustc-hash = "1.1.0" rustc-hash = "2.0.0"
[target.'cfg(windows)'.dependencies.spirv-to-dxil] [target.'cfg(windows)'.dependencies.spirv-to-dxil]
version = "0.4.7" version = "0.4.7"