updated the cargo.toml to optimize the binary

also removed some debugging print statements to
clean up the output when running in a real
environment.
This commit is contained in:
pyro57000
2025-10-17 09:39:34 -05:00
parent f1e482529c
commit e08d19c565
2 changed files with 9 additions and 14 deletions

View File

@@ -8,3 +8,10 @@ clap = { version = "4.5.41", features = ["derive"] }
colored = "3.0.0"
tokio = { version = "1.48.0", features = ["full"] }
walkdir = "2.5.0"
[profile.release]
opt-level ="z"
lto = true
strip = true
codegen-units = 1
panic = "abort"