Skip to content

Commit

Permalink
chore: bump wasm-bindgen to 0.2.100
Browse files Browse the repository at this point in the history
Recently, CI jobs started failing on the `rust:lint` step.
One suitable workaround was to ignore the questionable lints
via Cargo.toml:

```
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(wasm_bindgen_unstable_test_coverage)'] }
```

However we can just bump the dep and skip ignoring the lints. See
related discussion in [0].

[0] rustwasm/wasm-bindgen#4283
  • Loading branch information
conorsch committed Jan 17, 2025
1 parent 97842ea commit dd27f0e
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 13 deletions.
33 changes: 21 additions & 12 deletions packages/wasm/crate/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/wasm/crate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ regex = { version = "1.11.0" }
serde = { version = "1.0.210", features = ["derive"] }
serde-wasm-bindgen = "0.6.5"
thiserror = "1.0.64"
wasm-bindgen = "0.2.93"
wasm-bindgen = "0.2.100"
wasm-bindgen-futures = "0.4.43"
web-sys = { version = "0.3.70", features = ["console"] }

Expand Down

0 comments on commit dd27f0e

Please sign in to comment.