fix(webnsupdate): reduce binary size
All checks were successful
/ build (push) Successful in 1s
/ check (push) Successful in 6s
/ report-size (push) Successful in 1s

There is no need to compile for speed of execution, this is not a
contested component.
This commit is contained in:
Jalil David Salamé Messina 2024-12-22 00:39:35 +01:00
parent 6b4c0c4865
commit bd8badac23
Signed by: jalil
GPG key ID: F016B9E770737A0B

View file

@ -35,6 +35,12 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[dev-dependencies]
insta = "1"
[profile.release]
opt-level = "s"
panic = "abort"
lto = true
strip = true
[profile.dev]
debug = 0
codegen-backend = "cranelift"