-
Notifications
You must be signed in to change notification settings - Fork 225
There should be a way to tell the exact compiler version. #184
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
Comments
fn main() {
println!("{:?}", std::process::Command::new("rustc").arg("-vV").output());
} |
@shepmaster thanks. Still inconvenient 😝 |
Yep. Do you have a vision of how this information would be presented? I'd like to also eventually show the available crates and their versions, so this type of metadata might want a bit of a home. |
Massive props for the thorough mockup! Also, I'm glad you included the clippy / rustfmt versions — I had completely forgotten about them. I like the idea of having a link to the crate - were you thinking that would go to the crates.io page or somewhere else?
I'm very hesitant to add more buttons to the current header. They are already so many that a reasonable-sized window cuts them off. Simply wrapping doesn't really help because then the main reason you are on the page (the editor and output fields) get even less space. I've got some back-of-mind ideas that I'm mulling about. Maybe other people will chime in with some ideas. |
I prefer docs.rs |
#219 introduces a bare-bones solution: |
Expose
rustc -vV
, which can tell you Stable is1.19.0
, Beta is1.20.0-beta.1
, Nightly is1.20.0-nightly (ae98ebfcb 2017-07-20)
.Currently these can only be retrieved by triggering an ICE, which is very inconvenient.
The text was updated successfully, but these errors were encountered: