-
Notifications
You must be signed in to change notification settings - Fork 184
build: bump workspace MSRV from 1.77 to 1.85 #970
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
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 | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -4,8 +4,9 @@ version = "0.1.0" | |||||||||
| edition = "2021" | ||||||||||
| publish = false | ||||||||||
|
|
||||||||||
| # because of `dep:serde` supported after 1.60 | ||||||||||
| rust-version = "1.60" | ||||||||||
| # Aligned with the workspace MSRV. Originally pinned at 1.60 for `dep:serde` | ||||||||||
| # syntax; raising to 1.85 keeps all three crates on one Rust version. | ||||||||||
|
Comment on lines
+7
to
+8
|
||||||||||
| # Aligned with the workspace MSRV. Originally pinned at 1.60 for `dep:serde` | |
| # syntax; raising to 1.85 keeps all three crates on one Rust version. | |
| # Aligned with the workspace-targeted Rust version. Originally pinned at | |
| # 1.60 for `dep:serde` syntax; this crate now declares Rust 1.85. |
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.
Bumping the workspace MSRV to 1.85 will likely break existing CI jobs/toolchains that are still pinned to Rust 1.77 (e.g.
stremio-core-web/rust-toolchain.tomland theRUST_VERSION: '1.77'env vars in several workflows). Those jobs buildstremio-core-web, which depends onstremio-core; Cargo will refuse to compile it with a toolchain lower thanstremio-core’srust-version. Consider updating those pins (or otherwise adjusting the CI matrix) so the whole repo builds consistently after this MSRV bump.