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.
|
|
|
|
|
2014-07-19 17:51:57 +00:00
|
|
|
```rust
|
|
|
|
// find out if the doomsday rule is correct!
|
2014-07-29 07:14:46 +00:00
|
|
|
use chrono::{Weekday, NaiveDate, naive};
|
2014-07-19 17:51:57 +00:00
|
|
|
use std::iter::range_inclusive;
|
|
|
|
|
2014-07-29 07:14:46 +00:00
|
|
|
for y in range_inclusive(naive::date::MIN.year(), naive::date::MAX.year()) {
|
2014-07-19 17:51:57 +00:00
|
|
|
// even months
|
2014-07-29 06:55:40 +00:00
|
|
|
let d4 = NaiveDate::from_ymd(y, 4, 4);
|
|
|
|
let d6 = NaiveDate::from_ymd(y, 6, 6);
|
|
|
|
let d8 = NaiveDate::from_ymd(y, 8, 8);
|
|
|
|
let d10 = NaiveDate::from_ymd(y, 10, 10);
|
|
|
|
let d12 = NaiveDate::from_ymd(y, 12, 12);
|
2014-07-19 17:51:57 +00:00
|
|
|
|
|
|
|
// nine to five, seven-eleven
|
2014-07-29 06:55:40 +00:00
|
|
|
let d59 = NaiveDate::from_ymd(y, 5, 9);
|
|
|
|
let d95 = NaiveDate::from_ymd(y, 9, 5);
|
|
|
|
let d711 = NaiveDate::from_ymd(y, 7, 11);
|
|
|
|
let d117 = NaiveDate::from_ymd(y, 11, 7);
|
2014-07-19 17:51:57 +00:00
|
|
|
|
|
|
|
// "March 0"
|
2014-07-29 06:55:40 +00:00
|
|
|
let d30 = NaiveDate::from_ymd(y, 3, 1).pred();
|
2014-07-19 17:51:57 +00:00
|
|
|
|
|
|
|
let weekday = d30.weekday();
|
|
|
|
let other_dates = [d4, d6, d8, d10, d12, d59, d95, d711, d117];
|
|
|
|
assert!(other_dates.iter().all(|d| d.weekday() == weekday));
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2014-04-01 17:14:57 +00:00
|
|
|
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
|
|
|
|
|