1 2 3 4 5 6 7 8 9 10
#[cfg(feature = "caldav")] pub mod caldav; #[cfg(feature = "carddav")] pub mod carddav; #[cfg(feature = "imap")] pub mod imap; #[cfg(feature = "jmap")] pub mod jmap; #[cfg(feature = "smtp")] pub mod smtp;