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_arch = "wasm32", allow(clippy::arc_with_non_send_sync))]
16#![cfg_attr(docsrs, feature(doc_auto_cfg))]
17
18use ruma::html::HtmlSanitizerMode;
19
20mod events;
21
22pub use eyeball_im;
23
24pub mod encryption_sync_service;
25pub mod notification_client;
26pub mod room_list_service;
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::init_tracing_for_tests!();
38
39#[cfg(feature = "uniffi")]
40uniffi::setup_scaffolding!();