bottle 0.1.0

Actor model framework for Rust.
#![feature(thread_local, coerce_unsized, unsize, box_into_raw_non_null, dispatch_from_dyn, allocator_api, dropck_eyepatch, bind_by_move_pattern_guards)]

#[macro_use]
extern crate crossbeam_channel;

pub mod remote;
pub mod thread;
pub mod signal;
pub mod handler;
pub mod future;
pub mod scheduler;
pub mod emit;
pub mod expose;
pub mod receiver;

pub use remote::*;
pub use thread::*;
pub use signal::*;
pub use handler::*;
pub use future::*;
pub use scheduler::*;
pub use emit::*;
pub use expose::*;
pub use receiver::*;