aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2026-03-09 15:22:37 -0700
committerEllie Huxtable <ellie@elliehuxtable.com>2026-03-09 16:10:21 -0700
commit02fc47aaf1b43be016f455ef30ba79f39f8a15a3 (patch)
treed17161d66611db6514c471f2e0f6fc62c7a27274 /Cargo.toml
parentfeat: use pty proxy for rendering tui popups without clearing the terminal (#... (diff)
downloadatuin-02fc47aaf1b43be016f455ef30ba79f39f8a15a3.zip
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).
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml1
1 files changed, 1 insertions, 0 deletions
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"