From ae68718e52375a7aea2dc6db1bfed59ff6525094 Mon Sep 17 00:00:00 2001 From: scx1332 Date: Tue, 30 Apr 2024 23:46:21 +0200 Subject: [PATCH] fix: full opt --- Cargo.toml | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c7c08ee5..3f93d405 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -144,13 +144,7 @@ panic = "unwind" [profile.release-lto] inherits = "release" -incremental = false -opt-level = 1 -panic = "unwind" - -#[profile.release-lto] -#inherits = "release" -#codegen-units = 1 -#lto = "fat" -#opt-level = 3 -#panic = "abort" +codegen-units = 1 +lto = "fat" +opt-level = 3 +panic = "abort"