rustversion-detect 0.2.0

Detect rustc compiler version
Documentation
1
2
3
4
pub fn main() {
    let version = rustversion_detect::detect_version().unwrap();
    println!("version: {}", version);
}