tzdb — Time Zone Database

GitHub Workflow Status Crates.io Minimum supported Rust version: 1.55 License: Apache-2.0

Static time zone information for tz-rs.

See the documentation for a full list the the contained time zones: https://docs.rs/tzdb/latest/0.3/time_zone/index.html

Usage examples

```rust use tz::{DateTime, TimeZone}; use tzdb::{timezone, tzby_name};

// access by identifier DateTime::now(timezone::europe::KYIV); // access by name DateTime::now(tzbyname("Europe/Berlin").unwrap()); // names are case insensitive DateTime::now(tzby_name("ArCtIc/LongYeArByEn").unwrap()); ```

Feature flags