mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2025-08-01 12:48:31 +00:00
11 lines
399 B
Rust
11 lines
399 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 rustc;
|
|
pub mod version;
|
|
|
|
pub use conduit_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];
|