workaround the rust issue (#397)

This works around rust-lang/rust#108853 by using an `opt-level` of `3`
rather than `s`.

- [x] Changelog updated / no changelog update needed
This commit is contained in:
Corwin 2023-03-23 21:59:08 +00:00 committed by GitHub
commit 4562c4ee17
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,8 +12,8 @@ opt-level = 3
debug = true
[profile.release]
opt-level = "s"
lto = "thin"
opt-level = 3
lto = "fat"
debug = true
[features]