From fae9fb90fb47f551249e65d3cfb5e2bdc4d56cdd Mon Sep 17 00:00:00 2001 From: Vincent Serpoul Date: Sun, 16 Aug 2020 00:12:22 +0800 Subject: [PATCH] [oocs] wasm-bindgen exact version (#1482) I just tried the sample app. I had to specify the exact wasm-bindgen otherwise, wasm-pack is hanging same as: rustwasm/wasm-pack-template#44 --- docs/getting-started/build-a-sample-app.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started/build-a-sample-app.md b/docs/getting-started/build-a-sample-app.md index 2972e0470fd..8e1e78a00c9 100644 --- a/docs/getting-started/build-a-sample-app.md +++ b/docs/getting-started/build-a-sample-app.md @@ -22,7 +22,7 @@ crate-type = ["cdylib", "rlib"] [dependencies] yew = "0.17" -wasm-bindgen = "0.2" +wasm-bindgen = "0.2.67" ``` Copy the following template into your `src/lib.rs` file: