From 9b0d40c7a9330c7d36de2eb0c1fb4cf462cab86d Mon Sep 17 00:00:00 2001 From: "Micah T. Keller" Date: Wed, 19 Jan 2022 13:59:31 -0700 Subject: [PATCH] Version bump (#2772) * Version bump * 0.2.79 Version Bump * 2022-01-19 Change Log --- CHANGELOG.md | 7 +++++++ 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 | 2 +- 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, 106 insertions(+), 99 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b3bdf806c7..aa362a64dcf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,11 @@ # `wasm-bindgen` Change Log +-------------------------------------------------------------------------------- + +## 0.2.79 + +Released 2022-01-19. + +[changes](https://github.com/rustwasm/wasm-bindgen/compare/0.2.78...0.2.79) -------------------------------------------------------------------------------- diff --git a/Cargo.toml b/Cargo.toml index 519f64ea81f..cd48d154a23 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-bindgen" -version = "0.2.78" +version = "0.2.79" 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.78" } +wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.79" } 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.55' } -wasm-bindgen-test = { path = 'crates/test', version = '=0.3.28' } -wasm-bindgen-futures = { path = 'crates/futures', version = '=0.4.28' } +js-sys = { path = 'crates/js-sys', version = '0.3.56' } +wasm-bindgen-test = { path = 'crates/test', version = '=0.3.29' } +wasm-bindgen-futures = { path = 'crates/futures', version = '=0.4.29' } 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 14d65c51cbb..f1af7aeee94 100644 --- a/crates/backend/Cargo.toml +++ b/crates/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-bindgen-backend" -version = "0.2.78" +version = "0.2.79" 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.78" } +wasm-bindgen-shared = { path = "../shared", version = "=0.2.79" } diff --git a/crates/cli-support/Cargo.toml b/crates/cli-support/Cargo.toml index 11d5757c5a3..a16432bc025 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.78" +version = "0.2.79" 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.78' } -wasm-bindgen-multi-value-xform = { path = '../multi-value-xform', version = '=0.2.78' } -wasm-bindgen-shared = { path = "../shared", version = '=0.2.78' } -wasm-bindgen-threads-xform = { path = '../threads-xform', version = '=0.2.78' } -wasm-bindgen-wasm-conventions = { path = '../wasm-conventions', version = '=0.2.78' } -wasm-bindgen-wasm-interpreter = { path = "../wasm-interpreter", version = '=0.2.78' } +wasm-bindgen-externref-xform = { path = '../externref-xform', version = '=0.2.79' } +wasm-bindgen-multi-value-xform = { path = '../multi-value-xform', version = '=0.2.79' } +wasm-bindgen-shared = { path = "../shared", version = '=0.2.79' } +wasm-bindgen-threads-xform = { path = '../threads-xform', version = '=0.2.79' } +wasm-bindgen-wasm-conventions = { path = '../wasm-conventions', version = '=0.2.79' } +wasm-bindgen-wasm-interpreter = { path = "../wasm-interpreter", version = '=0.2.79' } 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 7b23717d796..ff8f3fdf16a 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-bindgen-cli" -version = "0.2.78" +version = "0.2.79" 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.78" } -wasm-bindgen-shared = { path = "../shared", version = "=0.2.78" } +wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.79" } +wasm-bindgen-shared = { path = "../shared", version = "=0.2.79" } [dev-dependencies] assert_cmd = "1.0" diff --git a/crates/externref-xform/Cargo.toml b/crates/externref-xform/Cargo.toml index fd67ada3194..40bd994d7e9 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.78" +version = "0.2.79" 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 6d6536caa55..f1c9c71688e 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.28" +version = "0.4.29" edition = "2018" [dependencies] cfg-if = "1.0.0" -js-sys = { path = "../js-sys", version = '0.3.55' } -wasm-bindgen = { path = "../..", version = '0.2.78' } +js-sys = { path = "../js-sys", version = '0.3.56' } +wasm-bindgen = { path = "../..", version = '0.2.79' } 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.28' } +wasm-bindgen-test = { path = '../test', version = '0.3.29' } 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 e365b34404d..b5f13c93a1c 100644 --- a/crates/js-sys/Cargo.toml +++ b/crates/js-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "js-sys" -version = "0.3.55" +version = "0.3.56" 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.78" } +wasm-bindgen = { path = "../..", version = "0.2.79" } [target.'cfg(target_arch = "wasm32")'.dev-dependencies] -wasm-bindgen-test = { path = '../test', version = '=0.3.28' } -wasm-bindgen-futures = { path = '../futures', version = '0.4.28' } +wasm-bindgen-test = { path = '../test', version = '=0.3.29' } +wasm-bindgen-futures = { path = '../futures', version = '0.4.29' } diff --git a/crates/macro-support/Cargo.toml b/crates/macro-support/Cargo.toml index 1df604db0a4..7ceab09383e 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.78" +version = "0.2.79" 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.78" } -wasm-bindgen-shared = { path = "../shared", version = "=0.2.78" } +wasm-bindgen-backend = { path = "../backend", version = "=0.2.79" } +wasm-bindgen-shared = { path = "../shared", version = "=0.2.79" } diff --git a/crates/macro/Cargo.toml b/crates/macro/Cargo.toml index 7bac44aad0a..02a4664ad6c 100644 --- a/crates/macro/Cargo.toml +++ b/crates/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-bindgen-macro" -version = "0.2.78" +version = "0.2.79" 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.78" } +wasm-bindgen-macro-support = { path = "../macro-support", version = "=0.2.79" } quote = "1.0" [dev-dependencies] trybuild = "1.0" -wasm-bindgen = { path = "../..", version = "0.2.78", features = ['strict-macro'] } -wasm-bindgen-futures = { path = "../futures", version = "0.4.28" } +wasm-bindgen = { path = "../..", version = "0.2.79", features = ['strict-macro'] } +wasm-bindgen-futures = { path = "../futures", version = "0.4.29" } diff --git a/crates/multi-value-xform/Cargo.toml b/crates/multi-value-xform/Cargo.toml index 375054ca0f4..a125cb0abf9 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.78" +version = "0.2.79" 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 33ad5873235..a28be91b8e3 100644 --- a/crates/shared/Cargo.toml +++ b/crates/shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-bindgen-shared" -version = "0.2.78" +version = "0.2.79" 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 ef22ea97b34..a5b88d3ef8c 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.28" +version = "0.3.29" 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 994d9b7c4e6..ef93a276e38 100644 --- a/crates/test/Cargo.toml +++ b/crates/test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-bindgen-test" -version = "0.3.28" +version = "0.3.29" 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.55' } +js-sys = { path = '../js-sys', version = '0.3.56' } scoped-tls = "1.0" -wasm-bindgen = { path = '../..', version = '0.2.78' } -wasm-bindgen-futures = { path = '../futures', version = '0.4.28' } -wasm-bindgen-test-macro = { path = '../test-macro', version = '=0.3.28' } +wasm-bindgen = { path = '../..', version = '0.2.79' } +wasm-bindgen-futures = { path = '../futures', version = '0.4.29' } +wasm-bindgen-test-macro = { path = '../test-macro', version = '=0.3.29' } [lib] test = false diff --git a/crates/threads-xform/Cargo.toml b/crates/threads-xform/Cargo.toml index afb8089d9e3..7e304811679 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.78" +version = "0.2.79" 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.78" } +wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.79" } diff --git a/crates/wasm-conventions/Cargo.toml b/crates/wasm-conventions/Cargo.toml index 51f2095aa70..0f5d01c162b 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.78" +version = "0.2.79" 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 84c9dfeee6a..11016bfbb85 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.78" +version = "0.2.79" 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.78" } +wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "0.2.79" } [dev-dependencies] tempfile = "3" diff --git a/crates/web-sys/Cargo.toml b/crates/web-sys/Cargo.toml index 3227959f585..9df42c0f76f 100644 --- a/crates/web-sys/Cargo.toml +++ b/crates/web-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "web-sys" -version = "0.3.55" +version = "0.3.56" 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.78" } -js-sys = { path = '../js-sys', version = '0.3.55' } +wasm-bindgen = { path = "../..", version = "0.2.79" } +js-sys = { path = '../js-sys', version = '0.3.56' } [target.'cfg(target_arch = "wasm32")'.dev-dependencies] -wasm-bindgen-test = { path = '../test', version = '0.3.28' } -wasm-bindgen-futures = { path = '../futures', version = '0.4.28' } +wasm-bindgen-test = { path = '../test', version = '0.3.29' } +wasm-bindgen-futures = { path = '../futures', version = '0.4.29' } # 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 fcf13b40bcc..af52ec9be16 100644 --- a/crates/webidl/Cargo.toml +++ b/crates/webidl/Cargo.toml @@ -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.78", path = "../backend" } +wasm-bindgen-backend = { version = "=0.2.79", 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 ca7eac73a81..aaf4f402656 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.78" +wasm-bindgen = "0.2.79" diff --git a/examples/canvas/Cargo.toml b/examples/canvas/Cargo.toml index 8f8f50818c7..d929b2f2031 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.55" -wasm-bindgen = "0.2.78" +js-sys = "0.3.56" +wasm-bindgen = "0.2.79" [dependencies.web-sys] version = "0.3.4" diff --git a/examples/char/Cargo.toml b/examples/char/Cargo.toml index 829f1e8a778..959eae851b9 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.78" +wasm-bindgen = "0.2.79" diff --git a/examples/closures/Cargo.toml b/examples/closures/Cargo.toml index 9bf60704171..f1c306effac 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.78" -js-sys = "0.3.55" +wasm-bindgen = "0.2.79" +js-sys = "0.3.56" [dependencies.web-sys] version = "0.3.4" diff --git a/examples/console_log/Cargo.toml b/examples/console_log/Cargo.toml index dfd5af0f8f3..661fce7e730 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.78" -web-sys = { version = "0.3.55", features = ['console'] } +wasm-bindgen = "0.2.79" +web-sys = { version = "0.3.56", features = ['console'] } diff --git a/examples/deno/Cargo.toml b/examples/deno/Cargo.toml index fdb90638ba6..5fd363a0aea 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.78" +wasm-bindgen = "0.2.79" diff --git a/examples/dom/Cargo.toml b/examples/dom/Cargo.toml index 7b27598c776..73afb618db8 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.78" +wasm-bindgen = "0.2.79" [dependencies.web-sys] version = "0.3.4" diff --git a/examples/duck-typed-interfaces/Cargo.toml b/examples/duck-typed-interfaces/Cargo.toml index 5a0b91fe1d8..8a05df4a3f3 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.78" +wasm-bindgen = "0.2.79" diff --git a/examples/fetch/Cargo.toml b/examples/fetch/Cargo.toml index c9290c4e2b4..70de3e10720 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.78", features = ["serde-serialize"] } -js-sys = "0.3.55" -wasm-bindgen-futures = "0.4.28" +wasm-bindgen = { version = "0.2.79", features = ["serde-serialize"] } +js-sys = "0.3.56" +wasm-bindgen-futures = "0.4.29" 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 a11caa1980f..755822783c9 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.78" -js-sys = "0.3.55" +wasm-bindgen = "0.2.79" +js-sys = "0.3.56" diff --git a/examples/hello_world/Cargo.toml b/examples/hello_world/Cargo.toml index fe5b3431c9a..4822b78d7f5 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.78" +wasm-bindgen = "0.2.79" diff --git a/examples/import_js/crate/Cargo.toml b/examples/import_js/crate/Cargo.toml index c2a4cc10ee3..93766e84d57 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.78" +wasm-bindgen = "0.2.79" diff --git a/examples/julia_set/Cargo.toml b/examples/julia_set/Cargo.toml index 2261e7b4b8b..08dc833b7a7 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.78" +wasm-bindgen = "0.2.79" [dependencies.web-sys] version = "0.3.4" diff --git a/examples/paint/Cargo.toml b/examples/paint/Cargo.toml index a8706df03e6..1e4079f498b 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.55" -wasm-bindgen = "0.2.78" +js-sys = "0.3.56" +wasm-bindgen = "0.2.79" [dependencies.web-sys] version = "0.3.4" diff --git a/examples/performance/Cargo.toml b/examples/performance/Cargo.toml index 00944341225..cf0e86a8703 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.78" +wasm-bindgen = "0.2.79" humantime = "2" [dependencies.web-sys] diff --git a/examples/raytrace-parallel/Cargo.toml b/examples/raytrace-parallel/Cargo.toml index f04c5371882..39528fe18bf 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.55" +js-sys = "0.3.56" 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.78", features = ['serde-serialize'] } -wasm-bindgen-futures = "0.4.28" +wasm-bindgen = { version = "0.2.79", features = ['serde-serialize'] } +wasm-bindgen-futures = "0.4.29" [dependencies.web-sys] version = "0.3.23" diff --git a/examples/request-animation-frame/Cargo.toml b/examples/request-animation-frame/Cargo.toml index 784faac0bb9..8f66d97d5f3 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.78" +wasm-bindgen = "0.2.79" [dependencies.web-sys] version = "0.3.4" diff --git a/examples/todomvc/Cargo.toml b/examples/todomvc/Cargo.toml index a63e950d6b3..698ee6d018e 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.55" -wasm-bindgen = "0.2.78" +js-sys = "0.3.56" +wasm-bindgen = "0.2.79" 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 a4cdee998af..8b2f6841a4f 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.78" -js-sys = "0.3.55" -wasm-bindgen-futures = "0.4.28" +wasm-bindgen = "0.2.79" +js-sys = "0.3.56" +wasm-bindgen-futures = "0.4.29" diff --git a/examples/wasm-in-wasm/Cargo.toml b/examples/wasm-in-wasm/Cargo.toml index 8eab09bbf73..0bf677efc9e 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.78" -js-sys = "0.3.55" -wasm-bindgen-futures = "0.4.28" +wasm-bindgen = "0.2.79" +js-sys = "0.3.56" +wasm-bindgen-futures = "0.4.29" diff --git a/examples/wasm-in-web-worker/Cargo.toml b/examples/wasm-in-web-worker/Cargo.toml index f3f4e130adf..a32731d5735 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.78" +wasm-bindgen = "0.2.79" 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 db3f8effb81..da79b271521 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.78" +wasm-bindgen = "0.2.79" diff --git a/examples/weather_report/Cargo.toml b/examples/weather_report/Cargo.toml index f7568574cbd..f1bb9f1a6d6 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.78" +wasm-bindgen = "0.2.79" gloo = "0.2.1" [dependencies.web-sys] diff --git a/examples/webaudio/Cargo.toml b/examples/webaudio/Cargo.toml index 67f9c1ce8c2..06243ded454 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.78" +wasm-bindgen = "0.2.79" [dependencies.web-sys] version = "0.3.4" diff --git a/examples/webgl/Cargo.toml b/examples/webgl/Cargo.toml index b77d4739e26..6c7b2e5df2d 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.55" -wasm-bindgen = "0.2.78" +js-sys = "0.3.56" +wasm-bindgen = "0.2.79" [dependencies.web-sys] version = "0.3.4" diff --git a/examples/webrtc_datachannel/Cargo.toml b/examples/webrtc_datachannel/Cargo.toml index 710b79e6f3b..7e0031e61b8 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.78" +wasm-bindgen = "0.2.79" js-sys = "0.3" -wasm-bindgen-futures = "0.4.28" +wasm-bindgen-futures = "0.4.29" [dependencies.web-sys] version = "0.3.22" diff --git a/examples/websockets/Cargo.toml b/examples/websockets/Cargo.toml index ad6fb8e813e..e25f478ba06 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.78" +wasm-bindgen = "0.2.79" js-sys = "0.3" [dependencies.web-sys] diff --git a/examples/webxr/Cargo.toml b/examples/webxr/Cargo.toml index cb9eaa3c545..8d8ef1c8b72 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.55" -wasm-bindgen = {version = "0.2.78", features = ["serde-serialize"]} -wasm-bindgen-futures = "0.4.28" +js-sys = "0.3.56" +wasm-bindgen = {version = "0.2.79", features = ["serde-serialize"]} +wasm-bindgen-futures = "0.4.29" 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 af7df8f20f4..54ec8bf8500 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.78" +wasm-bindgen = "0.2.79" [dependencies.web-sys] version = "0.3.4"