Files
continuwuity/src/core/info/mod.rs
T

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

13 lines
423 B
Rust
Raw Normal View History

//! 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;
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;
pub const MODULE_ROOT: &str = const_str::split!(std::module_path!(), "::")[0];
pub const CRATE_PREFIX: &str = const_str::split!(MODULE_ROOT, '_')[0];