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
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:
parent
566f85beda
commit
6c7b930016
1 changed files with 1 additions and 0 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue