Commit 9edce2b
committed
Unset
Previously, we set `codegen-units = 1` *and* `lto = true` in
`Cargo.toml`, but the docs for `lto` say:
```
No LTO is performed if codegen units is 1 or opt-level is 0.
```
https://doc.rust-lang.org/cargo/reference/profiles.html#lto
Hence, we here remove `lto = true` since it's not used anyways and
confusing.lto for fuzz, as it conflicts with codegen-units = 1 anyways1 parent d67bd0f commit 9edce2b
2 files changed
+0
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
40 | | - | |
41 | 40 | | |
42 | 41 | | |
43 | 42 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
26 | | - | |
27 | 26 | | |
28 | 27 | | |
29 | 28 | | |
| |||
0 commit comments