2014-04-01 17:14:57 +00:00
|
|
|
Rust-chrono
|
|
|
|
===========
|
|
|
|
|
|
|
|
[![Rust-chrono on Travis CI][travis-image]][travis]
|
|
|
|
|
|
|
|
[travis-image]: https://travis-ci.org/lifthrasiir/rust-chrono.png
|
|
|
|
[travis]: https://travis-ci.org/lifthrasiir/rust-chrono
|
|
|
|
|
|
|
|
Date and time handling for Rust.
|
|
|
|
|
|
|
|
Design Goals
|
|
|
|
------------
|
|
|
|
|
|
|
|
* 1-to-1 correspondence with ISO 8601.
|
|
|
|
* Timezone-aware by default.
|
|
|
|
* Space efficient.
|
|
|
|
* Moderate lookup table size, should not exceed a few KBs.
|
2014-04-06 18:16:33 +00:00
|
|
|
* Avoid divisions as much as possible.
|
2014-04-01 17:14:57 +00:00
|
|
|
|
|
|
|
References
|
|
|
|
----------
|
|
|
|
|
|
|
|
* https://github.com/mozilla/rust/wiki/Lib-datetime
|
|
|
|
* https://github.com/luisbg/rust-datetime/wiki/Use-Cases
|
|
|
|
|