#![doc(html_favicon_url = "https://ruma.dev/favicon.ico")]
#![doc(html_logo_url = "https://ruma.dev/images/logo.png")]
#![recursion_limit = "1024"]
#![warn(missing_docs)]
#![allow(clippy::derive_partial_eq_without_eq)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#[cfg(not(all(feature = "client", feature = "server")))]
compile_error!(
"ruma_common's `client` and `server` Cargo features only exist as a workaround are not meant to be disabled"
);
extern crate self as ruma_common;
#[cfg(feature = "api")]
pub mod api;
pub mod authentication;
pub mod canonical_json;
pub mod directory;
pub mod encryption;
#[cfg(feature = "api")]
pub mod http_headers;
mod identifiers;
pub mod media;
mod percent_encode;
pub mod power_levels;
pub mod presence;
mod priv_owned_str;
pub mod profile;
pub mod push;
pub mod room;
pub mod room_version_rules;
pub mod serde;
pub mod third_party_invite;
pub mod thirdparty;
mod time;
pub mod to_device;
pub use self::{
canonical_json::{CanonicalJsonError, CanonicalJsonObject, CanonicalJsonValue},
identifiers::*,
time::{MilliSecondsSinceUnixEpoch, SecondsSinceUnixEpoch},
};
priv_owned_str!();
#[doc(hidden)]
pub mod exports {
#[cfg(feature = "api")]
pub use bytes;
#[cfg(feature = "api")]
pub use http;
pub use ruma_macros;
pub use serde;
pub use serde_html_form;
pub use serde_json;
}