Spiegel von
https://github.com/dani-garcia/vaultwarden.git
synchronisiert 2024-11-25 05:40:29 +01: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.
Dieser Commit ist enthalten in:
Ursprung
b9bdc9b8e2
Commit
bb2412d033
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
|
@ -197,7 +197,7 @@ panic = "abort"
|
||||||
inherits = "release"
|
inherits = "release"
|
||||||
strip = "symbols"
|
strip = "symbols"
|
||||||
lto = "thin"
|
lto = "thin"
|
||||||
codegen-units = 1
|
codegen-units = 16
|
||||||
|
|
||||||
# Linting config
|
# Linting config
|
||||||
[lints.rust]
|
[lints.rust]
|
||||||
|
|
Laden …
In neuem Issue referenzieren