From 9eb717c73e3b3719f2a7b08be13768156d182e55 Mon Sep 17 00:00:00 2001 From: Ryze Date: Mon, 6 Feb 2023 02:58:27 +0300 Subject: [PATCH] Added release-full profile with LTO --- Cargo.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index f4b8356..db230f1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,3 +9,8 @@ crate-type = ["cdylib"] [dependencies] mpv-client = "0.4.1" + +[profile.release-full] +inherits = "release" +strip = "symbols" +lto = "fat"