From 46f988e07495ffb6de59ad496ab15890ca5d3339 Mon Sep 17 00:00:00 2001 From: Justin Torre Date: Sat, 26 Sep 2020 00:26:59 -0400 Subject: [PATCH] Update Cargo.toml I was going through the (Rust and wasm tutorial)[https://rustwasm.github.io/docs/book/introduction.html] and ran into some issues with wasm-bindgen 0.2.66. Other people are also experiencing (issues here)[https://github.com/rustwasm/wasm-pack/issues/886#issuecomment-665953933] This change pins wasm-bindgen version to 0.2.65 in accordance to the solution above. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 24514d4..bb7e8aa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ crate-type = ["cdylib", "rlib"] default = ["console_error_panic_hook"] [dependencies] -wasm-bindgen = "0.2.63" +wasm-bindgen = "=0.2.65" # The `console_error_panic_hook` crate provides better debugging of panics by # logging them with `console.error`. This is great for development, but requires