chore: align remaining Rust pins at 1.96#96
Merged
Merged
Conversation
ci.yml still installed 1.93 (only the release workflows were bumped) and flake.nix pinned 1.93.0 — align both with the 1.96 bump so nix, CI and release builds use the same toolchain. The locked rust-overlay snapshot ships 1.96.0. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Closed
Contributor
There was a problem hiding this comment.
Pull request overview
Aligns the remaining Rust toolchain pins so CI and Nix-based development/builds use Rust 1.96, matching the already-updated release workflows and Dockerfile.dev.
Changes:
- Bump the Nix flake Rust toolchain from 1.93.0 to 1.96.0 via
rust-overlay. - Update all
dtolnay/rust-toolchaininstalls inci.ymlfrom@1.93to@1.96.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| flake.nix | Updates the flake’s pinned Rust toolchain to 1.96.0 for consistent Nix builds/devshell. |
| .github/workflows/ci.yml | Updates CI Rust toolchain installs to 1.96 across fmt/clippy/test/build jobs. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
#93 bumped the release workflows and
Dockerfile.devto Rust 1.96, butci.ymlstill installs 1.93 and the nix flake pins 1.93.0. Align both so CI, release builds and nix builds all use the same toolchain.The locked rust-overlay snapshot ships 1.96.0, so the flake pin resolves without a
flake.lockupdate. Verified locally on 1.96.1:cargo fmt --check,cargo clippy --all-targets --all-features -- -D warningsandcargo test --all-featuresall green.🤖 Generated with Claude Code