-
Notifications
You must be signed in to change notification settings - Fork 0
ci: add rust-toolchain.toml reproducible builds #122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| [toolchain] | ||
| channel = "stable" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Toolchain channel "stable" breaks version detection regexMedium Severity Setting Additional Locations (1)Reviewed by Cursor Bugbot for commit 79ff771. Configure here. |
||
| components = ["rustfmt", "clippy", "rust-src"] | ||


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The PR title mentions 'reproducible builds', but using
channel = "stable"means the toolchain will automatically update whenever a new stable version of Rust is released. To ensure true reproducibility and align with the MSRV defined infrontend/web/src-tauri/Cargo.toml(which is1.77.2), you should pin a specific version here.