1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
//! This library contains various useful abstractions used for construct of reactive and
//! non-blocking asynchronous apps with high cpu-time utilisation. He contains few modules. Each
//! module have it's own reach documentation. See concrete module for more info.

extern crate failure;
#[macro_use] extern crate log;

#[macro_use] pub mod common;
#[macro_use] pub mod actors;
#[macro_use] pub mod testkit;
pub mod executors;
//pub mod exps;
pub mod futures;
pub mod examples;