rustversion-detect 0.3.0

Parses the output of rustc --version for use in build scripts
Documentation
1
2
3
4
pub fn main() {
    let version = rustversion_detect::detect_version().unwrap();
    println!("version: {}", version);
}