From 823d2aca61481883343849a0ae91f068676d1289 Mon Sep 17 00:00:00 2001 From: asonix Date: Sat, 17 Feb 2024 11:39:12 -0600 Subject: [PATCH] Enable stripping release builds --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 9a81fdd..2d71069 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,6 +9,10 @@ repository = "https://git.asonix.dog/asonix/pict-rs" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[profile.release] +strip = true + [features] default = [] io-uring = ["actix-rt/io-uring", "actix-server/io-uring", "tokio-uring", "sled/io_uring"]