From 6f12c53b786e9bc6fedf5660a61d23d0ebd08c62 Mon Sep 17 00:00:00 2001 From: Glint Dev Date: Fri, 24 Jul 2026 16:46:12 +0300 Subject: [PATCH] phase 7.1: add rayon dependency with parallel feature gate --- Cargo.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index b6219e2..2d7ad1c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,3 +15,8 @@ rustc-hash = "2" chrono = "0.4.44" compact_str = "0.8" bumpalo = "3" +rayon = { version = "1.10", optional = true } + +[features] +default = [] +parallel = ["rayon"]