Crate tzdb_data

Source
Expand description

§tzdb_data — Time Zone Database

GitHub Workflow Status Crates.io docs.rs Minimum supported Rust version License: MIT-0

Static, #![no_std] time zone information for tz-rs

This crate provides all time zones found in the Time Zone Database.

§Usage examples

// access by identifier
let time_zone = tzdb_data::time_zone::europe::KYIV;
// access by name
let time_zone = tzdb_data::find_tz(b"Europe/Berlin").unwrap();
// names are case insensitive
let time_zone = tzdb_data::find_tz(b"ArCtIc/LoNgYeArByEn").unwrap();

Modules§

time_zone
All defined time zones statically accessible

Constants§

TZ_NAMES
A list of all known time zones
VERSION
The version of the source Time Zone Database
VERSION_HASH
The SHA512 hash of the source Time Zone Database (using the “Complete Distribution”)

Functions§

find_raw
Find the raw, unparsed time zone data by name, e.g. b"Europe/Berlin" (case-insensitive)
find_tz
Find a time zone by name, e.g. b"Europe/Berlin" (case-insensitive)