mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-26 08:44:08 +00:00
[rs] Merge #847
847: Don't pin web-sys and wasm-bindgen versions r=grovesNL a=RichoDemus Pinning them forces all downstream dependencies to use exactly this version The latest release of wgpu has pinned an old version of wasm-bindgen, forcing users to downgrade wasm-bindgen-cli in order to build Co-authored-by: Richard Tjerngren <git@richodemus.com> Co-authored-by: RichoDemus <git@richodemus.com>
This commit is contained in:
commit
b47b77798b
2
.github/workflows/publish.yml
vendored
2
.github/workflows/publish.yml
vendored
@ -28,7 +28,7 @@ jobs:
|
||||
run: cargo build --release --target wasm32-unknown-unknown --examples
|
||||
|
||||
- name: Install wasm-bindgen-cli
|
||||
run: cargo install --force wasm-bindgen-cli --version 0.2.73
|
||||
run: cargo install wasm-bindgen-cli
|
||||
|
||||
- name: Generate JS bindings for the examples
|
||||
run: |
|
||||
|
@ -116,7 +116,7 @@ test = true
|
||||
#wasm-bindgen = { path = "../wasm-bindgen" }
|
||||
|
||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||||
wasm-bindgen = "=0.2.73" # remember to change version in wiki as well
|
||||
wasm-bindgen = "0.2.73" # remember to change version in wiki as well
|
||||
web-sys = { version = "=0.3.50", features = [
|
||||
"Document",
|
||||
"Navigator",
|
||||
|
Loading…
Reference in New Issue
Block a user