From a881a83c5aa48e841dcc13b7089f1f9f35252fe1 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 19 Aug 2021 10:06:51 -0500 Subject: [PATCH] Bump to 0.2.76 (#2661) --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 10 +++++----- crates/backend/Cargo.toml | 4 ++-- crates/cli-support/Cargo.toml | 14 +++++++------- crates/cli/Cargo.toml | 6 +++--- crates/externref-xform/Cargo.toml | 2 +- crates/futures/Cargo.toml | 8 ++++---- crates/js-sys/Cargo.toml | 8 ++++---- crates/macro-support/Cargo.toml | 6 +++--- crates/macro/Cargo.toml | 8 ++++---- crates/multi-value-xform/Cargo.toml | 2 +- crates/shared/Cargo.toml | 2 +- crates/test-macro/Cargo.toml | 2 +- crates/test/Cargo.toml | 10 +++++----- crates/threads-xform/Cargo.toml | 4 ++-- crates/wasm-conventions/Cargo.toml | 2 +- crates/wasm-interpreter/Cargo.toml | 4 ++-- crates/web-sys/Cargo.toml | 10 +++++----- crates/webidl/Cargo.toml | 4 ++-- examples/add/Cargo.toml | 2 +- examples/canvas/Cargo.toml | 4 ++-- examples/char/Cargo.toml | 2 +- examples/closures/Cargo.toml | 4 ++-- examples/console_log/Cargo.toml | 4 ++-- examples/deno/Cargo.toml | 2 +- examples/dom/Cargo.toml | 2 +- examples/duck-typed-interfaces/Cargo.toml | 2 +- examples/fetch/Cargo.toml | 6 +++--- examples/guide-supported-types-examples/Cargo.toml | 4 ++-- examples/hello_world/Cargo.toml | 2 +- examples/import_js/crate/Cargo.toml | 2 +- examples/julia_set/Cargo.toml | 2 +- examples/paint/Cargo.toml | 4 ++-- examples/performance/Cargo.toml | 2 +- examples/raytrace-parallel/Cargo.toml | 6 +++--- examples/request-animation-frame/Cargo.toml | 2 +- examples/todomvc/Cargo.toml | 4 ++-- examples/wasm-in-wasm-imports/Cargo.toml | 6 +++--- examples/wasm-in-wasm/Cargo.toml | 6 +++--- examples/wasm-in-web-worker/Cargo.toml | 2 +- examples/wasm2js/Cargo.toml | 2 +- examples/weather_report/Cargo.toml | 2 +- examples/webaudio/Cargo.toml | 2 +- examples/webgl/Cargo.toml | 4 ++-- examples/webrtc_datachannel/Cargo.toml | 4 ++-- examples/websockets/Cargo.toml | 2 +- examples/webxr/Cargo.toml | 6 +++--- examples/without-a-bundler/Cargo.toml | 2 +- 48 files changed, 108 insertions(+), 100 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 76649e2a5..3ddd440ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ -------------------------------------------------------------------------------- +## 0.2.76 + +Released 2021-08-19. + +[changes](https://github.com/rustwasm/wasm-bindgen/compare/0.2.75...0.2.76) + +-------------------------------------------------------------------------------- + ## 0.2.75 Released 2021-08-02. diff --git a/Cargo.toml b/Cargo.toml index 76b1a8a5f..ad9d1da96 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-bindgen" -version = "0.2.75" +version = "0.2.76" authors = ["The wasm-bindgen Developers"] license = "MIT/Apache-2.0" readme = "README.md" @@ -36,15 +36,15 @@ strict-macro = ["wasm-bindgen-macro/strict-macro"] xxx_debug_only_print_generated_code = ["wasm-bindgen-macro/xxx_debug_only_print_generated_code"] [dependencies] -wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.75" } +wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.76" } serde = { version = "1.0", optional = true } serde_json = { version = "1.0", optional = true } cfg-if = "1.0.0" [target.'cfg(target_arch = "wasm32")'.dev-dependencies] -js-sys = { path = 'crates/js-sys', version = '0.3.52' } -wasm-bindgen-test = { path = 'crates/test', version = '=0.3.25' } -wasm-bindgen-futures = { path = 'crates/futures', version = '=0.4.25' } +js-sys = { path = 'crates/js-sys', version = '0.3.53' } +wasm-bindgen-test = { path = 'crates/test', version = '=0.3.26' } +wasm-bindgen-futures = { path = 'crates/futures', version = '=0.4.26' } serde_derive = "1.0" wasm-bindgen-test-crate-a = { path = 'tests/crates/a', version = '0.1' } wasm-bindgen-test-crate-b = { path = 'tests/crates/b', version = '0.1' } diff --git a/crates/backend/Cargo.toml b/crates/backend/Cargo.toml index 2967f1667..d72ef9d10 100644 --- a/crates/backend/Cargo.toml +++ b/crates/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-bindgen-backend" -version = "0.2.75" +version = "0.2.76" authors = ["The wasm-bindgen Developers"] license = "MIT/Apache-2.0" repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend" @@ -22,4 +22,4 @@ log = "0.4" proc-macro2 = "1.0" quote = '1.0' syn = { version = '1.0', features = ['full'] } -wasm-bindgen-shared = { path = "../shared", version = "=0.2.75" } +wasm-bindgen-shared = { path = "../shared", version = "=0.2.76" } diff --git a/crates/cli-support/Cargo.toml b/crates/cli-support/Cargo.toml index eca1ce8ed..f3374ba60 100644 --- a/crates/cli-support/Cargo.toml +++ b/crates/cli-support/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-bindgen-cli-support" -version = "0.2.75" +version = "0.2.76" authors = ["The wasm-bindgen Developers"] license = "MIT/Apache-2.0" repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/cli-support" @@ -19,12 +19,12 @@ rustc-demangle = "0.1.13" serde_json = "1.0" tempfile = "3.0" walrus = "0.19.0" -wasm-bindgen-externref-xform = { path = '../externref-xform', version = '=0.2.75' } -wasm-bindgen-multi-value-xform = { path = '../multi-value-xform', version = '=0.2.75' } -wasm-bindgen-shared = { path = "../shared", version = '=0.2.75' } -wasm-bindgen-threads-xform = { path = '../threads-xform', version = '=0.2.75' } -wasm-bindgen-wasm-conventions = { path = '../wasm-conventions', version = '=0.2.75' } -wasm-bindgen-wasm-interpreter = { path = "../wasm-interpreter", version = '=0.2.75' } +wasm-bindgen-externref-xform = { path = '../externref-xform', version = '=0.2.76' } +wasm-bindgen-multi-value-xform = { path = '../multi-value-xform', version = '=0.2.76' } +wasm-bindgen-shared = { path = "../shared", version = '=0.2.76' } +wasm-bindgen-threads-xform = { path = '../threads-xform', version = '=0.2.76' } +wasm-bindgen-wasm-conventions = { path = '../wasm-conventions', version = '=0.2.76' } +wasm-bindgen-wasm-interpreter = { path = "../wasm-interpreter", version = '=0.2.76' } wit-text = "0.8.0" wit-walrus = "0.6.0" wit-validator = "0.2.0" diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index dbcfc0034..8a7ab1a7c 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-bindgen-cli" -version = "0.2.75" +version = "0.2.76" authors = ["The wasm-bindgen Developers"] license = "MIT/Apache-2.0" repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/cli" @@ -26,8 +26,8 @@ serde = { version = "1.0", features = ['derive'] } serde_derive = "1.0" serde_json = "1.0" walrus = { version = "0.19.0", features = ['parallel'] } -wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.75" } -wasm-bindgen-shared = { path = "../shared", version = "=0.2.75" } +wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.76" } +wasm-bindgen-shared = { path = "../shared", version = "=0.2.76" } [dev-dependencies] assert_cmd = "1.0" diff --git a/crates/externref-xform/Cargo.toml b/crates/externref-xform/Cargo.toml index ecd305000..850d79a3e 100644 --- a/crates/externref-xform/Cargo.toml +++ b/crates/externref-xform/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-bindgen-externref-xform" -version = "0.2.75" +version = "0.2.76" authors = ["The wasm-bindgen Developers"] license = "MIT/Apache-2.0" repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/externref-xform" diff --git a/crates/futures/Cargo.toml b/crates/futures/Cargo.toml index cb0f49999..81ff79999 100644 --- a/crates/futures/Cargo.toml +++ b/crates/futures/Cargo.toml @@ -7,13 +7,13 @@ license = "MIT/Apache-2.0" name = "wasm-bindgen-futures" repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/futures" readme = "./README.md" -version = "0.4.25" +version = "0.4.26" edition = "2018" [dependencies] cfg-if = "1.0.0" -js-sys = { path = "../js-sys", version = '0.3.52' } -wasm-bindgen = { path = "../..", version = '0.2.75' } +js-sys = { path = "../js-sys", version = '0.3.53' } +wasm-bindgen = { path = "../..", version = '0.2.76' } futures-core = { version = '0.3.8', default-features = false, optional = true } [features] @@ -28,6 +28,6 @@ features = [ ] [target.'cfg(target_arch = "wasm32")'.dev-dependencies] -wasm-bindgen-test = { path = '../test', version = '0.3.25' } +wasm-bindgen-test = { path = '../test', version = '0.3.26' } futures-channel-preview = { version = "0.3.0-alpha.18" } futures-lite = { version = "1.11.3", default-features = false } diff --git a/crates/js-sys/Cargo.toml b/crates/js-sys/Cargo.toml index b2428fab3..8c2b2de1d 100644 --- a/crates/js-sys/Cargo.toml +++ b/crates/js-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "js-sys" -version = "0.3.52" +version = "0.3.53" authors = ["The wasm-bindgen Developers"] readme = "./README.md" categories = ["wasm"] @@ -19,8 +19,8 @@ test = false doctest = false [dependencies] -wasm-bindgen = { path = "../..", version = "0.2.75" } +wasm-bindgen = { path = "../..", version = "0.2.76" } [target.'cfg(target_arch = "wasm32")'.dev-dependencies] -wasm-bindgen-test = { path = '../test', version = '=0.3.25' } -wasm-bindgen-futures = { path = '../futures', version = '0.4.25' } +wasm-bindgen-test = { path = '../test', version = '=0.3.26' } +wasm-bindgen-futures = { path = '../futures', version = '0.4.26' } diff --git a/crates/macro-support/Cargo.toml b/crates/macro-support/Cargo.toml index 76d3cd1d4..606437a22 100644 --- a/crates/macro-support/Cargo.toml +++ b/crates/macro-support/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-bindgen-macro-support" -version = "0.2.75" +version = "0.2.76" authors = ["The wasm-bindgen Developers"] license = "MIT/Apache-2.0" repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support" @@ -20,5 +20,5 @@ strict-macro = [] syn = { version = '1.0.67', features = ['visit', 'full'] } quote = '1.0' proc-macro2 = "1.0" -wasm-bindgen-backend = { path = "../backend", version = "=0.2.75" } -wasm-bindgen-shared = { path = "../shared", version = "=0.2.75" } +wasm-bindgen-backend = { path = "../backend", version = "=0.2.76" } +wasm-bindgen-shared = { path = "../shared", version = "=0.2.76" } diff --git a/crates/macro/Cargo.toml b/crates/macro/Cargo.toml index 7fbf5f3be..c15bc7f8c 100644 --- a/crates/macro/Cargo.toml +++ b/crates/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-bindgen-macro" -version = "0.2.75" +version = "0.2.76" authors = ["The wasm-bindgen Developers"] license = "MIT/Apache-2.0" repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro" @@ -20,10 +20,10 @@ xxx_debug_only_print_generated_code = [] strict-macro = ["wasm-bindgen-macro-support/strict-macro"] [dependencies] -wasm-bindgen-macro-support = { path = "../macro-support", version = "=0.2.75" } +wasm-bindgen-macro-support = { path = "../macro-support", version = "=0.2.76" } quote = "1.0" [dev-dependencies] trybuild = "1.0" -wasm-bindgen = { path = "../..", version = "0.2.75", features = ['strict-macro'] } -wasm-bindgen-futures = { path = "../futures", version = "0.4.25" } +wasm-bindgen = { path = "../..", version = "0.2.76", features = ['strict-macro'] } +wasm-bindgen-futures = { path = "../futures", version = "0.4.26" } diff --git a/crates/multi-value-xform/Cargo.toml b/crates/multi-value-xform/Cargo.toml index 6278a12cd..5caccc94c 100644 --- a/crates/multi-value-xform/Cargo.toml +++ b/crates/multi-value-xform/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-bindgen-multi-value-xform" -version = "0.2.75" +version = "0.2.76" authors = ["The wasm-bindgen Developers"] license = "MIT/Apache-2.0" repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/multi-value-xform" diff --git a/crates/shared/Cargo.toml b/crates/shared/Cargo.toml index 61f570112..ed8afc3b3 100644 --- a/crates/shared/Cargo.toml +++ b/crates/shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-bindgen-shared" -version = "0.2.75" +version = "0.2.76" authors = ["The wasm-bindgen Developers"] license = "MIT/Apache-2.0" repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared" diff --git a/crates/test-macro/Cargo.toml b/crates/test-macro/Cargo.toml index 563838ed7..ddfcf4bcf 100644 --- a/crates/test-macro/Cargo.toml +++ b/crates/test-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-bindgen-test-macro" -version = "0.3.25" +version = "0.3.26" authors = ["The wasm-bindgen Developers"] description = "Internal testing macro for wasm-bindgen" license = "MIT/Apache-2.0" diff --git a/crates/test/Cargo.toml b/crates/test/Cargo.toml index eb01c5f17..051bba979 100644 --- a/crates/test/Cargo.toml +++ b/crates/test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-bindgen-test" -version = "0.3.25" +version = "0.3.26" authors = ["The wasm-bindgen Developers"] description = "Internal testing crate for wasm-bindgen" license = "MIT/Apache-2.0" @@ -9,11 +9,11 @@ edition = "2018" [dependencies] console_error_panic_hook = '0.1' -js-sys = { path = '../js-sys', version = '0.3.52' } +js-sys = { path = '../js-sys', version = '0.3.53' } scoped-tls = "1.0" -wasm-bindgen = { path = '../..', version = '0.2.75' } -wasm-bindgen-futures = { path = '../futures', version = '0.4.25' } -wasm-bindgen-test-macro = { path = '../test-macro', version = '=0.3.25' } +wasm-bindgen = { path = '../..', version = '0.2.76' } +wasm-bindgen-futures = { path = '../futures', version = '0.4.26' } +wasm-bindgen-test-macro = { path = '../test-macro', version = '=0.3.26' } [lib] test = false diff --git a/crates/threads-xform/Cargo.toml b/crates/threads-xform/Cargo.toml index 9d80109f1..28c67620e 100644 --- a/crates/threads-xform/Cargo.toml +++ b/crates/threads-xform/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-bindgen-threads-xform" -version = "0.2.75" +version = "0.2.76" authors = ["The wasm-bindgen Developers"] license = "MIT/Apache-2.0" repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/threads-xform" @@ -14,4 +14,4 @@ edition = "2018" [dependencies] anyhow = "1.0" walrus = "0.19.0" -wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.75" } +wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.76" } diff --git a/crates/wasm-conventions/Cargo.toml b/crates/wasm-conventions/Cargo.toml index 824360893..65035e738 100644 --- a/crates/wasm-conventions/Cargo.toml +++ b/crates/wasm-conventions/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-bindgen-wasm-conventions" -version = "0.2.75" +version = "0.2.76" authors = ["The wasm-bindgen developers"] license = "MIT/Apache-2.0" repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/wasm-conventions" diff --git a/crates/wasm-interpreter/Cargo.toml b/crates/wasm-interpreter/Cargo.toml index 04573c7c9..fba3dc62b 100644 --- a/crates/wasm-interpreter/Cargo.toml +++ b/crates/wasm-interpreter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-bindgen-wasm-interpreter" -version = "0.2.75" +version = "0.2.76" authors = ["The wasm-bindgen Developers"] license = "MIT/Apache-2.0" repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/wasm-interpreter" @@ -15,7 +15,7 @@ edition = '2018' anyhow = "1.0" log = "0.4" walrus = "0.19.0" -wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "0.2.75" } +wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "0.2.76" } [dev-dependencies] tempfile = "3" diff --git a/crates/web-sys/Cargo.toml b/crates/web-sys/Cargo.toml index 54c6c10c2..ed6fb75de 100644 --- a/crates/web-sys/Cargo.toml +++ b/crates/web-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "web-sys" -version = "0.3.52" +version = "0.3.53" authors = ["The wasm-bindgen Developers"] readme = "./README.md" homepage = "https://rustwasm.github.io/wasm-bindgen/web-sys/index.html" @@ -21,12 +21,12 @@ doctest = false test = false [dependencies] -wasm-bindgen = { path = "../..", version = "0.2.75" } -js-sys = { path = '../js-sys', version = '0.3.52' } +wasm-bindgen = { path = "../..", version = "0.2.76" } +js-sys = { path = '../js-sys', version = '0.3.53' } [target.'cfg(target_arch = "wasm32")'.dev-dependencies] -wasm-bindgen-test = { path = '../test', version = '0.3.25' } -wasm-bindgen-futures = { path = '../futures', version = '0.4.25' } +wasm-bindgen-test = { path = '../test', version = '0.3.26' } +wasm-bindgen-futures = { path = '../futures', version = '0.4.26' } # This list is auto-generated by the wasm-bindgen-webidl program [features] diff --git a/crates/webidl/Cargo.toml b/crates/webidl/Cargo.toml index 5747eb499..8450aee99 100644 --- a/crates/webidl/Cargo.toml +++ b/crates/webidl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-bindgen-webidl" -version = "0.2.75" +version = "0.2.76" authors = ["The wasm-bindgen Developers"] license = "MIT/Apache-2.0" categories = ["wasm"] @@ -20,7 +20,7 @@ log = "0.4.1" proc-macro2 = "1.0" quote = '1.0' syn = { version = '1.0', features = ['full'] } -wasm-bindgen-backend = { version = "=0.2.75", path = "../backend" } +wasm-bindgen-backend = { version = "=0.2.76", path = "../backend" } weedle = "0.12" lazy_static = "1.0.2" sourcefile = "0.1" diff --git a/examples/add/Cargo.toml b/examples/add/Cargo.toml index 8511312ae..d59704954 100644 --- a/examples/add/Cargo.toml +++ b/examples/add/Cargo.toml @@ -8,4 +8,4 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -wasm-bindgen = "0.2.75" +wasm-bindgen = "0.2.76" diff --git a/examples/canvas/Cargo.toml b/examples/canvas/Cargo.toml index c1c5137fe..ee9c691fb 100644 --- a/examples/canvas/Cargo.toml +++ b/examples/canvas/Cargo.toml @@ -8,8 +8,8 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -js-sys = "0.3.52" -wasm-bindgen = "0.2.75" +js-sys = "0.3.53" +wasm-bindgen = "0.2.76" [dependencies.web-sys] version = "0.3.4" diff --git a/examples/char/Cargo.toml b/examples/char/Cargo.toml index a3d4e5648..e58d40d15 100644 --- a/examples/char/Cargo.toml +++ b/examples/char/Cargo.toml @@ -8,4 +8,4 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -wasm-bindgen = "0.2.75" +wasm-bindgen = "0.2.76" diff --git a/examples/closures/Cargo.toml b/examples/closures/Cargo.toml index 9634c9cef..68eff0356 100644 --- a/examples/closures/Cargo.toml +++ b/examples/closures/Cargo.toml @@ -8,8 +8,8 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -wasm-bindgen = "0.2.75" -js-sys = "0.3.52" +wasm-bindgen = "0.2.76" +js-sys = "0.3.53" [dependencies.web-sys] version = "0.3.4" diff --git a/examples/console_log/Cargo.toml b/examples/console_log/Cargo.toml index 29c7c86c7..b96d5467f 100644 --- a/examples/console_log/Cargo.toml +++ b/examples/console_log/Cargo.toml @@ -8,5 +8,5 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -wasm-bindgen = "0.2.75" -web-sys = { version = "0.3.52", features = ['console'] } +wasm-bindgen = "0.2.76" +web-sys = { version = "0.3.53", features = ['console'] } diff --git a/examples/deno/Cargo.toml b/examples/deno/Cargo.toml index 27f2af0f9..d4d5f904d 100644 --- a/examples/deno/Cargo.toml +++ b/examples/deno/Cargo.toml @@ -8,4 +8,4 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -wasm-bindgen = "0.2.75" +wasm-bindgen = "0.2.76" diff --git a/examples/dom/Cargo.toml b/examples/dom/Cargo.toml index 9ea09169f..35de88f6a 100644 --- a/examples/dom/Cargo.toml +++ b/examples/dom/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -wasm-bindgen = "0.2.75" +wasm-bindgen = "0.2.76" [dependencies.web-sys] version = "0.3.4" diff --git a/examples/duck-typed-interfaces/Cargo.toml b/examples/duck-typed-interfaces/Cargo.toml index c0f831774..91337c4d5 100644 --- a/examples/duck-typed-interfaces/Cargo.toml +++ b/examples/duck-typed-interfaces/Cargo.toml @@ -8,4 +8,4 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -wasm-bindgen = "0.2.75" +wasm-bindgen = "0.2.76" diff --git a/examples/fetch/Cargo.toml b/examples/fetch/Cargo.toml index 2f611778a..71256d193 100644 --- a/examples/fetch/Cargo.toml +++ b/examples/fetch/Cargo.toml @@ -8,9 +8,9 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -wasm-bindgen = { version = "0.2.75", features = ["serde-serialize"] } -js-sys = "0.3.52" -wasm-bindgen-futures = "0.4.25" +wasm-bindgen = { version = "0.2.76", features = ["serde-serialize"] } +js-sys = "0.3.53" +wasm-bindgen-futures = "0.4.26" serde = { version = "1.0.80", features = ["derive"] } serde_derive = "^1.0.59" diff --git a/examples/guide-supported-types-examples/Cargo.toml b/examples/guide-supported-types-examples/Cargo.toml index 5ec73c1e7..17d9a737e 100644 --- a/examples/guide-supported-types-examples/Cargo.toml +++ b/examples/guide-supported-types-examples/Cargo.toml @@ -8,5 +8,5 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -wasm-bindgen = "0.2.75" -js-sys = "0.3.52" +wasm-bindgen = "0.2.76" +js-sys = "0.3.53" diff --git a/examples/hello_world/Cargo.toml b/examples/hello_world/Cargo.toml index 47c39a4cf..0e7439c63 100644 --- a/examples/hello_world/Cargo.toml +++ b/examples/hello_world/Cargo.toml @@ -8,4 +8,4 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -wasm-bindgen = "0.2.75" +wasm-bindgen = "0.2.76" diff --git a/examples/import_js/crate/Cargo.toml b/examples/import_js/crate/Cargo.toml index 2a86154f7..7fa6637b4 100644 --- a/examples/import_js/crate/Cargo.toml +++ b/examples/import_js/crate/Cargo.toml @@ -8,4 +8,4 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -wasm-bindgen = "0.2.75" +wasm-bindgen = "0.2.76" diff --git a/examples/julia_set/Cargo.toml b/examples/julia_set/Cargo.toml index 7e609dea4..a85fe7589 100644 --- a/examples/julia_set/Cargo.toml +++ b/examples/julia_set/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -wasm-bindgen = "0.2.75" +wasm-bindgen = "0.2.76" [dependencies.web-sys] version = "0.3.4" diff --git a/examples/paint/Cargo.toml b/examples/paint/Cargo.toml index b21808e09..b30e63ad1 100644 --- a/examples/paint/Cargo.toml +++ b/examples/paint/Cargo.toml @@ -8,8 +8,8 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -js-sys = "0.3.52" -wasm-bindgen = "0.2.75" +js-sys = "0.3.53" +wasm-bindgen = "0.2.76" [dependencies.web-sys] version = "0.3.4" diff --git a/examples/performance/Cargo.toml b/examples/performance/Cargo.toml index 138886258..a4cbe24e1 100644 --- a/examples/performance/Cargo.toml +++ b/examples/performance/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -wasm-bindgen = "0.2.75" +wasm-bindgen = "0.2.76" humantime = "2" [dependencies.web-sys] diff --git a/examples/raytrace-parallel/Cargo.toml b/examples/raytrace-parallel/Cargo.toml index 32c8a0d40..56e118d09 100644 --- a/examples/raytrace-parallel/Cargo.toml +++ b/examples/raytrace-parallel/Cargo.toml @@ -9,13 +9,13 @@ crate-type = ["cdylib"] [dependencies] console_error_panic_hook = "0.1" -js-sys = "0.3.52" +js-sys = "0.3.53" rayon = "1.1.0" rayon-core = "1.5.0" raytracer = { git = 'https://github.com/alexcrichton/raytracer', branch = 'update-deps' } futures-channel-preview = "0.3.0-alpha.18" -wasm-bindgen = { version = "0.2.75", features = ['serde-serialize'] } -wasm-bindgen-futures = "0.4.25" +wasm-bindgen = { version = "0.2.76", features = ['serde-serialize'] } +wasm-bindgen-futures = "0.4.26" [dependencies.web-sys] version = "0.3.23" diff --git a/examples/request-animation-frame/Cargo.toml b/examples/request-animation-frame/Cargo.toml index d3b841b35..b4576c9e1 100644 --- a/examples/request-animation-frame/Cargo.toml +++ b/examples/request-animation-frame/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -wasm-bindgen = "0.2.75" +wasm-bindgen = "0.2.76" [dependencies.web-sys] version = "0.3.4" diff --git a/examples/todomvc/Cargo.toml b/examples/todomvc/Cargo.toml index fbdffc50e..efa0aa3cd 100644 --- a/examples/todomvc/Cargo.toml +++ b/examples/todomvc/Cargo.toml @@ -11,8 +11,8 @@ crate-type = ["cdylib"] askama = "0.10.0" [dependencies] -js-sys = "0.3.52" -wasm-bindgen = "0.2.75" +js-sys = "0.3.53" +wasm-bindgen = "0.2.76" askama = "0.10.0" console_error_panic_hook = "0.1.5" diff --git a/examples/wasm-in-wasm-imports/Cargo.toml b/examples/wasm-in-wasm-imports/Cargo.toml index 93e1c29b9..173c06548 100644 --- a/examples/wasm-in-wasm-imports/Cargo.toml +++ b/examples/wasm-in-wasm-imports/Cargo.toml @@ -8,6 +8,6 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -wasm-bindgen = "0.2.75" -js-sys = "0.3.52" -wasm-bindgen-futures = "0.4.25" +wasm-bindgen = "0.2.76" +js-sys = "0.3.53" +wasm-bindgen-futures = "0.4.26" diff --git a/examples/wasm-in-wasm/Cargo.toml b/examples/wasm-in-wasm/Cargo.toml index 98fc3e8b7..b79c1fe01 100644 --- a/examples/wasm-in-wasm/Cargo.toml +++ b/examples/wasm-in-wasm/Cargo.toml @@ -8,6 +8,6 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -wasm-bindgen = "0.2.75" -js-sys = "0.3.52" -wasm-bindgen-futures = "0.4.25" +wasm-bindgen = "0.2.76" +js-sys = "0.3.53" +wasm-bindgen-futures = "0.4.26" diff --git a/examples/wasm-in-web-worker/Cargo.toml b/examples/wasm-in-web-worker/Cargo.toml index b73109dcf..360e8f699 100644 --- a/examples/wasm-in-web-worker/Cargo.toml +++ b/examples/wasm-in-web-worker/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -wasm-bindgen = "0.2.75" +wasm-bindgen = "0.2.76" console_error_panic_hook = { version = "0.1.6", optional = true } [dependencies.web-sys] diff --git a/examples/wasm2js/Cargo.toml b/examples/wasm2js/Cargo.toml index 2c7d05a0a..5d1fb1c20 100644 --- a/examples/wasm2js/Cargo.toml +++ b/examples/wasm2js/Cargo.toml @@ -8,4 +8,4 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -wasm-bindgen = "0.2.75" +wasm-bindgen = "0.2.76" diff --git a/examples/weather_report/Cargo.toml b/examples/weather_report/Cargo.toml index 170ce1079..73536ee89 100644 --- a/examples/weather_report/Cargo.toml +++ b/examples/weather_report/Cargo.toml @@ -15,7 +15,7 @@ chrono = "0.4.11" reqwest = "0.10.6" wasm-bindgen-futures = "0.4.1" json= "*" -wasm-bindgen = "0.2.75" +wasm-bindgen = "0.2.76" gloo = "0.2.1" [dependencies.web-sys] diff --git a/examples/webaudio/Cargo.toml b/examples/webaudio/Cargo.toml index 92a6d583c..0c802782c 100644 --- a/examples/webaudio/Cargo.toml +++ b/examples/webaudio/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -wasm-bindgen = "0.2.75" +wasm-bindgen = "0.2.76" [dependencies.web-sys] version = "0.3.4" diff --git a/examples/webgl/Cargo.toml b/examples/webgl/Cargo.toml index 636178d97..b0cb45a87 100644 --- a/examples/webgl/Cargo.toml +++ b/examples/webgl/Cargo.toml @@ -8,8 +8,8 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -js-sys = "0.3.52" -wasm-bindgen = "0.2.75" +js-sys = "0.3.53" +wasm-bindgen = "0.2.76" [dependencies.web-sys] version = "0.3.4" diff --git a/examples/webrtc_datachannel/Cargo.toml b/examples/webrtc_datachannel/Cargo.toml index 9bb3ccdf8..16bb70242 100644 --- a/examples/webrtc_datachannel/Cargo.toml +++ b/examples/webrtc_datachannel/Cargo.toml @@ -8,9 +8,9 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -wasm-bindgen = "0.2.75" +wasm-bindgen = "0.2.76" js-sys = "0.3" -wasm-bindgen-futures = "0.4.25" +wasm-bindgen-futures = "0.4.26" [dependencies.web-sys] version = "0.3.22" diff --git a/examples/websockets/Cargo.toml b/examples/websockets/Cargo.toml index 34179abe2..c48a24127 100644 --- a/examples/websockets/Cargo.toml +++ b/examples/websockets/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -wasm-bindgen = "0.2.75" +wasm-bindgen = "0.2.76" js-sys = "0.3" [dependencies.web-sys] diff --git a/examples/webxr/Cargo.toml b/examples/webxr/Cargo.toml index 590e26422..ff00b3d01 100644 --- a/examples/webxr/Cargo.toml +++ b/examples/webxr/Cargo.toml @@ -9,9 +9,9 @@ crate-type = ["cdylib"] [dependencies] futures = "0.3.4" -js-sys = "0.3.52" -wasm-bindgen = {version = "0.2.75", features = ["serde-serialize"]} -wasm-bindgen-futures = "0.4.25" +js-sys = "0.3.53" +wasm-bindgen = {version = "0.2.76", features = ["serde-serialize"]} +wasm-bindgen-futures = "0.4.26" serde = { version = "1.0.80", features = ["derive"] } serde_derive = "^1.0.59" diff --git a/examples/without-a-bundler/Cargo.toml b/examples/without-a-bundler/Cargo.toml index ea2dcdcec..45aae71bd 100644 --- a/examples/without-a-bundler/Cargo.toml +++ b/examples/without-a-bundler/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -wasm-bindgen = "0.2.75" +wasm-bindgen = "0.2.76" [dependencies.web-sys] version = "0.3.4"