1 2 3 4 5 6 7 8 9 10 11 12 13
//! Drumbeat is: //! * a real-time focused, observer pattern based, multithreaded event system. //! * a real-time focused synchronization library implementing thread workers, //! thread pools and a multithreaded runtime. #![feature(negative_impls)] #![feature(async_closure)] #[macro_use] extern crate lazy_static; pub mod event; pub mod sync; pub mod utils;