From a671182b07da0c22ed29e66f87faa3738fbdca64 Mon Sep 17 00:00:00 2001 From: rattatwinko Date: Mon, 16 Mar 2026 15:39:00 +0100 Subject: [PATCH] cargo.toml ; minsize this --- Cargo.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 899486c..d1526e7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "http-rs" version = "0.1.0" +author="rattatwinko" edition = "2024" [dependencies] @@ -8,3 +9,12 @@ logger-rust = "0.2.12" mime_guess = "2.0.5" threadpool = "1.8.1" tiny_http = "0.12.0" + +[profile.release] +opt-level = "z" +lto = true +codegen-units = 1 +panic = "abort" +strip = true +debug = false +incremental = false