From 0c6b9d32f85a7e0505ba8cc18173039ac464cd17 Mon Sep 17 00:00:00 2001 From: Justin Starry Date: Fri, 11 Oct 2019 10:49:55 -0400 Subject: [PATCH] Bump wasm bindgen to 0.2.50 (#695) * Bump wasm-bindgen to 0.2.50 * Update Cargo.toml * Update Cargo.toml --- .travis.yml | 2 +- Cargo.toml | 4 ++-- examples/js_callback/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7f0db07a1b0..69e27469b60 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,7 +33,7 @@ install: - nvm install 9 - rustup component add rustfmt - rustup target add wasm32-unknown-unknown - - cargo install --force --version 0.2.42 -- wasm-bindgen-cli + - cargo install --force --version 0.2.50 -- wasm-bindgen-cli - curl --retry 5 -LO https://chromedriver.storage.googleapis.com/2.41/chromedriver_linux64.zip - unzip chromedriver_linux64.zip - ./ci/install_cargo_web.sh diff --git a/Cargo.toml b/Cargo.toml index b673baef98b..a89aa1b68dc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,7 +38,7 @@ toml = { version = "0.4", optional = true } yew-macro = { version = "0.10.0", path = "crates/macro" } [target.'cfg(all(target_arch = "wasm32", not(cargo_web)))'.dependencies] -wasm-bindgen = "=0.2.42" +wasm-bindgen = "=0.2.50" [dev-dependencies] serde_derive = "1" @@ -46,7 +46,7 @@ trybuild = "1.0" rustversion = "0.1" [target.'cfg(all(target_arch = "wasm32", not(cargo_web)))'.dev-dependencies] -wasm-bindgen-test = "0.2" +wasm-bindgen-test = "=0.2.50" [features] default = [] diff --git a/examples/js_callback/Cargo.toml b/examples/js_callback/Cargo.toml index 9e7d46725d8..af661676f9d 100644 --- a/examples/js_callback/Cargo.toml +++ b/examples/js_callback/Cargo.toml @@ -9,4 +9,4 @@ yew = { path = "../.." } stdweb = "^0.4.20" [target.'cfg(all(target_arch = "wasm32", not(cargo_web)))'.dependencies] -wasm-bindgen = "=0.2.42" +wasm-bindgen = "=0.2.50"