1//! The time library provides the function of processing time. 2 3mod datetime; 4#[allow(dead_code)] 5mod duration; 6mod timezone; 7 8pub use datetime::DateTime; 9pub use timezone::TimeZone;