remove unused lifetime parameter from utils::calculate_hash

This doesn't trigger a warning before rustc 1.58.0, for whatever reason.
This commit is contained in:
Olivia Lee 2025-07-19 15:48:54 -07:00 committed by Charles Hall
parent d2ee80db94
commit e65815c82e

View file

@ -112,7 +112,7 @@ where
}
#[tracing::instrument(skip(keys))]
pub(crate) fn calculate_hash<'a, I, T>(keys: I) -> Vec<u8>
pub(crate) fn calculate_hash<I, T>(keys: I) -> Vec<u8>
where
I: IntoIterator<Item = T>,
T: AsRef<[u8]>,