time-event 0.0.1

DO NOT USE THIS CRATE! NO TESTED! timed event loop; this crate is created for learning rust
Documentation
#![allow(dead_code)]

mod atomic_waker;
mod delay;
mod error;
mod global;
mod heap;
mod timer;

#[macro_use]
extern crate lazy_static;

pub use crate::global::GLOBAL;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}