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

@@ -1,7 +1,6 @@
use parking_lot::RwLock;
use serde::{Deserialize, Serialize};
use std::{sync::Arc, time::Instant};
use tokio::time::Duration;
use tokio::{sync::RwLock, time::Duration};
use crate::{
ipc::monitor::{IpcStreamMonitor, MonitorData, StreamingParser},