From 4e7abed1f9049d95f0928245053c3c20cafda47d Mon Sep 17 00:00:00 2001 From: Nils Pukropp Date: Mon, 23 Feb 2026 18:12:01 +0100 Subject: [PATCH] fix: remove unused rayon import and resolve compilation error --- src-tauri/src/main.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index 48dbd6d..9b667da 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -3,7 +3,7 @@ windows_subsystem = "windows" )] -use sysinfo::{System, Pid}; +use sysinfo::System; use std::sync::Mutex; use std::process::Command; use tauri::State; @@ -14,7 +14,6 @@ use std::fs; use clap::Parser; use std::path::PathBuf; use std::time::Duration; -use rayon::prelude::*; // --- CLI ---