feat(audiomenu): tweak options to reduce size
All checks were successful
/ check (push) Successful in 48s
/ 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 2s
/ report-size (push) Successful in 4s

It is not perf sensitive so reduce the binary size instead.
This commit is contained in:
Jalil David Salamé Messina 2024-12-19 23:21:07 +01:00
parent d8ebeec121
commit f2432701d1
Signed by: jalil
GPG key ID: F016B9E770737A0B
2 changed files with 22 additions and 26 deletions

View file

@ -10,3 +10,8 @@ duct = "0.13.7"
miette = { version = "7.4.0", features = ["fancy"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
[profile.release]
panic = "abort"
opt-level = 's'
lto = true