chore: fix cargo warnings and remove unused import

This commit is contained in:
NimBold
2026-06-15 13:41:53 +03:30
parent 503e69a499
commit 22d59e3c11
+2 -1
View File
@@ -1,3 +1,5 @@
#![allow(unexpected_cfgs)]
// Learn more about Tauri commands at https://tauri.app/develop/calling-rust/
use tauri::{Manager, Emitter};
use tokio::process::Command as AsyncCommand;
@@ -287,7 +289,6 @@ async fn show_in_folder(app: tauri::AppHandle, path: String) -> Result<(), Strin
app.opener().reveal_item_in_dir(&path).map_err(|e| format!("Failed to reveal in folder: {}", e))
}
use std::collections::HashMap;
use std::sync::atomic::{AtomicBool, Ordering};
use std::sync::{Arc, Mutex, RwLock};