From 882cd55ec1ea837f05a038bb318df297d02b5cd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Proch=C3=A1zka?= Date: Wed, 24 Sep 2025 13:10:03 +0200 Subject: [PATCH] Now building stripped binaries --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 36f436f..c0eab3c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,10 @@ name = "tulflash" version = "0.1.0" edition = "2024" +[profile.release] +opt-level = "s" +strip = true + [dependencies] argp = "0.4.0" crossterm = "0.29.0"