This website requires JavaScript.
Explore
Help
Register
Sign in
TudbuT
/
helix-mods
Watch
1
Star
0
Fork
You've already forked helix-mods
0
Code
Issues
Pull requests
Projects
Releases
Packages
Wiki
Activity
Actions
1
ddc0ea751c
helix-mods
/
.github
/
workflows
/
msrv-rust-toolchain.toml
4 lines
68 B
TOML
Raw
Normal View
History
Unescape
Escape
check MSRV in CI It's very easy to use new rust features without realizing it since the CI and local development workflows may use the latest rust version. We try to keep some backwards compatibility with rust versions to make packaging easier for some OS-level package-managers like Void Linux's. See #1881. This change runs the "Check" step for the pinned version of rust in the rust-toolchain.toml file as well as the MSRV version in a matrix. In order to bump the MSRV, we need to edit .github/workflows/msrv-rust-toolchain.toml This commit sets the MSRV as 1.60.0 but a later child commit will reduce the MSRV back to 1.57.0. Closes #2482.
2022-05-22 04:27:08 +02:00
[
toolchain
]
lower MSRV to 1.57.0 This line uses the Display trait for io::ErrorKind which was stabilized in Rust 1.60.0. We can set MSRV all the way back to 1.57.0 by replacing it with a pretty-print. Closes #2460.
2022-05-23 02:13:10 +02:00
channel
=
"1.57.0"
check MSRV in CI It's very easy to use new rust features without realizing it since the CI and local development workflows may use the latest rust version. We try to keep some backwards compatibility with rust versions to make packaging easier for some OS-level package-managers like Void Linux's. See #1881. This change runs the "Check" step for the pinned version of rust in the rust-toolchain.toml file as well as the MSRV version in a matrix. In order to bump the MSRV, we need to edit .github/workflows/msrv-rust-toolchain.toml This commit sets the MSRV as 1.60.0 but a later child commit will reduce the MSRV back to 1.57.0. Closes #2482.
2022-05-22 04:27:08 +02:00
components
=
[
"rustfmt"
,
"rust-src"
]
Reference in a new issue
Copy permalink