73 releases

0.7.2 Sep 15, 2024
0.6.1 Dec 30, 2023
0.5.7 May 11, 2023
0.5.6 Mar 24, 2023
0.2.1 Mar 27, 2022

#59 in Date and time

Download history 22240/week @ 2024-07-02 23685/week @ 2024-07-09 21903/week @ 2024-07-16 27419/week @ 2024-07-23 31483/week @ 2024-07-30 29252/week @ 2024-08-06 29990/week @ 2024-08-13 40147/week @ 2024-08-20 39455/week @ 2024-08-27 40255/week @ 2024-09-03 38046/week @ 2024-09-10 36709/week @ 2024-09-17 40410/week @ 2024-09-24 40662/week @ 2024-10-01 43354/week @ 2024-10-08 45729/week @ 2024-10-15

176,358 downloads per month
Used in 67 crates (8 directly)

Apache-2.0

2MB
39K SLoC

tzdb — Time Zone Database

GitHub Workflow Status Crates.io docs.rs Minimum supported Rust version License: Apache-2.0

Static time zone information for tz-rs.

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

Usage examples

let time_zone = tzdb::local_tz()?;       // tz::TimeZoneRef<'_>
let current_time = tzdb::now::local()?;  // tz::DateTime

// access by identifier
let time_zone = tzdb::time_zone::europe::KYIV;
let current_time = tzdb::now::in_tz(tzdb::time_zone::europe::KYIV)?;

// access by name
let time_zone = tzdb::tz_by_name("Europe/Berlin")?;
let current_time = tzdb::now::in_named("Europe/Berlin")?;

// names are case insensitive
let time_zone = tzdb::tz_by_name("ArCtIc/LongYeArByEn")?;
let current_time = tzdb::now::in_named("ArCtIc/LoNgYeArByEn")?;

// provide a default time zone
let current_time = tzdb::now::local_or(tzdb::time_zone::GMT)?;
let current_time = tzdb::now::in_named_or(tzdb::time_zone::GMT, "Some/City")?;

Feature flags

  • local (enabled by default) — enable functions to query the current system time
  • now (enabled by default) — enable functions to query the current system time
  • std (enabled by default, now and local) — enable the use of features in the std crate
  • alloc (enabled by std) — enable the use of features in the alloc crate

Dependencies

~0.2–5MB
~10K SLoC