Sourced from actions-rust-lang/setup-rust-toolchain's releases.
v1.5.0
What's Changed
- Check that listed components and targets are installed even with a rust-toolchain file by
@jonasbb
in actions-rust-lang/setup-rust-toolchain#19- allow disabling RUSTFLAGS config by
@JeanMertz
in actions-rust-lang/setup-rust-toolchain#18New Contributors
@JeanMertz
made their first contribution in actions-rust-lang/setup-rust-toolchain#18Full Changelog: https://github.com/actions-rust-lang/setup-rust-toolchain/compare/v1...v1.5.0
Sourced from actions-rust-lang/setup-rust-toolchain's changelog.
[1.5.0] - 2023-05-29
Added
Support installing additional components and targets that are not listed in
rust-toolchain
(#14) Before only the items listed inrust-toolchain
were installed. Now all the items from the toolchain file are installed and then all thetarget
s andcomponents
that are provided as action inputs. This allows installing extra tools only for CI or simplify testing special targets in CI.Allow skipping the creation of a
RUSTFLAGS
environment variable. Cargos logic for rustflags is complicated, and setting theRUSTFLAGS
environment variable prevents other ways of working. Provide a newrustflags
input, which controls the environment variable creation. If the value is set to the empty string, thenRUSTFLAGS
is not created.Pre-existing
RUSTFLAGS
variables are never modified by this extension.
f3c84ee
Merge pull request #18
from JeanMertz/rustflags1ef811f
Restore behavior to not touch existing RUSTFLAGS variable70241ab
fixes823a4a1
fixesaaa7eef
requred -> required24274e4
allow disabling RUSTFLAGS
configcf60eaf
Merge pull request #19
from actions-rust-lang/better-toolchain-support289d5e6
Add changelog661e2d2
Explain the new behavior in the READMEb065e5a
Install components and targets after installing everything from the
rust-tool...