Skip to main content

matrix_sdk_ui/
lib.rs

1// Copyright 2023 The Matrix.org Foundation C.I.C.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#![cfg_attr(target_family = "wasm", allow(clippy::arc_with_non_send_sync))]
16#![cfg_attr(docsrs, feature(doc_cfg))]
17
18pub use eyeball_im;
19use ruma::html::HtmlSanitizerMode;
20
21pub mod encryption_sync_service;
22pub mod notification_client;
23pub mod room_list_service;
24#[cfg(feature = "experimental-search")]
25pub mod search_service;
26pub mod spaces;
27pub mod sync_service;
28pub mod timeline;
29pub mod unable_to_decrypt_hook;
30
31pub use self::{room_list_service::RoomListService, timeline::Timeline};
32
33/// The default sanitizer mode used when sanitizing HTML.
34const DEFAULT_SANITIZER_MODE: HtmlSanitizerMode = HtmlSanitizerMode::Compat;
35
36#[cfg(test)]
37matrix_sdk_test_utils::init_tracing_for_tests!();
38
39#[cfg(feature = "uniffi")]
40uniffi::setup_scaffolding!();