feat: replace rayon parallel iteration with tokio async mpsc channels for file processing

This commit is contained in:
JestDotty
2025-03-24 02:29:54 +00:00
parent 144fc9b2ac
commit 32fda51edd
4 changed files with 389 additions and 43 deletions
+4 -3
View File
@@ -4,9 +4,10 @@ version = "0.1.0"
edition = "2024"
[dependencies]
rayon = "1.10.0"
tokio = { version = "1.44.1", features = ["full"] }
[profile.release]
lto = "thin" # Full Link-Time Optimization for maximum runtime speed
debug = false # Disables debug symbols to streamline the binary
codegen-units = 1 # less means more compile work but better optimized
lto = "thin" # thin has best performance. fat the worst
strip = true
panic = "abort"