iana-time-zone

Crates.ioiana-time-zone
lib.rsiana-time-zone
version0.1.61
sourcesrc
created_at2020-06-27 11:01:58.126511
updated_at2024-09-16 14:23:34.921955
descriptionget the IANA time zone for the current system
homepage
repositoryhttps://github.com/strawlab/iana-time-zone
max_upload_size
id258651
size173,091
René Kijewski (Kijewski)

documentation

README

iana-time-zone - get the IANA time zone for the current system

Crates.io Documentation Crate License build

This small utility crate gets the IANA time zone for the current system. This is also known the tz database, tzdata, the zoneinfo database, and the Olson database.

Example:

// Get the current time zone as a string.
let tz_str = iana_time_zone::get_timezone()?;
println!("The current time zone is: {}", tz_str);

You can test this is working on your platform with:

cargo run --example get_timezone

Minimum supported rust version policy

This crate has a minimum supported rust version (MSRV) of 1.48 for Tier 1 platforms.

Updates to the MSRV are sometimes necessary due to the MSRV of dependencies. MSRV updates will not be indicated as a breaking change to the semver version.

License

Licensed under either of

at your option.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Commit count: 309

cargo fmt