Revert "refactor: replace tokio Mutex with parking_lot Mutex for improved performance"

This reverts commit 9cc6dde999.
This commit is contained in:
Tunglies
2025-08-16 04:24:03 +00:00
parent 9cc6dde999
commit b169ee8149
4 changed files with 6 additions and 6 deletions

View File

@@ -14,7 +14,6 @@ use crate::{
};
use anyhow::Result;
use chrono::Local;
use parking_lot::Mutex;
use std::{
fmt,
fs::{create_dir_all, File},
@@ -23,6 +22,7 @@ use std::{
sync::Arc,
};
use tauri_plugin_shell::{process::CommandChild, ShellExt};
use tokio::sync::Mutex;
#[derive(Debug)]
pub struct CoreManager {