Browse Source

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.
pull/4336/head
BlackDex 1 year ago
parent
commit
5ea0b8fafd
No known key found for this signature in database GPG Key ID: 58C80A2AA6C765E1
  1. 2
      Cargo.toml

2
Cargo.toml

@ -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]

Loading…
Cancel
Save