From 5f049788849bec58d38ac18db40f2214ee505eae Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Fri, 28 Jul 2023 12:17:20 -0700 Subject: [PATCH] move lto to faster_release provile --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 63ef4c73..02c31bf8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,11 +14,11 @@ resolver = "2" [profile.release] # `debug = true` so that sentry can give us line numbers debug = true -# `link time optimization = true = fat` -lto = true [profile.faster_release] inherits = "release" # spend longer compiling for a faster binary codegen-units = 1 +# `link time optimization = true = fat` +lto = true