From 5ac624463db0a210e78cc2ad964d9d9764539024 Mon Sep 17 00:00:00 2001 From: Marat Zimnurov Date: Sat, 5 Jul 2025 14:45:08 +0300 Subject: [PATCH] fix(system_stats): add missing regex lib --- crates/eww/src/config/system_stats.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/eww/src/config/system_stats.rs b/crates/eww/src/config/system_stats.rs index 787b3dee..5b07aad2 100644 --- a/crates/eww/src/config/system_stats.rs +++ b/crates/eww/src/config/system_stats.rs @@ -1,4 +1,5 @@ use crate::util::IterAverage; +use crate::regex; use anyhow::{Context, Result}; use once_cell::sync::Lazy; use std::{fs::read_to_string, sync::Mutex};