jiff_tzdb_platform/
lib.rs

1/*!
2A crate that embeds data from the [IANA Time Zone Database] for platforms
3without a system copy.
4
5This crate re-exports [`jiff-tzdb`]. Its only purpose in existing is as a
6target specific dependency of [Jiff]. Specifically, it allows a particular
7dependency pattern that lets Jiff depend on `jiff-tzdb` on Windows by default
8(without needing users to opt into it), while specifically *not* depending on
9it by default for Unix platforms. This configuration is desirable because
10Windows does not have a standard system copy of the Time Zone Database while
11most Unix platforms do. And indeed, it is desirable to use the system copy
12whenever possible.
13
14[IANA Time Zone Database]: https://www.iana.org/time-zones
15[`jiff-tzdb`]: https://docs.rs/jiff-tzdb
16[Jiff]: https://docs.rs/jiff
17*/
18
19#![no_std]
20
21pub extern crate jiff_tzdb;