1 2 3 4 5 6 7 8 9
//! RFC 6764 SRV-based CalDAV/CardDAV service discovery. #[cfg(feature = "cli")] pub mod cli; #[cfg(feature = "client")] pub mod client; pub mod discover; pub mod srv; pub mod types;