bare-metal 0.2.5

Abstractions common to bare metal systems
Documentation
1
2
3
4
5
6
7
8
9
extern crate rustc_version;

fn main() {
    let vers = rustc_version::version().unwrap();

    if vers.major == 1 && vers.minor < 31 {
        println!("cargo:rustc-cfg=unstable_const_fn")
    }
}