1#![doc(html_favicon_url = "https://ruma.dev/favicon.ico")]
2#![doc(html_logo_url = "https://ruma.dev/images/logo.png")]
3//! Common types for the Ruma crates.
45#![recursion_limit = "1024"]
6#![warn(missing_docs)]
7// https://github.com/rust-lang/rust-clippy/issues/9029
8#![allow(clippy::derive_partial_eq_without_eq)]
9#![cfg_attr(docsrs, feature(doc_auto_cfg))]
1011#[cfg(not(all(feature = "client", feature = "server")))]
12compile_error!(
13"ruma_common's `client` and `server` Cargo features only exist as a workaround are not meant to be disabled"
14);
1516// Hack to allow both ruma-common itself and external crates (or tests) to use procedural macros
17// that expect `ruma_common` to exist in the prelude.
18extern crate self as ruma_common;
1920#[cfg(feature = "api")]
21pub mod api;
22pub mod authentication;
23#[cfg(feature = "canonical-json")]
24pub mod canonical_json;
25pub mod directory;
26pub mod encryption;
27pub mod http_headers;
28mod identifiers;
29pub mod media;
30mod percent_encode;
31pub mod power_levels;
32pub mod presence;
33pub mod push;
34pub mod room;
35pub mod room_version_rules;
36pub mod serde;
37pub mod space;
38pub mod third_party_invite;
39pub mod thirdparty;
40mod time;
41pub mod to_device;
4243use std::fmt;
4445#[cfg(feature = "canonical-json")]
46pub use self::canonical_json::{CanonicalJsonError, CanonicalJsonObject, CanonicalJsonValue};
47pub use self::{
48 identifiers::*,
49 time::{MilliSecondsSinceUnixEpoch, SecondsSinceUnixEpoch},
50};
5152// Wrapper around `Box<str>` that cannot be used in a meaningful way outside of
53// this crate. Used for string enums because their `_Custom` variant can't be
54// truly private (only `#[doc(hidden)]`).
55#[doc(hidden)]
56#[derive(Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
57pub struct PrivOwnedStr(Box<str>);
5859impl fmt::Debug for PrivOwnedStr {
60fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
61self.0.fmt(f)
62 }
63}
6465/// Re-exports used by macro-generated code.
66///
67/// It is not considered part of this module's public API.
68#[doc(hidden)]
69pub mod exports {
70#[cfg(feature = "api")]
71pub use bytes;
72#[cfg(feature = "api")]
73pub use http;
74pub use ruma_macros;
75pub use serde;
76pub use serde_html_form;
77pub use serde_json;
78}