summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/app.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/app.rs b/src/app.rs
index 52d9d28d..6ca3489c 100644
--- a/src/app.rs
+++ b/src/app.rs
@@ -199,18 +199,18 @@ lazy_static! {
let mut features: Vec<&str> = vec![];
if cfg!(feature = "avx-accel") {
- features.push("+avx-accel");
+ features.push("+AVX");
} else {
- features.push("-avx-accel");
+ features.push("-AVX");
}
if cfg!(feature = "simd-accel") {
- features.push("+simd-accel");
+ features.push("+SIMD");
} else {
- features.push("-simd-accel");
+ features.push("-SIMD");
}
- format!("{}, with features (+/-): {}", crate_version!(), features.join(" "))
+ format!("{}\n{}", crate_version!(), features.join(" "))
};
static ref USAGES: HashMap<&'static str, Usage> = {