Skip to content

Commit

Permalink
Update wgpu dependency to 0.19.3.
Browse files Browse the repository at this point in the history
I would like to also enable WebGPU support, as that no longer needs
special unstable flags, but doing so breaks WebGL on Firefox:
<gfx-rs/wgpu#5332>
  • Loading branch information
kpreid committed Mar 3, 2024
1 parent 452037f commit 748c482
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ trycmd = "0.14.1" # keep in sync with `snapbox`
unicode-segmentation = { version = "1.10.1", default-features = false }
wasm-bindgen-futures = "0.4.40"
web-time = "1.0.0"
wgpu = { version = "0.19.1", default-features = false, features = ["wgsl"] }
wgpu = { version = "0.19.3", default-features = false, features = ["wgsl"] }
yield-progress = { version = "0.1.5", default-features = false }

# Note: Lints are also necessarily redefined in the workspaces other than this one.
Expand Down
4 changes: 2 additions & 2 deletions all-is-cubes-wasm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion all-is-cubes-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ send_wrapper = "0.6.0"
wasm-bindgen = "0.2.90"
wasm-bindgen-futures = "0.4.40"
web-time = { version = "1.0.0" }
wgpu = { version = "0.19.1", default-features = false, features = ["webgl"] }
wgpu = { version = "0.19.3", default-features = false, features = ["webgl"] }
# Feature enabling
yield-progress = { version = "0.1.5", features = ["log_hiccups"] }

Expand Down

0 comments on commit 748c482

Please sign in to comment.