//! JMAP (JSON Meta Application Protocol) client for email operations. //! //! Implements JMAP Core (RFC 8620) and JMAP Mail (RFC 8621) for providers //! that support it, primarily Fastmail. //! //! See: //! - https://jmap.io/spec.html //! - https://www.fastmail.com/developer/ pub mod client; pub mod email; pub mod mailbox; pub mod session; pub mod types; pub use client::JmapClient; pub use session::JmapSession; pub use types::*;