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:
bors[bot] 2021-04-09 02:22:20 +00:00 committed by GitHub
commit b47b77798b
2 changed files with 2 additions and 2 deletions

View File

@ -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: |

View File

@ -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",