Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[toolchain]
channel = "stable"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unpinned channel contradicts stated reproducibility goal

Low Severity

The PR description states this "bootstraps reproducible Rust toolchain pin," but channel = "stable" is a rolling target that resolves to a different compiler version every six weeks. This doesn't actually pin or reproduce anything — builds run today and builds run next month may use different Rust versions, potentially introducing breakage. A reproducible pin would specify a concrete version like "1.85.0".

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit f74c612. Configure here.

components = ["rustfmt", "clippy"]
profile = "minimal"
Loading