mxlink 1.14.0

A library for connecting (linking) to the Matrix Client Server API (for building bots, etc.)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod invitation;
mod login;
mod message;
mod persistence;
pub(crate) mod session;
mod thread;

pub use invitation::Decision as InvitationDecision;
pub use login::{
    Config as LoginConfig, Credentials as LoginCredentials, Encryption as LoginEncryption,
};
pub use message::ResponseType as MessageResponseType;
pub use persistence::Config as PersistenceConfig;
pub use thread::Info as ThreadInfo;