15 lines
338 B
Rust
15 lines
338 B
Rust
#![type_length_limit = "262144"] //TODO: REDUCE ME
|
|
#![expect(clippy::toplevel_ref_arg)]
|
|
#![expect(clippy::duration_suboptimal_units)] // remove after MSRV 1.91
|
|
|
|
pub mod client;
|
|
pub mod router;
|
|
pub mod server;
|
|
|
|
use log as _;
|
|
|
|
pub(crate) use self::router::{Ruma, RumaResponse, State};
|
|
|
|
tuwunel_core::mod_ctor! {}
|
|
tuwunel_core::mod_dtor! {}
|