From f733fbba65964e57303525f3dcf5e86181c27f94 Mon Sep 17 00:00:00 2001 From: quexeky Date: Wed, 24 Sep 2025 14:39:22 +1000 Subject: [PATCH] chore: Make the rest of clippy happy Signed-off-by: quexeky --- src-tauri/src/games/downloads/download_agent.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src-tauri/src/games/downloads/download_agent.rs b/src-tauri/src/games/downloads/download_agent.rs index 4f77892..8d3710a 100644 --- a/src-tauri/src/games/downloads/download_agent.rs +++ b/src-tauri/src/games/downloads/download_agent.rs @@ -30,8 +30,7 @@ use std::path::{Path, PathBuf}; use std::sync::mpsc::Sender; use std::sync::{Arc, Mutex}; use std::time::Instant; -use tauri::{App, AppHandle, Emitter}; -use uuid::timestamp::context; +use tauri::{AppHandle, Emitter}; #[cfg(target_os = "linux")] use rustix::fs::{FallocateFlags, fallocate};