Skip to content

Commit

Permalink
Merge pull request #278 from workingjubilee/dep-wasm-bindgen-0.2.89
Browse files Browse the repository at this point in the history
  • Loading branch information
kornelski authored Aug 24, 2024
2 parents c1a1fe0 + 53d85ee commit e70564b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ jobs:
- name: Install wasm-bindgen
run: >
curl -L "$WASMBINDGEN_UPSTREAM"
| tar xzf - --strip-components=1 wasm-bindgen-0.2.83-x86_64-unknown-linux-musl/wasm-bindgen-test-runner
| tar xzf - --strip-components=1 wasm-bindgen-0.2.89-x86_64-unknown-linux-musl/wasm-bindgen-test-runner
&& sudo mv wasm-bindgen-test-runner /usr/bin/wasm-bindgen-test-runner
env:
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
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
- name: Installing Rust toolchain
uses: actions-rs/toolchain@v1
with:
Expand All @@ -95,7 +95,8 @@ jobs:
- name: Test
run: |
cargo update
cargo update -p wasm-bindgen --precise 0.2.83
# update wasm-bindgen to the version we want and bring -test along for the ride
cargo update -p wasm-bindgen --precise 0.2.89 -p wasm-bindgen-test
cargo test -vv --target wasm32-unknown-unknown
env:
CARGO_TARGET_WASM32_UNKNOWN_UNKNOWN_RUNNER: wasm-bindgen-test-runner
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ png = "0.16"
walkdir = "2.0"
criterion = "0.3"
wasm-bindgen-test = "0.3"
wasm-bindgen = "=0.2.83"
wasm-bindgen = "0.2.89"

[features]
default = ["rayon"]
Expand Down

0 comments on commit e70564b

Please sign in to comment.