build: require Rust 1.98.1

This commit is contained in:
bfloat16
2026-09-07 21:43:15 +08:00
parent 6250ca4e98
commit 53ef36c837
9 changed files with 28 additions and 39 deletions
+1 -1
View File
@@ -396,7 +396,7 @@ impl<'a> Unpacker<'a> {
// non-critical for false-positive rejection.
if v8 < info6 {
let delta = info6.wrapping_sub(v8);
if delta <= 0x1000 && delta % 0x200 == 0 {
if delta <= 0x1000 && delta.is_multiple_of(0x200) {
anchor = Some(probe);
break;
}