mirror of
https://gitlab.com/fabinfra/fabaccess/bffh.git
synced 2025-03-12 08:01:42 +01:00
9 lines
319 B
Rust
9 lines
319 B
Rust
|
//! Information extracted from the (build) environment
|
||
|
//!
|
||
|
|
||
|
/// The BFFH version, as an UTF-8 string
|
||
|
///
|
||
|
/// This is of the format "<major>.<minor>.<patch>" if build as a normal release
|
||
|
/// or "<major> .<minor>.<patch>-<commit hash>" if built from source
|
||
|
pub const VERSION: &'static str = env!("BFFHD_VERSION_STRING");
|