You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When dealing with continuous like travis, I can specify a toolchain I want to have
language: rust
rust:
- beta
- nightly
but not what components (rustfmt clippy) I want to install.
This means if I want to use clippy or rustfmt, I have to manually rustup component add it or, if the current nightly version does not ship it, try to somehow install it myself and hope it builds with the current rustc nightly.
It would be great to have some kind of option "install the lastest nightly that has components x and y available" which entails potentially downgrading to a earlier nightly if the current nightly does not ship the components but the later nightly does.
Perhaps rustup install nightly --needed-components=clippy,rustfmt or something like that.
jhpratt, RalfJung, dhardy, JameeKim, simdimdim and 8 more