kompact 0.11.3

Kompact is a Rust implementation of the Kompics component model combined with the Actor model.
Documentation
1
2
3
4
5
6
7
8
9
use rustc_version::{version_meta, Channel};

fn main() {
    println!("cargo::rustc-check-cfg=cfg(nightly)");
    let version_meta = version_meta().unwrap();
    if version_meta.channel == Channel::Nightly {
        println!("cargo::rustc-cfg=nightly");
    }
}