chore(deps): update wry to 0.47 and tao to 0.30.6 (#11627)

This commit is contained in:
Amr Bashir 2024-11-09 04:14:22 +02:00 committed by GitHub
parent 60e86d5f6e
commit 3f6f07a1b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 20 additions and 8 deletions

24
Cargo.lock generated
View File

@ -1879,6 +1879,16 @@ dependencies = [
"unicode-segmentation",
]
[[package]]
name = "cookie"
version = "0.18.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
dependencies = [
"time",
"version_check",
]
[[package]]
name = "cookie-factory"
version = "0.3.3"
@ -4857,7 +4867,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4"
dependencies = [
"cfg-if",
"windows-targets 0.48.5",
"windows-targets 0.52.6",
]
[[package]]
@ -8911,9 +8921,9 @@ dependencies = [
[[package]]
name = "tao"
version = "0.30.5"
version = "0.30.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "63f1f6b2017cc33d7f6fc9c6186a2c0f5dfc985899a7b4fe9e64985c17533db3"
checksum = "833b4d43383d76d5078d72f3acd977f47eb5b6751eb40baa665d13828e7b79df"
dependencies = [
"bitflags 2.6.0",
"cocoa 0.26.0",
@ -10788,7 +10798,7 @@ version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
dependencies = [
"windows-sys 0.48.0",
"windows-sys 0.59.0",
]
[[package]]
@ -11271,12 +11281,13 @@ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
[[package]]
name = "wry"
version = "0.46.1"
version = "0.47.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2f8c948dc5f7c23bd93ba03b85b7f679852589bb78e150424d993171e4ef7b73"
checksum = "553ca1ce149982123962fac2506aa75b8b76288779a77e72b12fa2fc34938647"
dependencies = [
"base64 0.22.1",
"block2",
"cookie",
"crossbeam-channel",
"dpi",
"dunce",
@ -11302,6 +11313,7 @@ dependencies = [
"tao-macros",
"thiserror 1.0.68",
"tracing",
"url",
"webkit2gtk",
"webkit2gtk-sys",
"webview2-com",

View File

@ -17,13 +17,13 @@ rustc-args = ["--cfg", "docsrs"]
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
wry = { version = "0.46.1", default-features = false, features = [
wry = { version = "0.47", default-features = false, features = [
"drag-drop",
"protocol",
"os-webview",
"linux-body",
] }
tao = { version = "0.30.5", default-features = false, features = ["rwh_06"] }
tao = { version = "0.30.6", default-features = false, features = ["rwh_06"] }
tauri-runtime = { version = "2.1.0", path = "../tauri-runtime" }
tauri-utils = { version = "2.0.2", path = "../tauri-utils" }
raw-window-handle = "0.6"