tzdata 0.1.0

Timezone library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# tzdata-rs
Timezone library for the Rust programming language

The library provides basic support for timezone conversion.

```rust
let now = now_utc();
for tzname in &["Europe/Paris", "America/New_York", "Asia/Seoul"] {
    let tz = Timezone::new(tzname).unwrap();
    let now = tz.localize(now);
    println!("now is {} in {}", now.rfc3339(), tz.name);
}
```