garage/src/util/version.rs

33 lines
772 B
Rust
Raw Normal View History

2022-09-07 15:05:21 +00:00
use std::sync::Arc;
2022-09-07 16:30:15 +00:00
use arc_swap::{ArcSwap, ArcSwapOption};
2022-09-07 15:05:21 +00:00
lazy_static::lazy_static! {
2022-09-07 16:30:15 +00:00
static ref VERSION: ArcSwap<&'static str> = ArcSwap::new(Arc::new(git_version::git_version!(
prefix = "git:",
cargo_prefix = "cargo:",
fallback = "unknown"
)));
2022-09-07 15:05:21 +00:00
static ref FEATURES: ArcSwapOption<&'static [&'static str]> = ArcSwapOption::new(None);
}
pub fn garage_version() -> &'static str {
2022-09-07 16:30:15 +00:00
&VERSION.load()
}
2022-09-07 15:05:21 +00:00
pub fn garage_features() -> Option<&'static [&'static str]> {
FEATURES.load().as_ref().map(|f| &f[..])
}
2022-09-07 16:30:15 +00:00
pub fn init_version(version: &'static str) {
VERSION.store(Arc::new(version));
}
2022-09-07 15:05:21 +00:00
pub fn init_features(features: &'static [&'static str]) {
FEATURES.store(Some(Arc::new(features)));
}
pub fn rust_version() -> &'static str {
env!("RUSTC_VERSION")
}