fix: Re-add futures dependency to resolve CI/CD build failure
Some checks failed
Comprehensive CI/CD Pipeline / Build and Test (push) Successful in 7m55s
Comprehensive CI/CD Pipeline / Security Audit (push) Failing after 7s
Comprehensive CI/CD Pipeline / Package Validation (push) Successful in 2m0s
Comprehensive CI/CD Pipeline / Status Report (push) Has been skipped

- 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.
This commit is contained in:
robojerk 2025-08-19 11:03:04 -07:00
parent 566f85beda
commit 6c7b930016

View file

@ -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"