summaryrefslogtreecommitdiffstats
path: root/grep
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2019-01-19 09:52:10 -0500
committerAndrew Gallant <jamslam@gmail.com>2019-01-19 10:44:30 -0500
commit968491f8e93e506b224ee4c85bee85f7ead0e5d5 (patch)
treef0911fedefe30879252f6e056717749349100966 /grep
parent63b0f31a221e0d065acbdd8ab43cbc3aef463b8e (diff)
deps: update to bytecount 0.5
bytecount now uses runtime dispatch for enabling SIMD, which means we can no longer need the avx-accel features. We remove it from ripgrep since the next release will be a minor version bump, but leave them as no-ops for the crates that previously used it.
Diffstat (limited to 'grep')
-rw-r--r--grep/Cargo.toml4
1 files changed, 3 insertions, 1 deletions
diff --git a/grep/Cargo.toml b/grep/Cargo.toml
index 5bdc1d62..92222cdf 100644
--- a/grep/Cargo.toml
+++ b/grep/Cargo.toml
@@ -32,6 +32,8 @@ default-features = false
features = ["suggestions"]
[features]
-avx-accel = ["grep-searcher/avx-accel"]
simd-accel = ["grep-searcher/simd-accel"]
pcre2 = ["grep-pcre2"]
+
+# This feature is DEPRECATED. Runtime dispatch is used for SIMD now.
+avx-accel = []