Files
continuwuity/src/core/mod.rs
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
890 B
Rust
Raw Normal View History

#![type_length_limit = "12288"]
2024-05-09 15:59:08 -07:00
pub mod alloc;
pub mod config;
pub mod debug;
pub mod error;
pub mod info;
2024-05-09 15:59:08 -07:00
pub mod log;
pub mod matrix;
2024-06-25 05:05:02 +00:00
pub mod metrics;
2024-05-09 15:59:08 -07:00
pub mod mods;
pub mod server;
pub mod utils;
pub use ::arrayvec;
2024-09-12 00:59:08 +00:00
pub use ::http;
pub use ::ruma;
pub use ::smallstr;
pub use ::smallvec;
2024-07-25 02:59:54 +00:00
pub use ::toml;
2024-09-12 00:59:08 +00:00
pub use ::tracing;
2024-05-09 15:59:08 -07:00
pub use config::Config;
pub use error::Error;
pub use info::{
rustc_flags_capture, version,
version::{name, version},
};
pub use matrix::{Event, EventTypeExt, PduCount, PduEvent, PduId, RoomVersion, pdu, state_res};
2024-05-09 15:59:08 -07:00
pub use server::Server;
2024-10-24 01:31:30 +00:00
pub use utils::{ctor, dtor, implement, result, result::Result};
2024-07-24 23:01:00 +00:00
2024-12-14 21:58:01 -05:00
pub use crate as conduwuit_core;
2024-05-09 15:59:08 -07:00
2024-07-24 23:01:00 +00:00
rustc_flags_capture! {}
#[cfg(any(not(conduwuit_mods), not(feature = "conduwuit_mods")))]
pub mod mods {
2024-05-09 15:59:08 -07:00
#[macro_export]
macro_rules! mod_ctor {
() => {};
}
#[macro_export]
macro_rules! mod_dtor {
() => {};
}
}