1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-08-04 10:09:09 +00:00

Change the codegen-units for low resources

It seems (as disscusses here #4320) a single codegen unit makes it still
crash. This sets it to the default 16 Rust uses for the release profile.
This commit is contained in:
BlackDex 2024-02-09 23:52:09 +01:00
commit 5ea0b8fafd
No known key found for this signature in database
GPG key ID: 58C80A2AA6C765E1

View file

@ -197,7 +197,7 @@ panic = "abort"
inherits = "release"
strip = "symbols"
lto = "thin"
codegen-units = 1
codegen-units = 16
# Linting config
[lints.rust]