2025-10-07 18:11:35 +00:00
|
|
|
#![type_length_limit = "98304"]
|
2024-07-04 03:26:19 +00:00
|
|
|
#![allow(refining_impl_trait)]
|
|
|
|
|
|
2024-07-13 07:01:45 +00:00
|
|
|
mod manager;
|
2024-11-01 22:16:14 +00:00
|
|
|
mod migrations;
|
2025-08-27 00:57:12 +00:00
|
|
|
mod once_services;
|
2024-07-04 03:26:19 +00:00
|
|
|
mod service;
|
2024-05-09 15:59:08 -07:00
|
|
|
pub mod services;
|
|
|
|
|
|
|
|
|
|
pub mod account_data;
|
|
|
|
|
pub mod admin;
|
|
|
|
|
pub mod appservice;
|
2024-07-16 22:29:42 +00:00
|
|
|
pub mod client;
|
2025-01-28 20:55:28 +00:00
|
|
|
pub mod config;
|
2025-08-25 19:12:27 +05:00
|
|
|
pub mod deactivate;
|
2024-07-18 06:37:47 +00:00
|
|
|
pub mod emergency;
|
2025-01-26 00:24:11 +00:00
|
|
|
pub mod federation;
|
2024-05-09 15:59:08 -07:00
|
|
|
pub mod globals;
|
|
|
|
|
pub mod key_backups;
|
|
|
|
|
pub mod media;
|
2025-08-25 19:12:27 +05:00
|
|
|
pub mod membership;
|
2024-05-09 15:59:08 -07:00
|
|
|
pub mod presence;
|
|
|
|
|
pub mod pusher;
|
2024-07-16 22:00:54 +00:00
|
|
|
pub mod resolver;
|
2024-05-09 15:59:08 -07:00
|
|
|
pub mod rooms;
|
|
|
|
|
pub mod sending;
|
2024-07-31 21:05:15 +00:00
|
|
|
pub mod server_keys;
|
2024-08-08 17:18:30 +00:00
|
|
|
pub mod sync;
|
2024-05-09 15:59:08 -07:00
|
|
|
pub mod transaction_ids;
|
|
|
|
|
pub mod uiaa;
|
|
|
|
|
pub mod users;
|
|
|
|
|
|
2025-08-27 00:57:12 +00:00
|
|
|
pub(crate) use once_services::OnceServices;
|
2025-08-22 20:15:54 +05:00
|
|
|
pub(crate) use service::{Args, Service};
|
2024-05-09 15:59:08 -07:00
|
|
|
|
2024-07-22 07:43:51 +00:00
|
|
|
pub use crate::services::Services;
|
2024-05-09 15:59:08 -07:00
|
|
|
|
2025-04-22 01:41:02 +00:00
|
|
|
tuwunel_core::mod_ctor! {}
|
|
|
|
|
tuwunel_core::mod_dtor! {}
|
|
|
|
|
tuwunel_core::rustc_flags_capture! {}
|