diff options
author | Alex Auvolat <alex@adnab.me> | 2022-09-07 18:36:46 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-09-07 18:36:46 +0200 |
commit | ceb1f0229a9c8b9f8255b4a4c70272627f0c34d7 (patch) | |
tree | cf55d93dc4d95bc3eacb756f853ffe63e2dafc44 /src/model/version.rs | |
parent | f310fce34b0273f9f75e7a6ea665f51003a1f795 (diff) | |
download | garage-ceb1f0229a9c8b9f8255b4a4c70272627f0c34d7.tar.gz garage-ceb1f0229a9c8b9f8255b4a4c70272627f0c34d7.zip |
Move version back into utilimprove-deps
Diffstat (limited to 'src/model/version.rs')
-rw-r--r-- | src/model/version.rs | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/model/version.rs b/src/model/version.rs deleted file mode 100644 index b515dccc..00000000 --- a/src/model/version.rs +++ /dev/null @@ -1,28 +0,0 @@ -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))); -} |