1 2 3 4 5 6 7 8 9 10 11 12 13 14
#[cfg(any(feature = "with-datetime", feature = "with-datetime64"))] #[macro_use] extern crate pest_derive; #[cfg(feature = "with-date")] pub mod date; #[cfg(feature = "with-datetime")] pub mod datetime; #[cfg(feature = "with-datetime64")] pub mod datetime64; #[cfg(any(feature = "with-datetime", feature = "with-datetime64"))] // 2105-12-31 23:59:59 pub(crate) const MAX_DATETIME_UNIX_TIMESTAMP: u64 = 4291718399;