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 = [ ]