matrix_sdk/
lib.rs

1// Copyright 2020 Damir Jelić
2// Copyright 2020 The Matrix.org Foundation C.I.C.
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8//     http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15
16#![doc = include_str!("../README.md")]
17#![warn(missing_debug_implementations, missing_docs)]
18#![cfg_attr(target_arch = "wasm32", allow(clippy::arc_with_non_send_sync))]
19#![cfg_attr(docsrs, feature(doc_auto_cfg))]
20
21pub use async_trait::async_trait;
22pub use bytes;
23#[cfg(feature = "e2e-encryption")]
24pub use matrix_sdk_base::crypto;
25pub use matrix_sdk_base::{
26    deserialized_responses,
27    store::{self, DynStateStore, MemoryStore, StateStoreExt},
28    ComposerDraft, ComposerDraftType, EncryptionState, QueueWedgeError, Room as BaseRoom,
29    RoomCreateWithCreatorEventContent, RoomDisplayName, RoomHero, RoomInfo,
30    RoomMember as BaseRoomMember, RoomMemberships, RoomState, SessionMeta, StateChanges,
31    StateStore, StoreError,
32};
33pub use matrix_sdk_common::*;
34pub use reqwest;
35
36mod account;
37pub mod attachment;
38pub mod authentication;
39mod client;
40pub mod config;
41mod deduplicating_handler;
42#[cfg(feature = "e2e-encryption")]
43pub mod encryption;
44mod error;
45pub mod event_cache;
46pub mod event_handler;
47mod http_client;
48pub mod media;
49pub mod notification_settings;
50pub mod pusher;
51pub mod room;
52pub mod room_directory_search;
53pub mod room_preview;
54pub mod send_queue;
55pub mod utils;
56pub mod futures {
57    //! Named futures returned from methods on types in [the crate root][crate].
58
59    pub use super::client::futures::SendRequest;
60}
61pub mod sliding_sync;
62pub mod sync;
63#[cfg(feature = "experimental-widgets")]
64pub mod widget;
65
66pub use account::Account;
67pub use authentication::{AuthApi, AuthSession, SessionTokens};
68pub use client::{
69    sanitize_server_name, Client, ClientBuildError, ClientBuilder, LoopCtrl, SessionChange,
70};
71pub use error::{
72    Error, HttpError, HttpResult, NotificationSettingsError, RefreshTokenError, Result,
73    RumaApiError,
74};
75pub use http_client::TransmissionProgress;
76#[cfg(all(feature = "e2e-encryption", feature = "sqlite"))]
77pub use matrix_sdk_sqlite::SqliteCryptoStore;
78#[cfg(feature = "sqlite")]
79pub use matrix_sdk_sqlite::{SqliteEventCacheStore, SqliteStateStore};
80pub use media::Media;
81pub use pusher::Pusher;
82pub use room::Room;
83pub use ruma::{IdParseError, OwnedServerName, ServerName};
84pub use sliding_sync::{
85    SlidingSync, SlidingSyncBuilder, SlidingSyncList, SlidingSyncListBuilder,
86    SlidingSyncListLoadingState, SlidingSyncMode, SlidingSyncRoom, UpdateSummary,
87};
88
89#[cfg(feature = "uniffi")]
90uniffi::setup_scaffolding!();
91
92pub mod live_location_share;
93#[cfg(any(test, feature = "testing"))]
94pub mod test_utils;
95
96#[cfg(test)]
97matrix_sdk_test::init_tracing_for_tests!();