From f75d21db3351d6f12adf585c2c797c20ece94f7f Mon Sep 17 00:00:00 2001 From: Tony <68118705+Legend-Master@users.noreply.github.com> Date: Wed, 25 Mar 2026 22:22:30 +0800 Subject: [PATCH] chore(deps): remove used of tauri-utils build feature (#3360) --- .changes/fs-remove-tauri-utils-build.md | 6 ++++++ plugins/fs/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .changes/fs-remove-tauri-utils-build.md diff --git a/.changes/fs-remove-tauri-utils-build.md b/.changes/fs-remove-tauri-utils-build.md new file mode 100644 index 000000000..31c293ff2 --- /dev/null +++ b/.changes/fs-remove-tauri-utils-build.md @@ -0,0 +1,6 @@ +--- +"fs": patch +"fs-js": patch +--- + +Removed the dependency on `tauri-utils`'s `build` feature diff --git a/plugins/fs/Cargo.toml b/plugins/fs/Cargo.toml index 33ef5adbb..b349266ac 100644 --- a/plugins/fs/Cargo.toml +++ b/plugins/fs/Cargo.toml @@ -21,7 +21,7 @@ tauri-plugin = { workspace = true, features = ["build"] } schemars = { workspace = true } serde = { workspace = true } toml = "0.9" -tauri-utils = { workspace = true, features = ["build"] } +tauri-utils = { workspace = true } [dependencies] serde = { workspace = true }