From d9b46845c33541b04fd28e6a67687ac9e82e3e5d Mon Sep 17 00:00:00 2001 From: Ricardo Pardini Date: Fri, 2 Jan 2026 16:40:04 +0100 Subject: [PATCH] Cargo.toml: flip `strip` to `none` - this placates the error `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).` - unsure of ramifications? binary slightly larger...? --- src-tauri/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index ae37428..21fd495 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -63,4 +63,4 @@ panic = "abort" codegen-units = 1 lto = true opt-level = "s" -strip = true +strip = "none"