1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#![recursion_limit = "1024"]
#![warn(clippy::all)]
#![feature(vec_into_raw_parts)]
#![feature(async_closure)]
#![feature(box_into_inner)]
#![allow(unused, dead_code, clippy::transmutes_expressible_as_ptr_casts)]

#[rustfmt::skip]
#[cfg(feature = "uniffi")]
uniffi::include_scaffolding!("acter");

pub use matrix_sdk;
pub use matrix_sdk_ui;
pub use ruma_common;
pub use ruma_events;

pub mod api;
pub mod platform;

#[rustfmt::skip]
#[cfg(feature = "cbindgen")]
pub mod api_generated;

#[cfg(feature = "testing")]
pub mod testing;

pub use api::*;