Now we have rust toolchain version specified in the rust-toolchain.toml file and in the CARGO_MAKE_TOOLCHAIN env var in ci.yml, which is not ideal. We should set the version only once in rust-toolchain.toml file.
Notes
The newer rust-toolchain.toml format is not supported by actions-rs GA. It only supports the old rust-toolchain format. Plus, the action-rs is not maintained anymore see. So we need to migrate to something else.
Motivation
Now we have rust toolchain version specified in the
rust-toolchain.toml
file and in theCARGO_MAKE_TOOLCHAIN
env var inci.yml
, which is not ideal. We should set the version only once inrust-toolchain.toml
file.Notes
The newer
rust-toolchain.toml
format is not supported byactions-rs
GA. It only supports the oldrust-toolchain
format. Plus, theaction-rs
is not maintained anymore see. So we need to migrate to something else.