Skip to content

Commit

Permalink
chore(deps): update infer, tray icon, urlpattern, image (#10902)
Browse files Browse the repository at this point in the history
  • Loading branch information
Legend-Master authored Sep 5, 2024
1 parent e568956 commit d9c8d3c
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 31 deletions.
6 changes: 6 additions & 0 deletions .changes/update-trayicon-infer-urlpattern-image.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"tauri": patch:deps
"tauri-utils": patch:deps
---

Update infer to 0.16, tray icon to 0.17, urlpattern to 0.3, image to 0.25
36 changes: 11 additions & 25 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/tauri-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ json5 = { version = "0.4", optional = true }
toml = { version = "0.8", features = ["parse"] }
json-patch = "2.0"
glob = "0.3"
urlpattern = "0.2"
urlpattern = "0.3"
regex = "1"
walkdir = { version = "2", optional = true }
memchr = "2"
semver = "1"
infer = "0.15"
infer = "0.16"
dunce = "1"
log = "0.4.21"
cargo_metadata = { version = "0.18", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/tauri-utils/src/acl/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ impl FromStr for RemoteUrlPattern {
{
init.pathname.replace("*".to_string());
}
let pattern = urlpattern::UrlPattern::parse(init)?;
let pattern = urlpattern::UrlPattern::parse(init, Default::default())?;
Ok(Self(Arc::new(pattern), s.to_string()))
}
}
Expand Down
6 changes: 3 additions & 3 deletions crates/tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@ reqwest = { version = "0.12", default-features = false, features = [
bytes = { version = "1", features = ["serde"] }
raw-window-handle = { version = "0.6", features = ["std"] }
glob = "0.3"
urlpattern = "0.2"
urlpattern = "0.3"
mime = "0.3"
data-url = { version = "0.3", optional = true }
serialize-to-javascript = "=0.1.1"
image = { version = "0.24", default-features = false, optional = true }
image = { version = "0.25", default-features = false, optional = true }
http-range = { version = "0.1.5", optional = true }
tracing = { version = "0.1", optional = true }
heck = "0.5"
Expand All @@ -93,7 +93,7 @@ specta = { version = "^2.0.0-rc.16", optional = true, default-features = false,

[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]
muda = { version = "0.14", default-features = false, features = ["serde"] }
tray-icon = { version = "0.16", default-features = false, features = [
tray-icon = { version = "0.17", default-features = false, features = [
"serde",
], optional = true }

Expand Down

0 comments on commit d9c8d3c

Please sign in to comment.