phase 7.1: add rayon dependency with parallel feature gate

This commit is contained in:
Glint Dev
2026-07-24 16:46:12 +03:00
parent 32beb81ac4
commit 6f12c53b78

View File

@@ -15,3 +15,8 @@ rustc-hash = "2"
chrono = "0.4.44" chrono = "0.4.44"
compact_str = "0.8" compact_str = "0.8"
bumpalo = "3" bumpalo = "3"
rayon = { version = "1.10", optional = true }
[features]
default = []
parallel = ["rayon"]