From time to time, people may want to override their default toolchain profile when installing a new one.
For example, I may set my toolchain profile default as minimal so that auto-installed toolchains from rust-toolchain files are as small as possible; but then I might want to explicitly install a toolchain as complete. Currently this would involve setting the profile, installing the toolchain, and then resetting the profile to whatever it was before.
It'd be nicer if I could do rustup toolchain install --profile complete 1.37.0 or similar.
From time to time, people may want to override their default toolchain profile when installing a new one.
For example, I may set my toolchain profile default as
minimalso that auto-installed toolchains fromrust-toolchainfiles are as small as possible; but then I might want to explicitly install a toolchain ascomplete. Currently this would involve setting the profile, installing the toolchain, and then resetting the profile to whatever it was before.It'd be nicer if I could do
rustup toolchain install --profile complete 1.37.0or similar.