actix 0.3.0

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

#[cfg(unix)]
fn main() {
    // generates doc tests for `README.md`.
    skeptic::generate_doc_tests(&["README.md"]);
}

#[cfg(not(unix))]
fn main() {
}