actix_derive 0.1.1

Actor framework for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate version_check;


fn main() {
    match version_check::is_nightly() {
        Some(true) => println!("cargo:rustc-cfg=actix_nightly"),
        Some(false) => (),
        None => (),
    };
}