7 releases
0.2.0 | Sep 15, 2024 |
---|---|
0.1.3 | Sep 7, 2024 |
0.1.2 | Feb 1, 2024 |
0.1.1 | Jan 1, 2024 |
0.1.0 | Dec 30, 2023 |
#311 in Date and time
123,974 downloads per month
Used in 69 crates
(via tzdb)
2MB
39K
SLoC
tzdb_data — Time Zone Database
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();