From 52deeda8c9b8d8a5818cde7ec25b52726ca8b6fe Mon Sep 17 00:00:00 2001 From: G2-Games Date: Mon, 29 Jul 2024 02:48:59 -0500 Subject: [PATCH] Added `production` profile --- Cargo.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 886114d..db58f06 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,3 +15,10 @@ byteorder = "1.5" integer-encoding = "4.0" rayon = "1.10" thiserror = "1.0" + +[profile.production] +inherits = "release" +lto = true +strip = true +codegen-units = 1 +panic = "abort"