2024-05-09 15:59:08 -07:00
|
|
|
pub mod alloc;
|
|
|
|
pub mod config;
|
|
|
|
pub mod debug;
|
|
|
|
pub mod error;
|
2024-07-24 01:06:58 +00:00
|
|
|
pub mod info;
|
2024-05-09 15:59:08 -07:00
|
|
|
pub mod log;
|
2024-06-25 05:05:02 +00:00
|
|
|
pub mod metrics;
|
2024-05-09 15:59:08 -07:00
|
|
|
pub mod mods;
|
2024-07-03 21:05:24 +00:00
|
|
|
pub mod pdu;
|
2024-05-09 15:59:08 -07:00
|
|
|
pub mod server;
|
|
|
|
pub mod utils;
|
|
|
|
|
2024-09-12 00:59:08 +00:00
|
|
|
pub use ::http;
|
|
|
|
pub use ::ruma;
|
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;
|
2024-07-08 02:50:10 +00:00
|
|
|
pub use error::Error;
|
2024-07-24 23:01:00 +00:00
|
|
|
pub use info::{rustc_flags_capture, version, version::version};
|
2024-10-27 20:53:22 +00:00
|
|
|
pub use pdu::{Event, PduBuilder, PduCount, PduEvent};
|
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
|
|
|
|
|
|
|
pub use crate as conduit_core;
|
2024-05-09 15:59:08 -07:00
|
|
|
|
2024-07-24 23:01:00 +00:00
|
|
|
rustc_flags_capture! {}
|
|
|
|
|
2024-05-19 13:02:55 +00:00
|
|
|
#[cfg(not(conduit_mods))]
|
|
|
|
pub mod mods {
|
2024-05-09 15:59:08 -07:00
|
|
|
#[macro_export]
|
|
|
|
macro_rules! mod_ctor {
|
|
|
|
() => {};
|
|
|
|
}
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! mod_dtor {
|
|
|
|
() => {};
|
|
|
|
}
|
|
|
|
}
|