From e2af52e7577a05158d808cff0ba7604fdc3afd48 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 14 Oct 2023 13:02:07 +0000 Subject: [PATCH] fix(deps): update rust crate raw-window-handle to 0.6 --- Cargo.lock | 22 ++++++++++++++-------- crates/runtime/wgpu/Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4ad4b87ef..34769bb25 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2095,7 +2095,7 @@ dependencies = [ "arboard", "egui", "log", - "raw-window-handle", + "raw-window-handle 0.5.2", "smithay-clipboard", "web-time", "webbrowser", @@ -5718,7 +5718,7 @@ dependencies = [ "mizer-module", "parking_lot", "profiling", - "raw-window-handle", + "raw-window-handle 0.6.0", "tracing", "uuid 1.4.1", "weak-table", @@ -5968,7 +5968,7 @@ dependencies = [ "jni-sys", "ndk-sys", "num_enum 0.5.11", - "raw-window-handle", + "raw-window-handle 0.5.2", "thiserror", ] @@ -7172,6 +7172,12 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9" +[[package]] +name = "raw-window-handle" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42a9830a0e1b9fb145ebb365b8bc4ccd75f290f98c0247deafbbe2c75cefb544" + [[package]] name = "rayon" version = "1.8.0" @@ -9635,7 +9641,7 @@ dependencies = [ "log", "ndk-context", "objc", - "raw-window-handle", + "raw-window-handle 0.5.2", "url", "web-sys", ] @@ -9665,7 +9671,7 @@ dependencies = [ "naga", "parking_lot", "profiling", - "raw-window-handle", + "raw-window-handle 0.5.2", "serde", "smallvec", "static_assertions", @@ -9691,7 +9697,7 @@ dependencies = [ "naga", "parking_lot", "profiling", - "raw-window-handle", + "raw-window-handle 0.5.2", "ron", "rustc-hash", "serde", @@ -9732,7 +9738,7 @@ dependencies = [ "parking_lot", "profiling", "range-alloc", - "raw-window-handle", + "raw-window-handle 0.5.2", "renderdoc-sys", "rustc-hash", "smallvec", @@ -10155,7 +10161,7 @@ dependencies = [ "once_cell", "orbclient", "percent-encoding", - "raw-window-handle", + "raw-window-handle 0.5.2", "redox_syscall 0.3.5", "sctk-adwaita", "smithay-client-toolkit", diff --git a/crates/runtime/wgpu/Cargo.toml b/crates/runtime/wgpu/Cargo.toml index 572ea036b..e6771f87d 100644 --- a/crates/runtime/wgpu/Cargo.toml +++ b/crates/runtime/wgpu/Cargo.toml @@ -9,7 +9,7 @@ wgpu = { version = "0.17", features = ["trace"] } anyhow = "1" winit = "0.28" bytemuck = { version = "1.14", features = ["derive"] } -raw-window-handle = "0.5" +raw-window-handle = "0.6" log = "0.4" tracing = "0.1" uuid = { version = "1.4", features = ["v4"] }