tzdb — Time Zone Database
Static time zone information for tz-rs.
This crate provides all time zones found in the Time Zone Database, currently in the version 2021e (released 2021-10-21).
See the documentation for a full list the the contained time zones: https://docs.rs/tzdb/latest/tzdb/time_zone/index.html
Usage examples
use ;
use TimeZoneExt;
// access by identifier
now;
// access by name
now;
// names are case insensitive
now;
Feature flags
by-name(enabled by default) — enables TimeZoneExt::from_db() to get a time zone at runtime by namelist(enabled by default) — enables TimeZoneExt::names_in_db() to get a list of all shipped time zoneslocal(enabled by default) — enables TimeZoneExt::local_from_db() to get the system time zoneserde-as— enables serde_as to (de)serialize (Utc)DateTimes with serde
Git Cloning
To clone / fork the Git repo you need to have git-lfs installed.