chore: Update wasm-bindgen from 0.2.86 -> 0.2.87

This commit is contained in:
Nathan Adams 2023-06-15 20:07:49 +02:00
parent fc933f485f
commit 23352db39f
4 changed files with 4 additions and 4 deletions

View File

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

View File

@ -63,7 +63,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.86
run: cargo install wasm-bindgen-cli --version 0.2.87
- name: Setup conda
uses: conda-incubator/setup-miniconda@v2

View File

@ -65,7 +65,7 @@ Note that npm 7 or newer is required. It should come bundled with Node.js 15 or
<!-- Be sure to also update the wasm-bindgen-cli version in `.github/workflows/*.yml` and `web/Cargo.toml`. -->
This can be installed with `cargo install wasm-bindgen-cli --version 0.2.86`. 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.87`. Be sure to install this specific version of `wasm-bindgen-cli` to match the version used by Ruffle.
#### Binaryen

View File

@ -20,7 +20,7 @@ RUN wget 'https://sh.rustup.rs' --quiet -O- | sh -s -- -y
ENV PATH="/root/.cargo/bin:$PATH"
RUN rustup update
RUN rustup target add wasm32-unknown-unknown
RUN cargo install wasm-bindgen-cli --version 0.2.86
RUN cargo install wasm-bindgen-cli --version 0.2.87
COPY . ruffle
WORKDIR ruffle/web
RUN npm install