From cc4d989b8209029dba2a5654ac4f67da3fc10a23 Mon Sep 17 00:00:00 2001 From: robojerk Date: Tue, 19 Aug 2025 11:03:04 -0700 Subject: [PATCH] fix: Re-add futures dependency to resolve CI/CD build failure - Add futures = "0.3" dependency back to Cargo.toml - Required for async operations in cache.rs tests - Resolves error: use of unresolved module or unlinked crate 'futures' - CI/CD pipeline should now pass successfully This dependency is actually needed for the async cache manager operations. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 0244e9f4..08b44169 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,6 +38,7 @@ tracing-appender = "0.2" # Async runtime (used for concurrent operations) tokio = { version = "1.0", features = ["full"] } +futures = "0.3" # D-Bus integration (used for daemon communication) zbus = "4.0"