web: Bump wasm-bindgen to 0.2.76

As usual, also bump its helper crates (js-sys, wasm-bindgen-futures)
to the latest versions, except for web-sys which is locked by wgpu
to 0.3.50.
This commit is contained in:
relrelb 2021-08-21 14:18:26 +03:00 committed by Adrian Wielgosik
parent 9fd4f097f8
commit 7be7182eb9
8 changed files with 26 additions and 26 deletions

View File

@ -243,7 +243,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: install
args: wasm-bindgen-cli --version 0.2.75
args: wasm-bindgen-cli --version 0.2.76
- name: Setup conda
uses: conda-incubator/setup-miniconda@v2

View File

@ -38,7 +38,7 @@ jobs:
# wasm-bindgen-cli version must match wasm-bindgen crate version.
# Be sure to update in release_nightly.yml, web/Cargo.toml and web/README.md.
- name: Install wasm-bindgen
run: cargo install wasm-bindgen-cli --version 0.2.75
run: cargo install wasm-bindgen-cli --version 0.2.76
- name: Setup conda
uses: conda-incubator/setup-miniconda@v2

28
Cargo.lock generated
View File

@ -1906,9 +1906,9 @@ dependencies = [
[[package]]
name = "js-sys"
version = "0.3.52"
version = "0.3.53"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce791b7ca6638aae45be056e068fc756d871eb3b3b10b8efa62d1c9cec616752"
checksum = "e4bf49d50e2961077d9c99f4b7997d770a1114f087c3c2e0069b36c13fc2979d"
dependencies = [
"wasm-bindgen",
]
@ -3797,9 +3797,9 @@ checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
[[package]]
name = "wasm-bindgen"
version = "0.2.75"
version = "0.2.76"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b608ecc8f4198fe8680e2ed18eccab5f0cd4caaf3d83516fa5fb2e927fda2586"
checksum = "8ce9b1b516211d33767048e5d47fa2a381ed8b76fc48d2ce4aa39877f9f183e0"
dependencies = [
"cfg-if 1.0.0",
"serde",
@ -3809,9 +3809,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.75"
version = "0.2.76"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "580aa3a91a63d23aac5b6b267e2d13cb4f363e31dce6c352fca4752ae12e479f"
checksum = "cfe8dc78e2326ba5f845f4b5bf548401604fa20b1dd1d365fb73b6c1d6364041"
dependencies = [
"bumpalo",
"lazy_static",
@ -3824,9 +3824,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-futures"
version = "0.4.25"
version = "0.4.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16646b21c3add8e13fdb8f20172f8a28c3dbf62f45406bcff0233188226cfe0c"
checksum = "95fded345a6559c2cfee778d562300c581f7d4ff3edb9b0d230d69800d213972"
dependencies = [
"cfg-if 1.0.0",
"js-sys",
@ -3836,9 +3836,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.75"
version = "0.2.76"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "171ebf0ed9e1458810dfcb31f2e766ad6b3a89dbda42d8901f2b268277e5f09c"
checksum = "44468aa53335841d9d6b6c023eaab07c0cd4bddbcfdee3e2bb1e8d2cb8069fef"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
@ -3846,9 +3846,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.75"
version = "0.2.76"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c2657dd393f03aa2a659c25c6ae18a13a4048cebd220e147933ea837efc589f"
checksum = "0195807922713af1e67dc66132c7328206ed9766af3858164fb583eedc25fbad"
dependencies = [
"proc-macro2",
"quote",
@ -3859,9 +3859,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.75"
version = "0.2.76"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e0c4a743a309662d45f4ede961d7afa4ba4131a59a639f29b0069c3798bbcc2"
checksum = "acdb075a845574a1fa5f09fd77e43f7747599301ea3417a9fbffdeedfc1f4a29"
[[package]]
name = "wayland-client"

View File

@ -11,13 +11,13 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
base64 = "0.13.0"
fnv = "1.0.7"
js-sys = "0.3.52"
js-sys = "0.3.53"
log = "0.4"
ruffle_web_common = { path = "../../web/common" }
svg = "0.10.0"
percent-encoding = "2.1.0"
png = "0.17.0"
wasm-bindgen = "=0.2.75"
wasm-bindgen = "=0.2.76"
[dependencies.jpeg-decoder]
version = "0.1.22"

View File

@ -7,13 +7,13 @@ license = "MIT OR Apache-2.0"
[dependencies]
fnv = "1.0.7"
js-sys = "0.3.52"
js-sys = "0.3.53"
log = "0.4"
percent-encoding = "2.1.0"
png = "0.17.0"
ruffle_render_common_tess = { path = "../common_tess" }
ruffle_web_common = { path = "../../web/common" }
wasm-bindgen = "=0.2.75"
wasm-bindgen = "=0.2.76"
bytemuck = { version = "1.7.0", features = ["derive"] }
[dependencies.jpeg-decoder]

View File

@ -26,14 +26,14 @@ console_error_panic_hook = { version = "0.1.1", optional = true }
console_log = { version = "0.2", optional = true }
fnv = "1.0.7"
generational-arena = "0.2.8"
js-sys = "0.3.52"
js-sys = "0.3.53"
log = { version = "0.4", features = ["serde"] }
ruffle_render_canvas = { path = "../render/canvas", optional = true }
ruffle_web_common = { path = "common" }
ruffle_render_webgl = { path = "../render/webgl", optional = true }
url = "2.2.2"
wasm-bindgen = { version = "=0.2.75", features = ["serde-serialize"] }
wasm-bindgen-futures = "0.4.25"
wasm-bindgen = { version = "=0.2.76", features = ["serde-serialize"] }
wasm-bindgen-futures = "0.4.26"
chrono = { version = "0.4", features = ["wasmbind"] }
getrandom = { version = "0.2", features = ["js"] }
serde = { version = "1.0.127", features = ["derive"] }

View File

@ -55,7 +55,7 @@ We recommend using the currently active LTS 14, but we do also run tests with ma
#### wasm-bindgen
<!-- Be sure to also update the wasm-bindgen-cli version in .github/workflows/*.yaml and web/Cargo.toml -->
This can be installed with `cargo install wasm-bindgen-cli --version 0.2.75`. Be sure to install this specific version of `wasm-bindgen-cli` to match the version used by Ruffle.
This can be installed with `cargo install wasm-bindgen-cli --version 0.2.76`. Be sure to install this specific version of `wasm-bindgen-cli` to match the version used by Ruffle.
#### Binaryen

View File

@ -6,9 +6,9 @@ edition = "2018"
license = "MIT OR Apache-2.0"
[dependencies]
js-sys = "0.3.52"
js-sys = "0.3.53"
log = "0.4"
wasm-bindgen = "=0.2.75"
wasm-bindgen = "=0.2.76"
[dependencies.web-sys]
version = "0.3.50"