tzdb_data/generated/mod.rs
1// GENERATED FILE
2// ALL CHANGES MADE IN THIS FOLDER WILL BE LOST!
3
4// MIT No Attribution
5//
6// Copyright 2022-2024 René Kijewski <crates.io@k6i.de>
7//
8// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
9// associated documentation files (the "Software"), to deal in the Software without restriction,
10// including without limitation the rights to use, copy, modify, merge, publish, distribute,
11// sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
12// furnished to do so.
13//
14// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
15// NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
17// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19
20#![allow(unknown_lints)]
21#![allow(clippy::pedantic)]
22
23#[cfg(all(test, not(miri)))]
24mod test_all_names;
25
26pub(crate) mod by_name;
27mod raw_tzdata;
28mod tz_names;
29mod tzdata;
30
31/// All defined time zones statically accessible
32pub mod time_zone;
33
34/// The version of the source Time Zone Database
35pub const VERSION: &str = "2025a";
36
37/// The SHA512 hash of the source Time Zone Database (using the "Complete Distribution")
38pub const VERSION_HASH: &str = "1e8c4e141158d63ca5c39babc9d18c32df14e2e59bc7649a7fed8c3e577f7b175bafa43883cf351139ff198515f5f8c22b1418e2ac7efb7f837faa8f61d2574d";
39
40#[allow(unreachable_pub)] // false positive
41pub use self::tz_names::TZ_NAMES;