From 1c1326842e07a7a6508690f27ae5bc96058ecdc1 Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Sun, 31 Aug 2025 19:24:05 +0200 Subject: [PATCH] chore: Remove undocumented memchr feature The automatically-generated "memchr" feature is undocumented does nothing on its own. Remove it by using `dep:` syntax in the "simd" feature. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a43b0796..95f7855e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -140,7 +140,7 @@ harness = false [features] default = [] -simd = ["memchr"] +simd = ["dep:memchr"] testing-colors = [] [lints]