From b8f59a47408db298549797f23e29a021559df8d7 Mon Sep 17 00:00:00 2001 From: Jason Date: Sun, 31 Aug 2025 19:00:09 +0800 Subject: [PATCH] chore: silence non_snake_case warnings in commands.rs for legacy app/appType compatibility - Add crate-level allow(non_snake_case) in src-tauri/src/commands.rs - Keeps compatibility while avoiding compiler warnings --- src-tauri/src/commands.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src-tauri/src/commands.rs b/src-tauri/src/commands.rs index ecbab8c..67c588b 100644 --- a/src-tauri/src/commands.rs +++ b/src-tauri/src/commands.rs @@ -1,3 +1,5 @@ +#![allow(non_snake_case)] + use std::collections::HashMap; use tauri::State; use tauri_plugin_opener::OpenerExt;