From 38a01a236cf83b35d7665555bb582e709621e82e Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Thu, 12 May 2022 21:55:16 -0400 Subject: [PATCH] enable lto and stripping again --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e0be4c5..c9ba52c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,8 +16,8 @@ threading = ["async-lock", "rayon"] debug = false codegen-units = 1 opt-level = "z" #optimize for size -#lto = "fat" #causes issues with wasm, disabling for the time being -strip = false +lto = "thin" +strip = true panic = "abort" [profile.dev]