From a0707e6113189e4eca43b08a12ba50241e4db82e Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Sat, 13 Jun 2026 19:59:05 -0400 Subject: [PATCH] fix(desktop): enable tauri tray-icon feature tauri::tray is gated behind the 'tray-icon' Cargo feature; the tray code failed to compile without it (E0432). Also enable image-png for tray icon decoding. Co-Authored-By: Claude Fable 5 --- src-tauri/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 50febe3..ecaa65f 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -17,7 +17,7 @@ tauri-build = { version = "2", features = [] } [dependencies] serde_json = "1.0.109" serde = { version = "1.0.193", features = ["derive"] } -tauri = { version = "2", features = ["devtools", "wry"] } +tauri = { version = "2", features = ["devtools", "wry", "tray-icon", "image-png"] } tauri-plugin-localhost = "2" tauri-plugin-window-state = "2" tauri-plugin-clipboard-manager = "2"