1个不稳定版本
0.1.0 | 2023年11月30日 |
---|
#825 in 过程宏
4KB
56 行
示例
#[cfg(not(debug_assertions))]
mod version {
use version_macro::{build_git_branch, build_git_version, build_time};
pub const BUILD_TIME: &str = build_time!();
pub const BUILD_GIT_BRANCH: &str = build_git_branch!();
pub const BUILD_GIT_VERSION: &str = build_git_version!();
pub fn version() -> String {
format!(
"lark build info: [git_branch:{} , build_time:{} , git_version:{}]",
BUILD_GIT_BRANCH, BUILD_TIME, BUILD_GIT_VERSION
)
}
}
#[cfg(debug_assertions)]
mod version {
pub fn version() -> String {
format!(
"lark build info: [git_branch:{} , build_time:{} , git_version:{}]",
"debug", "debug", "debug"
)
}
}
依赖项
~1MB
~19K SLoC