-
Notifications
You must be signed in to change notification settings - Fork 935
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Check for component included without installing toolchain? #1676
Comments
I'm not sure if this will help for your case, but you can check https://rust-lang-nursery.github.io/rust-toolstate/ or https://mexus.github.io/rustup-components-history/ to find when the last working build was. |
Hello, I think it would be useful to have a look at the discussion at rust-lang/rls#1221. There have been reports of users finding the current Here's an excerpt from that conversation, hope it helps:
|
This is subsumed by #1501. |
Previously, if the user had components installed on `nightly` which were not available for the latest nightly, `rustup update` would not update the user's nightly at all. With this patch, rustup will try progressively older nightlies until it finds a nightly that supports all the components the user has installed for their current nightly. Fixes rust-lang#1628. Makes progress towards rust-lang#1501. Fixes the underlying issue in rust-lang#1676.
Previously, if the user had components installed on `nightly` which were not available for the latest nightly, `rustup update` would not update the user's nightly at all. With this patch, rustup will try progressively older nightlies until it finds a nightly that supports all the components the user has installed for their current nightly. Fixes rust-lang#1628. Makes progress towards rust-lang#1501. Fixes the underlying issue in rust-lang#1676.
The underlying issue you're experiencing should be fixed by #1997 :) |
Previously, if the user had components installed on `nightly` which were not available for the latest nightly, `rustup update` would not update the user's nightly at all. With this patch, rustup will try progressively older nightlies until it finds a nightly that supports all the components the user has installed for their current nightly. Fixes rust-lang#1628. Makes progress towards rust-lang#1501. Fixes the underlying issue in rust-lang#1676.
I guess this is a feature request rather than a bug; it may already be doable but I can't find out how.
Is it possible to check for a given component being included in a given toolchain, without actually downloading the whole toolchain? E.g. I'm using 'rls', which is in some nightly builds but not all. To get the latest, I have to work backwards from today's date. Installing the whole toolchain takes significant time, after which I have to uninstall it if it wasn't the right one.
Perhaps a textual list of included components could be stored on the toolchain host alongside each build; I don't mind having to query it with wget.
The text was updated successfully, but these errors were encountered: