From 0ea8d6070651a562cdd1404e65a51fc1d2c21219 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 29 Nov 2024 22:34:51 +0000 Subject: [PATCH] build(deps): update wasm-bindgen requirement in /bindings/javascript Updates the requirements on [wasm-bindgen](https://github.com/rustwasm/wasm-bindgen) to permit the latest version. - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases) - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustwasm/wasm-bindgen/compare/0.2.93...0.2.96) --- updated-dependencies: - dependency-name: wasm-bindgen dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- bindings/javascript/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/javascript/Cargo.toml b/bindings/javascript/Cargo.toml index d1981de..b0ed285 100644 --- a/bindings/javascript/Cargo.toml +++ b/bindings/javascript/Cargo.toml @@ -27,7 +27,7 @@ napi-derive = "2.14.4" [target.'cfg(target_arch = "wasm32")'.dependencies] # Pinned due to a bug in the return type: https://github.com/rustwasm/wasm-bindgen/pull/4210 -wasm-bindgen = "=0.2.93" +wasm-bindgen = "=0.2.96" serde-wasm-bindgen = "0.6" getrandom = { version = "0.2", features = ["js"] } serde = { version = "1", features = ["derive"], default-features = false }