From 4a58d6eae04c5782e55fcdd9f3934680da9a676a Mon Sep 17 00:00:00 2001 From: izzy Date: Fri, 9 May 2025 23:04:37 +0100 Subject: [PATCH] chore: enable lto for production builds (#341) --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6c69df09..d2ae6117 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,6 +16,6 @@ redis23 = { package = "redis", version = "0.23.3", git = "https://github.com/rev # I'm 99% sure this is overloading the GitHub worker # hence builds have been failing since, let's just # disable it for now. In the future, we could use this -# if we were rolling our own CI. -# [profile.release] -# lto = true +# if we were rolling our own CI (that is now). +[profile.release] +lto = true