Skip to main content

max / goingson

436 B · 19 lines History Blame Raw
1 //! JMAP (JSON Meta Application Protocol) client for email operations.
2 //!
3 //! Implements JMAP Core (RFC 8620) and JMAP Mail (RFC 8621) for providers
4 //! that support it, primarily Fastmail.
5 //!
6 //! See:
7 //! - https://jmap.io/spec.html
8 //! - https://www.fastmail.com/developer/
9
10 pub mod client;
11 pub mod email;
12 pub mod mailbox;
13 pub mod session;
14 pub mod types;
15
16 pub use client::JmapClient;
17 pub use session::JmapSession;
18 pub use types::*;
19