Description
std::collections::hash_map::DefaultHasher in src/commands/scan.rs:181 is not deterministic across Rust compiler versions. Scan cache could be invalidated when the binary is recompiled.
Suggested Fix
Use sha2 (the performance difference is negligible for file hashing).
Description
std::collections::hash_map::DefaultHasherinsrc/commands/scan.rs:181is not deterministic across Rust compiler versions. Scan cache could be invalidated when the binary is recompiled.Suggested Fix
Use
sha2(the performance difference is negligible for file hashing).