chore: add for_loops_forbidden_only parser and switch to fat LTO in release profile

This commit is contained in:
JestDotty
2025-10-04 13:58:40 +00:00
parent 93cf77cb96
commit 8c5938786e
7 changed files with 54 additions and 128 deletions
+2 -1
View File
@@ -9,6 +9,7 @@ tokio = { version = "1.44.1", features = ["full"] }
[profile.release]
codegen-units = 1 # less means more compile work but better optimized
lto = "thin" # thin has best performance. fat the worst
lto = "fat" # thin has best performance. fat the worst
strip = true
# opt-level = "z" # slows down
panic = "abort"