Skip to content

Commit

Permalink
fix: update web-sys
Browse files Browse the repository at this point in the history
  • Loading branch information
simbleau committed Nov 3, 2024
1 parent 55036af commit 5faf202
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 28 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ Subheadings to categorize changes are `added, changed, deprecated, removed, fixe

## Unreleased

## 0.1.3

- Updates web-sys to ^0.3.70

## 0.1.2

- Equivalent to 0.1.0
Expand Down
86 changes: 63 additions & 23 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "webgpu_check"
description = "A simple, minimal crate to probe WebGPU support."
version = "0.1.2"
version = "0.1.3"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/loopystudios/webgpu_check"
Expand All @@ -10,11 +10,11 @@ repository = "https://github.com/loopystudios/webgpu_check"
[dependencies]

[target.'cfg(target_arch = "wasm32")'.dependencies]
web-sys = { version = "0.3", features = ['Window', 'Navigator', 'Gpu'] }
web-sys = { version = "0.3.70", features = ['Window', 'Navigator', 'Gpu'] }

[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
wasm-bindgen-test = "0.3.42"
web-sys = { version = "0.3", features = [
wasm-bindgen-test = "0.3.45"
web-sys = { version = "0.3.70", features = [
'Window',
'Document',
'HtmlElement',
Expand All @@ -24,4 +24,4 @@ web-sys = { version = "0.3", features = [


[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
notify-rust = "4.11.0"
notify-rust = "4.11.3"

0 comments on commit 5faf202

Please sign in to comment.