2022-09-07 17:05:21 +02:00
|
|
|
use std::sync::Arc;
|
|
|
|
|
2023-05-03 16:43:08 +02:00
|
|
|
use arc_swap::ArcSwapOption;
|
2022-09-07 17:05:21 +02:00
|
|
|
|
|
|
|
lazy_static::lazy_static! {
|
2023-05-03 16:43:08 +02:00
|
|
|
static ref VERSION: ArcSwapOption<&'static str> = ArcSwapOption::new(None);
|
2022-09-07 17:05:21 +02:00
|
|
|
static ref FEATURES: ArcSwapOption<&'static [&'static str]> = ArcSwapOption::new(None);
|
|
|
|
}
|
|
|
|
|
2022-09-07 11:59:56 +02:00
|
|
|
pub fn garage_version() -> &'static str {
|
2023-05-03 16:43:08 +02:00
|
|
|
VERSION.load().as_ref().unwrap()
|
2022-08-10 12:18:44 +02:00
|
|
|
}
|
2022-09-07 17:05:21 +02:00
|
|
|
|
|
|
|
pub fn garage_features() -> Option<&'static [&'static str]> {
|
|
|
|
FEATURES.load().as_ref().map(|f| &f[..])
|
|
|
|
}
|
|
|
|
|
2022-09-07 18:30:15 +02:00
|
|
|
pub fn init_version(version: &'static str) {
|
2023-05-03 16:43:08 +02:00
|
|
|
VERSION.store(Some(Arc::new(version)));
|
2022-09-07 18:30:15 +02:00
|
|
|
}
|
|
|
|
|
2022-09-07 17:05:21 +02:00
|
|
|
pub fn init_features(features: &'static [&'static str]) {
|
|
|
|
FEATURES.store(Some(Arc::new(features)));
|
|
|
|
}
|
2023-03-10 11:40:58 +00:00
|
|
|
|
|
|
|
pub fn rust_version() -> &'static str {
|
|
|
|
env!("RUSTC_VERSION")
|
|
|
|
}
|