Skip to content

Commit e70564b

Browse files
authored
Merge pull request #278 from workingjubilee/dep-wasm-bindgen-0.2.89
2 parents c1a1fe0 + 53d85ee commit e70564b

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/rust.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@ jobs:
8181
- name: Install wasm-bindgen
8282
run: >
8383
curl -L "$WASMBINDGEN_UPSTREAM"
84-
| tar xzf - --strip-components=1 wasm-bindgen-0.2.83-x86_64-unknown-linux-musl/wasm-bindgen-test-runner
84+
| tar xzf - --strip-components=1 wasm-bindgen-0.2.89-x86_64-unknown-linux-musl/wasm-bindgen-test-runner
8585
&& sudo mv wasm-bindgen-test-runner /usr/bin/wasm-bindgen-test-runner
8686
env:
87-
WASMBINDGEN_UPSTREAM: https://github.com/rustwasm/wasm-bindgen/releases/download/0.2.83/wasm-bindgen-0.2.83-x86_64-unknown-linux-musl.tar.gz
87+
WASMBINDGEN_UPSTREAM: https://github.com/rustwasm/wasm-bindgen/releases/download/0.2.89/wasm-bindgen-0.2.89-x86_64-unknown-linux-musl.tar.gz
8888
- name: Installing Rust toolchain
8989
uses: actions-rs/toolchain@v1
9090
with:
@@ -95,7 +95,8 @@ jobs:
9595
- name: Test
9696
run: |
9797
cargo update
98-
cargo update -p wasm-bindgen --precise 0.2.83
98+
# update wasm-bindgen to the version we want and bring -test along for the ride
99+
cargo update -p wasm-bindgen --precise 0.2.89 -p wasm-bindgen-test
99100
cargo test -vv --target wasm32-unknown-unknown
100101
env:
101102
CARGO_TARGET_WASM32_UNKNOWN_UNKNOWN_RUNNER: wasm-bindgen-test-runner

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ png = "0.16"
2323
walkdir = "2.0"
2424
criterion = "0.3"
2525
wasm-bindgen-test = "0.3"
26-
wasm-bindgen = "=0.2.83"
26+
wasm-bindgen = "0.2.89"
2727

2828
[features]
2929
default = ["rayon"]

0 commit comments

Comments
 (0)