mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2026-05-26 20:49:55 +00:00
0317cc8cc5
Signed-off-by: strawberry <strawberry@puppygock.gay>
13 lines
423 B
Rust
13 lines
423 B
Rust
//! Information about the project. This module contains version, build, system,
|
|
//! etc information which can be queried by admins or used by developers.
|
|
|
|
pub mod cargo;
|
|
pub mod room_version;
|
|
pub mod rustc;
|
|
pub mod version;
|
|
|
|
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];
|