1#[cfg(feature = "timezones")] 2use chrono_tz::TZ_VARIANTS; 3 4#[cfg(feature = "timezones")] 5pub fn known_timezones() -> [&'static str; TZ_VARIANTS.len()] { 6 core::array::from_fn(|i| TZ_VARIANTS[i].name()) 7}