From d59e77f9044ba1e737c51bdbc4e71e141889c8a8 Mon Sep 17 00:00:00 2001 From: Lily Madeline Lyons Date: Thu, 12 Oct 2023 11:03:29 -0700 Subject: [PATCH] Turn off LTO and debug symbols in release builds --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 29544067..8baa5914 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -187,8 +187,8 @@ ProductName = "Luminol" # Fast and performant. [profile.release] opt-level = 3 -lto = "fat" -debug = true +# lto = "fat" +# debug = true # Enable only a small amount of optimization in debug mode [profile.dev]