Always compile with release flag

a
This commit is contained in:
Jackson Coxson
2025-08-25 17:06:36 -06:00
parent 8846f9a429
commit dff0c62ec7
3 changed files with 10 additions and 13 deletions

View File

@@ -1,4 +1,10 @@
[workspace]
resolver = "2"
members = [ "ffi","idevice", "tools"]
members = ["ffi", "idevice", "tools"]
[profile.release]
opt-level = "z"
codegen-units = 1
lto = true
panic = "abort"