From d3295c0f8972fd02c5aceb8df5d5023f3671bd07 Mon Sep 17 00:00:00 2001 From: Eric Gillespie Date: Thu, 26 May 2022 11:43:02 -0500 Subject: [PATCH] Change `lto` back to default of `false` in Cargo.toml . It became "thin" in commit d18ebe6e8fdc2d91245b3dfe6d3c07431152979a. Fixes segfaults on aarch64-unknown-linux-gnu (https://github.com/ron-rs/ron/issues/379) Also drop redundant default overrides from profiles. for issue #422 --- Cargo.toml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6c1bac31..d0d3172d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,13 +24,7 @@ members = [ ] -[profile.dev] -panic = "unwind" -lto = "thin" - [profile.release] -panic = "unwind" -opt-level = 3 lto = "fat" debug = true codegen-units = 1