Skip to main content

ruma_identity_service_api/
lib.rs

1#![doc(html_favicon_url = "https://ruma.dev/favicon.ico")]
2#![doc(html_logo_url = "https://ruma.dev/images/logo.png")]
3//! (De)serializable types for the [Matrix Identity Service API][identity-api].
4//! These types can be shared by client and identity service code.
5//!
6//! [identity-api]: https://spec.matrix.org/latest/identity-service-api/
7
8#![warn(missing_docs)]
9
10pub mod association;
11pub mod authentication;
12pub mod discovery;
13pub mod invitation;
14pub mod keys;
15pub mod lookup;
16pub mod tos;
17
18ruma_common::priv_owned_str!();