chrono/src/lib.rs

17 lines
298 B
Rust
Raw Normal View History

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)]
extern crate num;
2014-03-28 11:38:11 +00:00
pub mod duration;
2014-03-28 11:38:11 +00:00
pub mod date;
pub mod time;
pub mod datetime;