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
```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()); ```
fallback
(enabled by default) — compile for unknown target platforms, too