aboutsummaryrefslogtreecommitdiff
path: root/src/util/version.rs
blob: b515dccc33bbddc43b77f43cabc887b2bbdc857f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
use std::sync::Arc;

use arc_swap::{ArcSwap, ArcSwapOption};

lazy_static::lazy_static! {
	static ref VERSION: ArcSwap<&'static str> = ArcSwap::new(Arc::new(git_version::git_version!(
		prefix = "git:",
		cargo_prefix = "cargo:",
		fallback = "unknown"
	)));
	static ref FEATURES: ArcSwapOption<&'static [&'static str]> = ArcSwapOption::new(None);
}

pub fn garage_version() -> &'static str {
	&VERSION.load()
}

pub fn garage_features() -> Option<&'static [&'static str]> {
	FEATURES.load().as_ref().map(|f| &f[..])
}

pub fn init_version(version: &'static str) {
	VERSION.store(Arc::new(version));
}

pub fn init_features(features: &'static [&'static str]) {
	FEATURES.store(Some(Arc::new(features)));
}