From 9b32b93996201190d83fcad4767709774e5a0780 Mon Sep 17 00:00:00 2001 From: Lucas Fernandes Nogueira Date: Sun, 8 Aug 2021 21:16:03 -0300 Subject: [PATCH] fix(core): `fs-all` feature not including `base64` crate, closes #2336 (#2368) --- .changes/fs-all-feature-base64-crate.md | 5 +++++ core/tauri/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changes/fs-all-feature-base64-crate.md diff --git a/.changes/fs-all-feature-base64-crate.md b/.changes/fs-all-feature-base64-crate.md new file mode 100644 index 000000000..7e5f89b99 --- /dev/null +++ b/.changes/fs-all-feature-base64-crate.md @@ -0,0 +1,5 @@ +--- +"tauri": patch +--- + +Fixes `fs-all` feature not requiring the `base64` crate. diff --git a/core/tauri/Cargo.toml b/core/tauri/Cargo.toml index f32225710..653d70d5a 100644 --- a/core/tauri/Cargo.toml +++ b/core/tauri/Cargo.toml @@ -107,7 +107,7 @@ updater = [ "minisign-verify", "base64" ] menu = [ "tauri-runtime/menu", "tauri-runtime-wry/menu" ] system-tray = [ "tauri-runtime/system-tray", "tauri-runtime-wry/system-tray" ] reqwest-client = [ "reqwest", "bytes" ] -fs-all = [ ] +fs-all = [ "fs-write-binary-file" ] fs-read-text-file = [ ] fs-read-binary-file = [ ] fs-write-file = [ ]