This is something I've gotten in the habit of doing in my Rust projects, to help lock the development environment to a specific Rust version.
As an added bonus, We can drop the CI steps that setup the preferred Rust version, as the built-in cargo executable in the actions runners should automatically download and use the specified rust version.
This is something I've gotten in the habit of doing in my Rust projects, to help lock the development environment to a specific Rust version.
As an added bonus, We can drop the CI steps that setup the preferred Rust version, as the built-in
cargoexecutable in the actions runners should automatically download and use the specified rust version.