//! mailer-core: Email model, validation, and RFC 5322 primitives. /// Re-export mailparse for MIME parsing. pub use mailparse; /// Placeholder for email address validation and data types. pub fn version() -> &'static str { env!("CARGO_PKG_VERSION") } #[cfg(test)] mod tests { use super::*; #[test] fn test_version() { assert!(!version().is_empty()); } }