1#![cfg_attr(not(any(test, doc)), no_std)]
7#![cfg_attr(
8 not(test),
9 deny(
10 clippy::indexing_slicing,
11 clippy::unwrap_used,
12 clippy::expect_used,
13 clippy::panic,
14 clippy::exhaustive_structs,
15 clippy::exhaustive_enums,
16 clippy::trivially_copy_pass_by_ref,
17 missing_debug_implementations,
18 )
19)]
20#![warn(missing_docs)]
21
22#[cfg(feature = "alloc")]
28extern crate alloc;
29
30pub mod provider;
31pub mod scaffold;
32
33#[cfg(feature = "ixdtf")]
34mod ixdtf;
35#[cfg(feature = "ixdtf")]
36pub use ixdtf::ParseError;
37
38pub mod zone;
39#[doc(no_inline)]
40pub use zone::{TimeZone, TimeZoneInfo};
41
42mod types;
43pub use types::{DateTime, Hour, Minute, Nanosecond, Second, Time, ZonedDateTime};