mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2024-11-21 20:35:28 +03:00
Change the codegen-units for low resources (#4336)
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:
parent
b9bdc9b8e2
commit
bb2412d033
1 changed files with 1 additions and 1 deletions
|
@ -197,7 +197,7 @@ panic = "abort"
|
|||
inherits = "release"
|
||||
strip = "symbols"
|
||||
lto = "thin"
|
||||
codegen-units = 1
|
||||
codegen-units = 16
|
||||
|
||||
# Linting config
|
||||
[lints.rust]
|
||||
|
|
Loading…
Reference in a new issue