actix-web 0.6.2

Actix web is a simple, pragmatic and extremely fast web framework for Rust.
Documentation
1
2
3
4
5
6
7
8
9
extern crate version_check;

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