2014-04-01 17:14:57 +00:00
|
|
|
// This is a part of rust-chrono.
|
|
|
|
// Copyright (c) 2014, Kang Seonghoon.
|
|
|
|
// See README.md and LICENSE.txt for details.
|
|
|
|
|
|
|
|
#![comment = "Date and time library for Rust"]
|
|
|
|
#![license = "MIT"]
|
2014-03-28 11:38:11 +00:00
|
|
|
|
2014-07-15 03:53:40 +00:00
|
|
|
#![feature(macro_rules)]
|
2014-03-31 05:33:47 +00:00
|
|
|
|
|
|
|
extern crate num;
|
2014-03-28 11:38:11 +00:00
|
|
|
|
2014-03-29 08:20:39 +00:00
|
|
|
pub mod duration;
|
2014-03-28 11:38:11 +00:00
|
|
|
pub mod date;
|
|
|
|
pub mod time;
|
|
|
|
pub mod datetime;
|
|
|
|
|