From ead110dcb45875c8899d2a591839eb7a760db2c5 Mon Sep 17 00:00:00 2001 From: thewh1teagle <61390950+thewh1teagle@users.noreply.github.com> Date: Fri, 17 Jan 2025 19:19:23 +0200 Subject: [PATCH] refactor(window-state): Remove glob dependency from Cargo.toml and Cargo.lock --- Cargo.lock | 1 - plugins/window-state/Cargo.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6fa64158..be7bddeb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6919,7 +6919,6 @@ name = "tauri-plugin-window-state" version = "2.2.0" dependencies = [ "bitflags 2.7.0", - "glob", "log", "serde", "serde_json", diff --git a/plugins/window-state/Cargo.toml b/plugins/window-state/Cargo.toml index 447ed4c5..3ea0daaf 100644 --- a/plugins/window-state/Cargo.toml +++ b/plugins/window-state/Cargo.toml @@ -29,5 +29,4 @@ serde_json = { workspace = true } tauri = { workspace = true } log = { workspace = true } thiserror = { workspace = true } -glob = { workspace = true } bitflags = "2"