//! A [TOML]-compatible datetime type
//!
//! [TOML]: https://github.com/toml-lang/toml
// Makes rustc abort compilation if there are any unsafe blocks in the crate.
// Presence of this annotation is picked up by tools such as cargo-geiger
// and lets them ensure that there is indeed no unsafe code as opposed to
// something they couldn't detect (e.g. unsafe added via macro expansion, etc).
pub use crateDate;
pub use crateDatetime;
pub use crateDatetimeParseError;
pub use crateOffset;
pub use crateTime;