From 968491f8e93e506b224ee4c85bee85f7ead0e5d5 Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Sat, 19 Jan 2019 09:52:10 -0500 Subject: 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. --- grep/Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'grep') 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 = [] -- cgit v1.2.3