Compare commits

...

1 commit

Author SHA1 Message Date
595961aa51
fix(webnsupdate): reduce binary size
All checks were successful
/ build (push) Successful in 1m10s
/ check (push) Successful in 28s
/ report-size (push) Successful in 7s
There is no need to compile for speed of execution, this is not a
contested component.
2024-12-22 00:50:00 +01:00

View file

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