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_auto_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;
24pub mod sync_service;
25pub mod timeline;
26pub mod unable_to_decrypt_hook;
27
28pub use self::{room_list_service::RoomListService, timeline::Timeline};
29
30/// The default sanitizer mode used when sanitizing HTML.
31const DEFAULT_SANITIZER_MODE: HtmlSanitizerMode = HtmlSanitizerMode::Compat;
32
33#[cfg(test)]
34matrix_sdk_test::init_tracing_for_tests!();
35
36#[cfg(feature = "uniffi")]
37uniffi::setup_scaffolding!();