Compare commits

...

1 commit

Author SHA1 Message Date
bd8badac23
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.
2024-12-22 00:52:01 +01:00

View file

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