style: Migrate to stable-only rustfmt configuration

- Remove nightly-only features from .rustfmt.toml and vendor/ss58-registry/rustfmt.toml
- Removed features: imports_granularity, wrap_comments, comment_width,
  reorder_impl_items, spaces_around_ranges, binop_separator,
  match_arm_blocks, trailing_semicolon, trailing_comma
- Format all 898 affected files with stable rustfmt
- Ensures long-term reliability without nightly toolchain dependency
This commit is contained in:
2025-12-22 17:12:58 +03:00
parent 65b7f5e640
commit 4c8f281051
898 changed files with 8671 additions and 6432 deletions
@@ -76,8 +76,8 @@ fn main() {
let a = FixedI64::saturating_from_rational(2, 5);
let b = a.saturating_mul_acc_int(x);
let xx = FixedI64::saturating_from_integer(x);
let d = a.saturating_mul(xx).saturating_add(xx).into_inner() as i128 /
FixedI64::accuracy() as i128;
let d = a.saturating_mul(xx).saturating_add(xx).into_inner() as i128
/ FixedI64::accuracy() as i128;
assert_eq!(b, d);
});
}
@@ -74,19 +74,21 @@ where
fn round(f: Fraction, r: Rounding) -> Fraction {
match r {
Up => f.ceil(),
NearestPrefUp =>
NearestPrefUp => {
if f.fract() < Fraction::from(0.5) {
f.floor()
} else {
f.ceil()
},
}
},
Down => f.floor(),
NearestPrefDown =>
NearestPrefDown => {
if f.fract() > Fraction::from(0.5) {
f.ceil()
} else {
f.floor()
},
}
},
}
}
@@ -74,19 +74,21 @@ where
fn round(f: Fraction, r: Rounding) -> Fraction {
match r {
Up => f.ceil(),
NearestPrefUp =>
NearestPrefUp => {
if f.fract() < Fraction::from(0.5) {
f.floor()
} else {
f.ceil()
},
}
},
Down => f.floor(),
NearestPrefDown =>
NearestPrefDown => {
if f.fract() > Fraction::from(0.5) {
f.ceil()
} else {
f.floor()
},
}
},
}
}
@@ -273,9 +273,9 @@ impl BigUint {
let mut k = 0;
for i in 0..m {
// PROOF: (B1) × (B1) + (B1) + (B1) = B^2 1 < B^2. addition is safe.
let t = mul_single(self.get(j), other.get(i)) +
Double::from(w.get(i + j)) +
Double::from(k);
let t = mul_single(self.get(j), other.get(i))
+ Double::from(w.get(i + j))
+ Double::from(k);
w.set(i + j, (t % B) as Single);
// PROOF: (B^2 - 1) / B < B. conversion is safe.
k = (t / B) as Single;
@@ -490,10 +490,12 @@ impl Rounding {
match (rounding, negative) {
(Low, true) | (Major, _) | (High, false) => Up,
(High, true) | (Minor, _) | (Low, false) => Down,
(NearestPrefMajor, _) | (NearestPrefHigh, false) | (NearestPrefLow, true) =>
NearestPrefUp,
(NearestPrefMinor, _) | (NearestPrefLow, false) | (NearestPrefHigh, true) =>
NearestPrefDown,
(NearestPrefMajor, _) | (NearestPrefHigh, false) | (NearestPrefLow, true) => {
NearestPrefUp
},
(NearestPrefMinor, _) | (NearestPrefLow, false) | (NearestPrefHigh, true) => {
NearestPrefDown
},
}
}
}