//! RFC 5545 Compliant Calendar Models //! //! This crate provides shared data structures for calendar applications //! that comply with RFC 5545 (iCalendar) specification. pub mod common; pub mod vevent; pub use common::*; pub use vevent::*;