Skip to content

Commit

Permalink
Upgraded wasm-bindgen (#2020)
Browse files Browse the repository at this point in the history
This Pull Request supersedes #2018 and #2017.

It changes the following:

- Updates the wasm-bindgen dependency now that a new version without the clippy bug has been released
- Updates all dependencies to their latest versions
  • Loading branch information
Razican committed Apr 8, 2022
1 parent 3007531 commit 8d746ec
Show file tree
Hide file tree
Showing 5 changed files with 253 additions and 231 deletions.
122 changes: 71 additions & 51 deletions 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 boa_engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ console = []
boa_unicode = { path = "../boa_unicode", version = "0.14.0" }
boa_interner = { path = "../boa_interner", version = "0.14.0" }
boa_gc = { path = "../boa_gc", version = "0.14.0" }
gc = { version = "0.4.1" }
gc = "0.4.1"
boa_profiler = { path = "../boa_profiler", version = "0.14.0" }
serde = { version = "1.0.136", features = ["derive", "rc"] }
serde_json = "1.0.79"
Expand Down
2 changes: 1 addition & 1 deletion boa_examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ edition = "2021"
[dependencies]
boa_engine = { path = "../boa_engine", features = ["console"], version = "0.14.0" }
boa_gc = { path = "../boa_gc", version = "0.14.0" }
gc = { version = "0.4.1" }
gc = "0.4.1"
3 changes: 1 addition & 2 deletions boa_wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ license = "Unlicense/MIT"

[dependencies]
boa_engine = { path = "../boa_engine", features = ["console"], version = "0.14.0" }
# BUG: Pump when 0.2.80 releases. See https://github.com/rustwasm/wasm-bindgen/issues/2774
wasm-bindgen = "=0.2.78"
wasm-bindgen = "0.2.80"
getrandom = { version = "0.2.6", features = ["js"] }

[lib]
Expand Down
Loading

0 comments on commit 8d746ec

Please sign in to comment.