From 93124ad2ebed6450224d457da93e7205dbd675da Mon Sep 17 00:00:00 2001 From: Fabian-Lars Date: Mon, 10 Mar 2025 21:38:22 +0100 Subject: [PATCH] fix(tauri-utils): Set minimum patch version for glob (#12950) --- crates/tauri-utils/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/tauri-utils/Cargo.toml b/crates/tauri-utils/Cargo.toml index fe124a051..3cbc7e485 100644 --- a/crates/tauri-utils/Cargo.toml +++ b/crates/tauri-utils/Cargo.toml @@ -35,7 +35,8 @@ ctor = "0.2" json5 = { version = "0.4", optional = true } toml = { version = "0.8", features = ["parse"] } json-patch = "3.0" -glob = "0.3" +# Our code requires at least 0.3.1 +glob = "0.3.1" urlpattern = "0.3" regex = "1" walkdir = { version = "2", optional = true }