diff --git a/docs/Cargo.toml b/docs/Cargo.toml index d649c3898..fb740a6f6 100644 --- a/docs/Cargo.toml +++ b/docs/Cargo.toml @@ -11,7 +11,7 @@ console_error_panic_hook = "0.1.6" console_log = "0.2.0" log = "0.4.14" maple-core = {path = "../maple-core"} -wasm-bindgen = "0.2.71" +wasm-bindgen = "0.2" [dependencies.web-sys] features = ["HtmlInputElement", "InputEvent"] diff --git a/examples/hello/Cargo.toml b/examples/hello/Cargo.toml index 2d59587a2..420d228e6 100644 --- a/examples/hello/Cargo.toml +++ b/examples/hello/Cargo.toml @@ -12,7 +12,7 @@ console_error_panic_hook = "0.1.6" console_log = "0.2.0" log = "0.4.14" maple-core = {path = "../../maple-core"} -wasm-bindgen = "0.2.71" +wasm-bindgen = "0.2" [dependencies.web-sys] features = ["HtmlInputElement", "InputEvent"] diff --git a/examples/todomvc/Cargo.toml b/examples/todomvc/Cargo.toml index 14ab072c8..25a6a3481 100644 --- a/examples/todomvc/Cargo.toml +++ b/examples/todomvc/Cargo.toml @@ -12,7 +12,7 @@ console_error_panic_hook = "0.1.6" console_log = "0.2.0" log = "0.4.14" maple-core = {path = "../../maple-core"} -wasm-bindgen = "0.2.71" +wasm-bindgen = "0.2" [dependencies.web-sys] features = ["HtmlInputElement", "InputEvent"] diff --git a/maple-core/Cargo.toml b/maple-core/Cargo.toml index 34e8da778..5db1e2d61 100644 --- a/maple-core/Cargo.toml +++ b/maple-core/Cargo.toml @@ -15,7 +15,7 @@ version = "0.3.1" [dependencies] maple-core-macro = {path = "../maple-core-macro", version = "0.3.1"} -wasm-bindgen = "0.2.71" +wasm-bindgen = "0.2.72" [dependencies.web-sys] features = [ diff --git a/scripts/netlify-build b/scripts/netlify-build index 8e9b59601..b27cec55d 100644 --- a/scripts/netlify-build +++ b/scripts/netlify-build @@ -7,10 +7,7 @@ rustup target add wasm32-unknown-unknown cargo install trunk --version ^0.10.0 -echo Installing wasm-bindgen -wget -q https://github.com/rustwasm/wasm-bindgen/releases/download/0.2.71/wasm-bindgen-0.2.71-x86_64-unknown-linux-musl.tar.gz -tar -xf wasm-bindgen-0.2.71-x86_64-unknown-linux-musl.tar.gz -export PATH=/opt/build/repo/wasm-bindgen-0.2.71-x86_64-unknown-linux-musl:$PATH +cargo install wasm-bindgen --version ^0.2.72 cd ./docs