We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62c3680 commit 3894cb1Copy full SHA for 3894cb1
Cargo.toml
@@ -58,12 +58,9 @@ hirofa_utils = "0.7"
58
#hirofa_utils = {git = "https://github.com/HiRoFa/utils"}
59
#hirofa_utils = { path = '../utils'}
60
61
-libc = "0.2"
62
lazy_static = "1.4.0"
63
log = "0.4.8"
64
simple-logging = "2.0.2"
65
-rand = "0.8"
66
-num_cpus = "1.0"
67
backtrace = "0.3.56"
68
url = "2.2.1"
69
gpp = "0.6"
src/modules/util/cache/mod.rs
@@ -164,11 +164,11 @@ fn cache_cleanup() {
164
}
165
166
167
- for (key, cache_to_clean) in to_clean {
+ for (_key, cache_to_clean) in to_clean {
168
let cache_lock = &mut *cache_to_clean.lock("cache_cleanup").unwrap();
169
170
cache_lock.invalidate_stale();
171
-
+
172
173
174
0 commit comments