may 0.3.51

Rust Stackful Coroutine Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[rustversion::nightly]
const NIGHTLY: bool = true;

#[rustversion::not(nightly)]
const NIGHTLY: bool = false;

fn main() {
    println!("cargo:rustc-check-cfg=cfg(nightly)");
    if NIGHTLY {
        println!("cargo:rustc-cfg=nightly");
    }
}