feat(jpassmenu): tune options to reduce size
All checks were successful
/ check (push) Successful in 47s
/ build (audiomenu) (push) Successful in 2s
/ build (docs) (push) Successful in 1s
/ build (jpassmenu) (push) Successful in 1s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 2s
/ build (nvim) (push) Successful in 1s
/ report-size (push) Successful in 5s

There is no need to optimize for speed, so just reduce the binary size.

(also update dependencies).
This commit is contained in:
Jalil David Salamé Messina 2024-12-19 23:34:05 +01:00
parent f2432701d1
commit f534ca5901
Signed by: jalil
GPG key ID: F016B9E770737A0B
2 changed files with 29 additions and 33 deletions

View file

@ -11,3 +11,8 @@ env_logger = "0.11.5"
ignore = "0.4.23"
log = "0.4.22"
miette = { version = "7.4.0", features = ["fancy"] }
[profile.release]
lto = true
opt-level = "s"
panic = "abort"