chore: update Rust toolchain from 1.90.0 to 1.93.0#581
Conversation
Update rust-toolchain.toml to use Rust 1.93.0 (latest stable). Benefits: - Newer rustfmt with improved formatting - Additional clippy lints for better code quality - Compiler bug fixes and performance improvements - Access to newer language features Verified: cargo fmt, cargo clippy, and cargo test (107 passed) all clean.
|
Warning Rate limit exceeded
⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. WalkthroughThe Rust toolchain version is updated from 1.90.0 to 1.93.0 in the project configuration file. This change affects the default Rust compiler version used for building and testing the project. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Replace is_some() + unwrap() pattern with if-let for dev_fee_payment_hash. This lint is now deny-by-default in Rust 1.93.0 via -D warnings.
Summary
Update
rust-toolchain.tomlfrom Rust 1.90.0 to 1.93.0 (latest stable).Verification
All three checks pass cleanly on 1.93.0:
cargo fmt --all -- --check— no formatting differencescargo clippy --all-targets --all-features— only 1 pre-existing warning inscheduler.rs(not introduced by this change)cargo test— 107 passed, 0 failedBenefits
rustfmtwith improved formatting rulesclippylints for better code qualityNote
This is a toolchain-only change (1 line in
rust-toolchain.toml). No source code modifications.Summary by CodeRabbit