feat: replace rayon parallel iteration with tokio async mpsc channels for file processing
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user