1
0
Fork 1
Spiegel von https://github.com/dani-garcia/vaultwarden.git synchronisiert 2024-06-02 05:48:59 +02: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.
Dieser Commit ist enthalten in:
BlackDex 2024-02-09 23:52:09 +01:00
Ursprung b9bdc9b8e2
Commit 5ea0b8fafd
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 58C80A2AA6C765E1

Datei anzeigen

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