From 88735e2a948cd2ef5fd5b2ee26afff8292afed72 Mon Sep 17 00:00:00 2001 From: Boshen Date: Sat, 4 Mar 2023 18:50:58 +0800 Subject: [PATCH] perf(cli): turn on `simd-accel` for `ignore` because globs are being used --- crates/oxc_cli/Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/oxc_cli/Cargo.toml b/crates/oxc_cli/Cargo.toml index e9f6b4c12..6f6084864 100644 --- a/crates/oxc_cli/Cargo.toml +++ b/crates/oxc_cli/Cargo.toml @@ -28,6 +28,5 @@ glob = { workspace = true } rayon = { workspace = true } miette = { workspace = true, features = ["fancy"] } -ignore = "0.4.20" -git2 = "0.16.1" +ignore = { version = "0.4.20", features = ["simd-accel"] } git2 = { version = "0.16.1", default_features = false }