2024-07-24 01:06:58 +00:00
|
|
|
//! Information about the project. This module contains version, build, system,
|
|
|
|
//! etc information which can be queried by admins or used by developers.
|
|
|
|
|
2024-07-24 09:10:01 +00:00
|
|
|
pub mod cargo;
|
2024-12-05 07:23:51 +00:00
|
|
|
pub mod room_version;
|
2024-07-24 23:01:00 +00:00
|
|
|
pub mod rustc;
|
2024-07-24 01:06:58 +00:00
|
|
|
pub mod version;
|
2024-07-24 23:01:00 +00:00
|
|
|
|
2024-12-14 21:58:01 -05:00
|
|
|
pub use conduwuit_macros::rustc_flags_capture;
|
2024-08-04 06:47:37 +00:00
|
|
|
|
|
|
|
pub const MODULE_ROOT: &str = const_str::split!(std::module_path!(), "::")[0];
|
|
|
|
pub const CRATE_PREFIX: &str = const_str::split!(MODULE_ROOT, '_')[0];
|