jiff/tz/db/bundled/
mod.rs

1pub(crate) use self::inner::*;
2
3#[cfg(not(any(
4    feature = "tzdb-bundle-always",
5    all(
6        feature = "tzdb-bundle-platform",
7        any(windows, target_family = "wasm"),
8    ),
9)))]
10#[path = "disabled.rs"]
11mod inner;
12#[cfg(any(
13    feature = "tzdb-bundle-always",
14    all(
15        feature = "tzdb-bundle-platform",
16        any(windows, target_family = "wasm"),
17    ),
18))]
19#[path = "enabled.rs"]
20mod inner;