Skip to content

Commit d9c8d3c

Browse files
chore(deps): update infer, tray icon, urlpattern, image (#10902)
1 parent e568956 commit d9c8d3c

File tree

5 files changed

+23
-31
lines changed

5 files changed

+23
-31
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"tauri": patch:deps
3+
"tauri-utils": patch:deps
4+
---
5+
6+
Update infer to 0.16, tray icon to 0.17, urlpattern to 0.3, image to 0.25

Cargo.lock

Lines changed: 11 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/tauri-utils/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ json5 = { version = "0.4", optional = true }
3535
toml = { version = "0.8", features = ["parse"] }
3636
json-patch = "2.0"
3737
glob = "0.3"
38-
urlpattern = "0.2"
38+
urlpattern = "0.3"
3939
regex = "1"
4040
walkdir = { version = "2", optional = true }
4141
memchr = "2"
4242
semver = "1"
43-
infer = "0.15"
43+
infer = "0.16"
4444
dunce = "1"
4545
log = "0.4.21"
4646
cargo_metadata = { version = "0.18", optional = true }

crates/tauri-utils/src/acl/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ impl FromStr for RemoteUrlPattern {
251251
{
252252
init.pathname.replace("*".to_string());
253253
}
254-
let pattern = urlpattern::UrlPattern::parse(init)?;
254+
let pattern = urlpattern::UrlPattern::parse(init, Default::default())?;
255255
Ok(Self(Arc::new(pattern), s.to_string()))
256256
}
257257
}

crates/tauri/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,11 @@ reqwest = { version = "0.12", default-features = false, features = [
7676
bytes = { version = "1", features = ["serde"] }
7777
raw-window-handle = { version = "0.6", features = ["std"] }
7878
glob = "0.3"
79-
urlpattern = "0.2"
79+
urlpattern = "0.3"
8080
mime = "0.3"
8181
data-url = { version = "0.3", optional = true }
8282
serialize-to-javascript = "=0.1.1"
83-
image = { version = "0.24", default-features = false, optional = true }
83+
image = { version = "0.25", default-features = false, optional = true }
8484
http-range = { version = "0.1.5", optional = true }
8585
tracing = { version = "0.1", optional = true }
8686
heck = "0.5"
@@ -93,7 +93,7 @@ specta = { version = "^2.0.0-rc.16", optional = true, default-features = false,
9393

9494
[target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"windows\", target_os = \"macos\"))".dependencies]
9595
muda = { version = "0.14", default-features = false, features = ["serde"] }
96-
tray-icon = { version = "0.16", default-features = false, features = [
96+
tray-icon = { version = "0.17", default-features = false, features = [
9797
"serde",
9898
], optional = true }
9999

0 commit comments

Comments
 (0)