2022-09-07 15:05:21 +00:00
|
|
|
use std::sync::Arc;
|
|
|
|
|
|
|
|
use arc_swap::ArcSwapOption;
|
|
|
|
|
|
|
|
lazy_static::lazy_static! {
|
|
|
|
static ref FEATURES: ArcSwapOption<&'static [&'static str]> = ArcSwapOption::new(None);
|
|
|
|
}
|
|
|
|
|
2022-09-07 09:59:56 +00:00
|
|
|
pub fn garage_version() -> &'static str {
|
2022-08-10 10:18:44 +00:00
|
|
|
option_env!("GIT_VERSION").unwrap_or(git_version::git_version!(
|
|
|
|
prefix = "git:",
|
|
|
|
cargo_prefix = "cargo:",
|
|
|
|
fallback = "unknown"
|
|
|
|
))
|
|
|
|
}
|
2022-09-07 15:05:21 +00:00
|
|
|
|
|
|
|
pub fn garage_features() -> Option<&'static [&'static str]> {
|
|
|
|
FEATURES.load().as_ref().map(|f| &f[..])
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn init_features(features: &'static [&'static str]) {
|
|
|
|
FEATURES.store(Some(Arc::new(features)));
|
|
|
|
}
|