Don't enable thin LTO in dev profile

Using `lto = "thin"` seems to increase incremental build time when a file
is `touch`ed from about 3 seconds to almost 30.

I'm not sure if this helped with anything, but there are probably better
ways to improve `dev` performance than enabling LTO.
This commit is contained in:
Ian Douglas Scott 2024-08-20 15:56:36 -07:00 committed by Victoria Brekenfeld
parent a3c81119e8
commit 7d0d878ad1

View file

@ -99,9 +99,6 @@ default = ["systemd"]
systemd = ["libsystemd"]
profile-with-tracy = ["profiling/profile-with-tracy"]
[profile.dev]
lto = "thin"
[profile.dev.package.tiny-skia]
opt-level = 2