From d435337f2a546fa1730f1886a383e7ad746a33a7 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Thu, 11 Dec 2025 06:49:06 -0800 Subject: [PATCH] Don't strip symbols hotfix --- src-tauri/Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index b8e040a7..af5ce6c2 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -29,7 +29,9 @@ name = "tauri_app_lib" crate-type = ["staticlib", "cdylib", "lib"] [profile.release] -strip = true # Automatically strip symbols from the binary. +# Currently disabled due to: +# Warn Failed to add bundler type to the binary: __TAURI_BUNDLE_TYPE variable not found in binary. Make sure tauri crate and tauri-cli are up to date and that symbol stripping is disabled (https://doc.rust-lang.org/cargo/reference/profiles.html#strip). Updater plugin may not be able to update this package. This shouldn't normally happen, please report it to https://github.com/tauri-apps/tauri/issues +strip = false [features] cargo-clippy = []