rust-latest 1.4.2

A CLI tool to determine the latest version of the Rust toolchain.
1
2
3
4
5
6
fn main() {
    println!(
        "cargo:rustc-env=TARGET={}",
        std::env::var("TARGET").unwrap()
    );
}