You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it looks like the Rust project used to create this wasm file was linked against
version of wasm-bindgen that uses a different bindgen format than this binary:
rust wasm file schema version: 0.2.82
this binary schema version: 0.2.81
Currently the bindgen format is unstable enough that these two schema versions
must exactly match. You can accomplish this by either updating the wasm-bindgen
dependency or this binary.
You should be able to update the wasm-bindgen dependency with:
cargo update -p wasm-bindgen
or you can update the binary with
cargo install -f wasm-bindgen-cli
I check the version of wasm-bindgen in the bazel-bin/external and it is 0.2.82,
which is the same as cmd wasm-bindgen -V shows.
Run the cmd wasm-pack build is ok.
Is there any wrong use about these rules?
The text was updated successfully, but these errors were encountered:
Hello! I am trying to build a wasm using bazel.
I wrote the BUILD file like this:
And I run the cmd in this folder:
And it failed because of:
I check the version of
wasm-bindgen
in the bazel-bin/external and it is 0.2.82,which is the same as cmd wasm-bindgen -V shows.
Run the cmd
wasm-pack build
is ok.Is there any wrong use about these rules?
The text was updated successfully, but these errors were encountered: