Fix wgpu-hal build

This commit is contained in:
Connor Fitzgerald 2024-01-17 15:23:50 -05:00
parent 7eac4cec5b
commit 484457d959
No known key found for this signature in database
GPG Key ID: 7D3FA445BAD3008D
3 changed files with 8 additions and 6 deletions

View File

@ -6,8 +6,10 @@ skip-tree = [
{ name = "rustc_version", version = "0.2.3" },
]
skip = [
{ name = "hlsl-snapshots", version = "0.1.0" },
]
wildcards = "deny"
allow-wildcard-paths = true
[licenses]
allow = [
@ -26,7 +28,6 @@ allow = [
[sources]
allow-git = [
# Waiting on releases; used in examples only
"https://github.com/SiegeEngine/ddsfile",
"https://github.com/Razaekel/noise-rs",
"https://github.com/grovesNL/glow",

9
Cargo.lock generated
View File

@ -898,7 +898,7 @@ name = "d3d12"
version = "0.19.0"
dependencies = [
"bitflags 2.4.1",
"libloading 0.7.4",
"libloading 0.8.1",
"winapi",
]
@ -1505,8 +1505,9 @@ checksum = "151665d9be52f9bb40fc7966565d39666f2d1e69233571b71b87791c7e0528b3"
[[package]]
name = "glow"
version = "0.13.0"
source = "git+https://github.com/grovesNL/glow.git?rev=29ff917a2b2ff7ce0a81b2cc5681de6d4735b36e#29ff917a2b2ff7ce0a81b2cc5681de6d4735b36e"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd348e04c43b32574f2de31c8bb397d96c9fcfa1371bd4ca6d8bdc464ab121b1"
dependencies = [
"js-sys",
"slotmap",
@ -4067,7 +4068,7 @@ dependencies = [
"js-sys",
"khronos-egl",
"libc",
"libloading 0.7.4",
"libloading 0.8.1",
"log",
"metal",
"naga",

View File

@ -85,7 +85,7 @@ rustc-hash = "1.1"
log = "0.4"
# backend: Gles
glow = { version = "0.13", git = "https://github.com/grovesNL/glow.git", rev = "29ff917a2b2ff7ce0a81b2cc5681de6d4735b36e", optional = true }
glow = { version = "0.13.1", optional = true }
[dependencies.wgt]
package = "wgpu-types"