1
0
Fork 1
Spiegel von https://github.com/dani-garcia/vaultwarden.git synchronisiert 2024-05-06 01:03:32 +02: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:
Mathijs van Veluw 2024-02-10 13:04:08 +01:00 committet von GitHub
Ursprung b9bdc9b8e2
Commit bb2412d033
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: B5690EEEBB952194

Datei anzeigen

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