From 4ef667cbfa230e783dd12ff683d5e4831795957d Mon Sep 17 00:00:00 2001 From: ScriptedAlchemy Date: Sat, 11 May 2024 04:42:12 -0700 Subject: [PATCH] chore(deps): update rust-wasm-bindgen monorepo --- rust-wasm/remote/Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/rust-wasm/remote/Cargo.toml b/rust-wasm/remote/Cargo.toml index e935ea49733..2a00d229767 100644 --- a/rust-wasm/remote/Cargo.toml +++ b/rust-wasm/remote/Cargo.toml @@ -23,7 +23,7 @@ lto = true [dependencies] # The `wasm-bindgen` crate provides the bare minimum functionality needed # to interact with JavaScript. -wasm-bindgen = "0.2.45" +wasm-bindgen = "0.2.73" # `wee_alloc` is a tiny allocator for wasm that is only ~1K in code size # compared to the default allocator's ~10K. However, it is slower than the default @@ -33,7 +33,7 @@ wee_alloc = { version = "0.4.2", optional = true } # The `web-sys` crate allows you to interact with the various browser APIs, # like the DOM. [dependencies.web-sys] -version = "0.3.22" +version = "0.3.50" features = ["console"] # The `console_error_panic_hook` crate provides better debugging of panics by @@ -45,7 +45,7 @@ console_error_panic_hook = "0.1.6" # These crates are used for running unit tests. [dev-dependencies] -wasm-bindgen-test = "0.2.45" +wasm-bindgen-test = "0.3.0" futures = "0.3.0" -js-sys = "0.3.22" -wasm-bindgen-futures = "0.3.22" +js-sys = "0.3.50" +wasm-bindgen-futures = "0.4.0"