From 357cf5e8f3dcefc51e7343eb5904c56ae98b4091 Mon Sep 17 00:00:00 2001 From: Michael Allwright Date: Fri, 11 Oct 2024 13:42:08 +0200 Subject: [PATCH] Lock wasm-bindgen version in dev dependencies --- .github/workflows/test.yaml | 2 +- web-rpc/Cargo.toml | 13 +++++++------ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 922aaa6..0ef4552 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -17,6 +17,6 @@ jobs: - name: Install cargo-binstall uses: cargo-bins/cargo-binstall@main - name: Install wasm-bindgen - run: cargo binstall --no-confirm wasm-bindgen-cli@0.2.87 + run: cargo binstall --no-confirm wasm-bindgen-cli@0.2.89 - name: Run tests run: cargo test \ No newline at end of file diff --git a/web-rpc/Cargo.toml b/web-rpc/Cargo.toml index 3e8cba4..dbc1d77 100644 --- a/web-rpc/Cargo.toml +++ b/web-rpc/Cargo.toml @@ -19,14 +19,15 @@ futures-core = "0.3.30" futures-util = { version = "0.3.30", features = ["channel"] } gloo-events = "0.2.0" gloo-timers = { version = "0.3", features = ["futures"] } -js-sys = "0.3.64" +js-sys = "0.3.66" pin-utils = { version = "0.1.0" } serde = { version = "1.0.193", features = ["derive"] } -wasm-bindgen-futures = "0.4.37" -wasm-bindgen = "0.2.87" -web-sys = { version = "0.3.64", features = ["Worker", "DedicatedWorkerGlobalScope", "MessagePort", "EventTarget", "MessageEvent"] } +wasm-bindgen-futures = "0.4.39" +wasm-bindgen = "0.2.89" +web-sys = { version = "0.3.66", features = ["Worker", "DedicatedWorkerGlobalScope", "MessagePort", "EventTarget", "MessageEvent"] } [dev-dependencies] +wasm-bindgen = "=0.2.89" console_error_panic_hook = "0.1.7" -wasm-bindgen-test = "0.3.37" -web-sys = { version = "0.3.64", features = ["MessagePort", "MessageChannel"] } +wasm-bindgen-test = "0.3.39" +web-sys = { version = "0.3.66", features = ["MessagePort", "MessageChannel"] }