1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#![feature(alloc)]
#![feature(core_intrinsics)]
#![no_std]


#[cfg(test)]
#[macro_use] 
extern crate std;
extern crate alloc;

extern crate time as timelib;
extern crate specs;
extern crate specs_bundler;
extern crate number_traits;


mod time;
mod time_bundle;
mod time_system;


pub use self::time::Time;
pub use self::time_bundle::TimeBundle;
pub use self::time_system::TimeSystem;