jiff/tz/db/bundled/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
pub(crate) use self::inner::*;

#[cfg(not(any(
    feature = "tzdb-bundle-always",
    all(
        feature = "tzdb-bundle-platform",
        any(windows, target_family = "wasm"),
    ),
)))]
#[path = "disabled.rs"]
mod inner;
#[cfg(any(
    feature = "tzdb-bundle-always",
    all(
        feature = "tzdb-bundle-platform",
        any(windows, target_family = "wasm"),
    ),
))]
#[path = "enabled.rs"]
mod inner;