summaryrefslogtreecommitdiffstats
path: root/crates
diff options
context:
space:
mode:
Diffstat (limited to 'crates')
-rw-r--r--crates/core/flags/doc/version.rs3
-rw-r--r--crates/grep/Cargo.toml4
-rw-r--r--crates/searcher/Cargo.toml5
3 files changed, 4 insertions, 8 deletions
diff --git a/crates/core/flags/doc/version.rs b/crates/core/flags/doc/version.rs
index 8e52861f..d238ba0c 100644
--- a/crates/core/flags/doc/version.rs
+++ b/crates/core/flags/doc/version.rs
@@ -161,9 +161,6 @@ fn compile_cpu_features() -> Vec<String> {
fn features() -> Vec<String> {
let mut features = vec![];
- let simd_accel = cfg!(feature = "simd-accel");
- features.push(format!("{sign}simd-accel", sign = sign(simd_accel)));
-
let pcre2 = cfg!(feature = "pcre2");
features.push(format!("{sign}pcre2", sign = sign(pcre2)));
diff --git a/crates/grep/Cargo.toml b/crates/grep/Cargo.toml
index 48369c86..a615f48f 100644
--- a/crates/grep/Cargo.toml
+++ b/crates/grep/Cargo.toml
@@ -26,8 +26,8 @@ termcolor = "1.0.4"
walkdir = "2.2.7"
[features]
-simd-accel = ["grep-searcher/simd-accel"]
pcre2 = ["grep-pcre2"]
-# This feature is DEPRECATED. Runtime dispatch is used for SIMD now.
+# These features are DEPRECATED. Runtime dispatch is used for SIMD now.
+simd-accel = []
avx-accel = []
diff --git a/crates/searcher/Cargo.toml b/crates/searcher/Cargo.toml
index eeb805d3..05ccad3f 100644
--- a/crates/searcher/Cargo.toml
+++ b/crates/searcher/Cargo.toml
@@ -27,7 +27,6 @@ grep-regex = { version = "0.1.12", path = "../regex" }
regex = "1.9.5"
[features]
-simd-accel = ["encoding_rs/simd-accel"]
-
-# This feature is DEPRECATED. Runtime dispatch is used for SIMD now.
+# These features are DEPRECATED. Runtime dispatch is used for SIMD now.
+simd-accel = []
avx-accel = []