From 24445d71de92d526d0ccaecb54f13003ddc6f6b4 Mon Sep 17 00:00:00 2001 From: Lucas Fernandes Nogueira Date: Wed, 31 Jul 2024 18:40:02 -0300 Subject: [PATCH] fix(core): usage without the compression feature (#10432) --- .changes/fix-usage-without-compression.md | 6 ++++++ core/tauri-codegen/Cargo.toml | 1 - 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changes/fix-usage-without-compression.md diff --git a/.changes/fix-usage-without-compression.md b/.changes/fix-usage-without-compression.md new file mode 100644 index 000000000000..0e6bf6154ca6 --- /dev/null +++ b/.changes/fix-usage-without-compression.md @@ -0,0 +1,6 @@ +--- +"tauri": patch:bug +"tauri-codegen": patch:bug +--- + +Fixes asset resolving when not using the `compression` feature. diff --git a/core/tauri-codegen/Cargo.toml b/core/tauri-codegen/Cargo.toml index 97f63a3bce78..bc8404b405ba 100644 --- a/core/tauri-codegen/Cargo.toml +++ b/core/tauri-codegen/Cargo.toml @@ -37,7 +37,6 @@ plist = "1" time = { version = "0.3", features = [ "parsing", "formatting" ] } [features] -default = [ "compression" ] compression = [ "brotli", "tauri-utils/compression" ] isolation = [ "tauri-utils/isolation" ] config-json5 = [ "tauri-utils/config-json5" ]