fix(scanner): drop the unused Digest import

Same one-line change as rustfs/rustfs#7366 (main is red with it under -D warnings); carried here so the stacked PRs' merge commits compile until that fix lands.
This commit is contained in:
唐小鸭
2026-09-07 16:37:34 +08:00
parent 46a387dffe
commit 6448fa54c4
@@ -15,7 +15,7 @@
use super::*;
#[cfg(test)]
use rustfs_filemeta::MetadataResolutionParams;
use sha2::{Digest as _, Sha256};
use sha2::Sha256;
/// Cached folder information for scanning
#[derive(Clone, Debug)]