tuwunel_core/info/mod.rs
1//! Information about the project. This module contains version, build, system,
2//! etc information which can be queried by admins or used by developers.
3
4pub mod cargo;
5pub mod rustc;
6pub mod version;
7
8pub use tuwunel_macros::rustc_flags_capture;
9
10pub const MODULE_ROOT: &str = const_str::split!(std::module_path!(), "::")[0];
11pub const CRATE_PREFIX: &str = const_str::split!(MODULE_ROOT, '_')[0];