Use `thin` instead of `fat` LTO

The performance between `thin` and `fat` is in the margin of error,
however `thin` LTO is way faster to build.
This commit is contained in:
Kirill Chibisov 2023-03-11 23:16:49 +03:00 committed by GitHub
parent 53322bef61
commit d0078ffc21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -7,6 +7,6 @@ members = [
]
[profile.release]
lto = true
lto = "thin"
debug = 1
incremental = false