Mismatching versions? #3532
-
I keep getting this error:
Yet, I've done |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Re-running |
Beta Was this translation helpful? Give feedback.
-
I keep getting this error:
Yet, I've done |
Beta Was this translation helpful? Give feedback.
-
Re-running |
Beta Was this translation helpful? Give feedback.
wasm-server-runner
is the culprit here - it seems to be embedding a fixed version ofwasm-bindgen-cli-support
inside itself, and so updating your system version of thewasm-bindgen
CLI has no effect.Re-running
cargo install wasm-server-runner
should fix this for the moment, since it's not pinned to a particular version ofwasm-bindgen-cli-support
and socargo install
will pick the latest version of it to use. You'll have to repeat that every time you update thewasm-bindgen
library though, and I don't think there's any good way to downgrade it to an older version ofwasm-bindgen-cli-support
if you need to.