forked from Deuxfleurs/garage
7 lines
182 B
Rust
7 lines
182 B
Rust
pub fn garage_version() -> &'static str {
|
|
option_env!("GIT_VERSION").unwrap_or(git_version::git_version!(
|
|
prefix = "git:",
|
|
cargo_prefix = "cargo:",
|
|
fallback = "unknown"
|
|
))
|
|
}
|