From 3f039c18b16d7b9ca7efdf27c4e2e92b0f26f4f3 Mon Sep 17 00:00:00 2001 From: Amr Bashir Date: Tue, 12 Mar 2024 14:50:39 +0200 Subject: [PATCH] chore(deps): update `muda` and `tray-icon` crates (#9154) * chore(deps): update `muda` and `tray-icon` crates * lock file --- Cargo.lock | 8 ++++---- core/tauri/Cargo.toml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b70baac9d..2a8bb2626 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2022,9 +2022,9 @@ dependencies = [ [[package]] name = "muda" -version = "0.11.5" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c47e7625990fc1af2226ea4f34fb2412b03c12639fcb91868581eb3a6893453" +checksum = "3e27c56b8cb9b3214d196556227b0eaa12db8393b4f919a0a93ffb67ed17d185" dependencies = [ "cocoa", "crossbeam-channel", @@ -4130,9 +4130,9 @@ dependencies = [ [[package]] name = "tray-icon" -version = "0.11.3" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a4d9ddd4a7c0f3b6862af1c4911b529a49db4ee89310d3a258859c2f5053fdd" +checksum = "454035ff34b8430638c894e6197748578d6b4d449c6edaf8ea854d94e2dd862b" dependencies = [ "cocoa", "core-graphics", diff --git a/core/tauri/Cargo.toml b/core/tauri/Cargo.toml index c7202af4f..6637cf71e 100644 --- a/core/tauri/Cargo.toml +++ b/core/tauri/Cargo.toml @@ -75,8 +75,8 @@ heck = "0.4" log = "0.4" [target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"windows\", target_os = \"macos\"))".dependencies] -muda = { version = "0.11", default-features = false, features = [ "serde" ] } -tray-icon = { version = "0.11", default-features = false, features = [ "serde" ], optional = true } +muda = { version = "0.12", default-features = false, features = [ "serde" ] } +tray-icon = { version = "0.12", default-features = false, features = [ "serde" ], optional = true } [target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies] gtk = { version = "0.18", features = [ "v3_24" ] }