From 419c0524a271824a1fb912c7112cc28938589f5c Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Mon, 4 Dec 2023 13:00:07 -0500 Subject: [PATCH] fix: set web-sys to =0.3.64 --- Cargo.toml | 2 +- examples/integration/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0f758bc110..9a2656bfb6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -166,7 +166,7 @@ unicode-segmentation = "1.0" wasm-bindgen-futures = "0.4" wasm-timer = "0.2" wayland-protocols = { version = "0.31.0", features = [ "staging"]} -web-sys = "0.3" +web-sys = "=0.3.64" wgpu = "0.18" winapi = "0.3" window_clipboard = "0.3" diff --git a/examples/integration/Cargo.toml b/examples/integration/Cargo.toml index a4a961f885..77aae20aa9 100644 --- a/examples/integration/Cargo.toml +++ b/examples/integration/Cargo.toml @@ -20,4 +20,4 @@ iced_wgpu.features = ["webgl"] console_error_panic_hook = "0.1" console_log = "1.0" wasm-bindgen = "0.2" -web-sys = { version = "0.3", features = ["Element", "HtmlCanvasElement", "Window", "Document"] } +web-sys = { version = "=0.3.64", features = ["Element", "HtmlCanvasElement", "Window", "Document"] }