diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 702ab5c8c7..9cfc2dd6b7 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -3870,6 +3870,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.1" @@ -4037,7 +4043,7 @@ dependencies = [ "objc", "objc-foundation", "objc_id", - "raw-window-handle", + "raw-window-handle 0.5.2", "wasm-bindgen", "wasm-bindgen-futures", "web-sys", @@ -4921,7 +4927,7 @@ dependencies = [ "once_cell", "parking_lot", "png", - "raw-window-handle", + "raw-window-handle 0.5.2", "scopeguard", "serde", "tao-macros", @@ -4992,7 +4998,7 @@ dependencies = [ "percent-encoding", "png", "rand 0.8.5", - "raw-window-handle", + "raw-window-handle 0.5.2", "regex", "reqwest", "rfd", @@ -5090,7 +5096,7 @@ dependencies = [ "http", "http-range", "rand 0.8.5", - "raw-window-handle", + "raw-window-handle 0.5.2", "serde", "serde_json", "tauri-utils", @@ -5111,7 +5117,7 @@ dependencies = [ "gtk", "percent-encoding", "rand 0.8.5", - "raw-window-handle", + "raw-window-handle 0.5.2", "tauri-runtime", "tauri-utils", "uuid", @@ -6102,19 +6108,19 @@ checksum = "67ff424735b1ac21293b0492b069394b0a189c8a463fb015a16dea7c2e221c08" dependencies = [ "cocoa 0.25.0", "objc", - "raw-window-handle", + "raw-window-handle 0.5.2", "windows-sys 0.48.0", ] [[package]] name = "window-vibrancy" -version = "0.4.3" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af6abc2b9c56bd95887825a1ce56cde49a2a97c07e28db465d541f5098a2656c" +checksum = "33082acd404763b315866e14a0d5193f3422c81086657583937a750cdd3ec340" dependencies = [ "cocoa 0.25.0", "objc", - "raw-window-handle", + "raw-window-handle 0.6.0", "windows-sys 0.52.0", "windows-version", ] diff --git a/backend/tauri/Cargo.toml b/backend/tauri/Cargo.toml index 0bc1ee7046..abc5b82360 100644 --- a/backend/tauri/Cargo.toml +++ b/backend/tauri/Cargo.toml @@ -49,7 +49,7 @@ tauri = { version = "1.5.4", features = [ "system-tray", "window-all", ] } -window-vibrancy = { version = "0.4.3" } +window-vibrancy = { version = "0.5.0" } window-shadows = { version = "0.2.2" } wry = { version = "0.24.6" } semver = "1.0"