diff --git a/Cargo.lock b/Cargo.lock index 522b410fee9f..5b8b4803574c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2701,10 +2701,11 @@ dependencies = [ [[package]] name = "js-sys" -version = "0.3.72" +version = "0.3.74" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9" +checksum = "a865e038f7f6ed956f788f0d7d60c541fff74c7bd74272c5d4cf15c63743e705" dependencies = [ + "once_cell", "wasm-bindgen", ] @@ -5934,12 +5935,13 @@ dependencies = [ [[package]] name = "wasm-bindgen-futures" -version = "0.4.45" +version = "0.4.47" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b" +checksum = "9dfaf8f50e5f293737ee323940c7d8b08a66a95a419223d9f41610ca08b0833d" dependencies = [ "cfg-if", "js-sys", + "once_cell", "wasm-bindgen", "web-sys", ] @@ -6103,9 +6105,9 @@ checksum = "323f4da9523e9a669e1eaf9c6e763892769b1d38c623913647bfdc1532fe4549" [[package]] name = "web-sys" -version = "0.3.72" +version = "0.3.74" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6488b90108c040df0fe62fa815cbdee25124641df01814dd7282749234c6112" +checksum = "a98bc3c33f0fe7e59ad7cd041b89034fa82a7c2d4365ca538dda6cdaf513863c" dependencies = [ "js-sys", "wasm-bindgen", diff --git a/Cargo.toml b/Cargo.toml index 7ad424bec67f..8d5efd9ee595 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -63,8 +63,8 @@ enum-map = "2.7.3" flate2 = "1.0.35" futures = "0.3.31" image = { version = "0.25.5", default-features = false } -js-sys = "0.3.72" -web-sys = "0.3.72" +js-sys = "0.3.74" +web-sys = "0.3.74" log = "0.4" num-derive = "0.4.2" num-traits = "0.2.19" diff --git a/core/Cargo.toml b/core/Cargo.toml index 96dc4243feef..7312dc7903d8 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -74,7 +74,7 @@ tracy-client = { version = "0.17.5", optional = true, default-features = false } workspace = true [target.'cfg(target_family = "wasm")'.dependencies.wasm-bindgen-futures] -version = "0.4.45" +version = "0.4.47" [features] default = [] diff --git a/web/Cargo.toml b/web/Cargo.toml index 03adeeb99508..831e2287ba56 100644 --- a/web/Cargo.toml +++ b/web/Cargo.toml @@ -46,7 +46,7 @@ ruffle_render_wgpu = { path = "../render/wgpu", optional = true } ruffle_video_software = { path = "../video/software" } url = { workspace = true } wasm-bindgen = { workspace = true } -wasm-bindgen-futures = "0.4.45" +wasm-bindgen-futures = "0.4.47" serde-wasm-bindgen = "0.6.5" chrono = { workspace = true, features = ["wasmbind", "clock"] } getrandom = { version = "0.2", features = ["js"] }