1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
//! Datetime string types. #![warn(missing_docs)] #![warn(rust_2018_idioms)] #![warn(clippy::missing_docs_in_private_items)] #![cfg_attr(not(feature = "std"), no_std)] #[cfg(feature = "alloc")] extern crate alloc; #[macro_use] mod macros; pub mod common; pub(crate) mod datetime; pub(crate) mod error; pub(crate) mod parse; pub mod rfc3339; pub(crate) mod str; pub use self::error::Error;