build: bump MSRV to 1.85.0 (#9390)

This commit is contained in:
Shailesh
2025-09-16 12:20:37 +05:30
committed by GitHub
parent 655b374fec
commit 1d8290cec1
16 changed files with 85 additions and 111 deletions

View File

@ -115,7 +115,7 @@ where
let limit_satisfies = |len: usize, limit: i64| {
TryInto::try_into(limit)
.ok()
.map_or(true, |val: usize| len >= val)
.is_none_or(|val: usize| len >= val)
};
let redis_output = redis_fut.await;