From 02fc47aaf1b43be016f455ef30ba79f39f8a15a3 Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Mon, 9 Mar 2026 15:22:37 -0700 Subject: chore: strip symbols in dist profile to reduce binary size Adds strip = "symbols" to the cargo dist profile, removing debug symbols and symbol tables from the release binary (~5MiB savings). --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 5355eecf..70ed85db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -81,3 +81,4 @@ features = ["runtime-tokio-rustls", "time", "postgres", "uuid"] [profile.dist] inherits = "release" lto = "thin" +strip = "symbols" -- cgit v1.3.1