r18-proc-macros 0.5.0

r18 procedure macros
Documentation
1
2
3
4
5
6
7
8
fn main() {
    if std::env::var("RUSTUP_TOOLCHAIN")
        .map(|t| t.starts_with("nightly"))
        .unwrap_or(false)
    {
        println!("cargo:rustc-cfg=feature=\"nightly-features\"");
    }
}