chore(deps): update s3s and Rust MSRV (#6990)

* chore(deps): update s3s and Rust MSRV

* fix: silence startup IAM test hook warning
This commit is contained in:
houseme
2026-09-01 15:35:08 +08:00
committed by GitHub
parent 35ce8cdb80
commit a41134eb8a
4 changed files with 12 additions and 11 deletions
+1 -1
View File
@@ -87,7 +87,7 @@ impl SelectInputMetricsRecorder {
fn saturating_add(counter: &AtomicU64, bytes: usize) {
let increment = u64::try_from(bytes).unwrap_or(u64::MAX);
let _ = counter.fetch_update(Ordering::Relaxed, Ordering::Relaxed, |current| Some(current.saturating_add(increment)));
let _ = counter.try_update(Ordering::Relaxed, Ordering::Relaxed, |current| Some(current.saturating_add(increment)));
}
#[cfg(test)]