tzdb_data 0.2.4

Static, #![no_std] time zone information for tz-rs
Documentation
// GENERATED FILE
// ALL CHANGES MADE IN THIS FOLDER WILL BE LOST!

// SPDX-License-Identifier: MIT-0 OR MIT OR Apache-2.0
// SPDX-FileCopyrightText: 2022-2026 René Kijewski <crates.io@k6i.de>

#![allow(unknown_lints)]
#![allow(clippy::pedantic)]

#[cfg(all(test, not(miri)))]
mod test_all_names;

pub(crate) mod by_name;
mod raw_tzdata;
mod tz_names;
mod tzdata;

/// All defined time zones statically accessible
pub mod time_zone;

/// The version of the source Time Zone Database
pub const VERSION: &str = "2026a";

/// The SHA512 hash of the source Time Zone Database (using the "Complete Distribution")
pub const VERSION_HASH: &str = "1824fc2e198a449ebaa41e6c679a494c486b848f13fe8f18f948fde0533e99f5f01e7e7298e257c565838d24ec743e824f402887abdf525d1ce578a714c71414";

#[allow(unreachable_pub)] // false positive
pub use self::tz_names::TZ_NAMES;