..
2024-10-11 18:43:02 +03:00
2024-10-11 18:43:02 +03:00
2024-10-11 18:43:02 +03:00
2024-10-11 18:43:02 +03:00
2024-10-11 18:43:02 +03:00

tzdb_data — Time Zone Database

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

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

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();