From a282010c107e16f7c6d6e2ea3bd95d289218a5d1 Mon Sep 17 00:00:00 2001 From: Lucas Nogueira Date: Mon, 14 Oct 2024 21:45:06 -0300 Subject: [PATCH] fix(core): crash on macOS older than Sequoia ref https://github.com/tauri-apps/wry/pull/1389 --- .changes/wry-fix-crash-macos-below-14.md | 5 +++++ Cargo.lock | 4 ++-- crates/tauri-runtime-wry/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 .changes/wry-fix-crash-macos-below-14.md diff --git a/.changes/wry-fix-crash-macos-below-14.md b/.changes/wry-fix-crash-macos-below-14.md new file mode 100644 index 000000000000..73837d06e772 --- /dev/null +++ b/.changes/wry-fix-crash-macos-below-14.md @@ -0,0 +1,5 @@ +--- +"tauri-runtime-wry": patch:bug +--- + +Update wry to 0.46.1 to fix a crash on macOS older than Sequoia. diff --git a/Cargo.lock b/Cargo.lock index 8c5e5aaf0c45..629d7f6c0809 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -11005,9 +11005,9 @@ dependencies = [ [[package]] name = "wry" -version = "0.46.0" +version = "0.46.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "469a3765ecc3e8aa9ccdf3c5a52c82697ec03037cd60494488763880d31a1b3a" +checksum = "2f8c948dc5f7c23bd93ba03b85b7f679852589bb78e150424d993171e4ef7b73" dependencies = [ "base64 0.22.1", "block2", diff --git a/crates/tauri-runtime-wry/Cargo.toml b/crates/tauri-runtime-wry/Cargo.toml index 3496dd948a16..6f1713e22173 100644 --- a/crates/tauri-runtime-wry/Cargo.toml +++ b/crates/tauri-runtime-wry/Cargo.toml @@ -17,7 +17,7 @@ rustc-args = ["--cfg", "docsrs"] rustdoc-args = ["--cfg", "docsrs"] [dependencies] -wry = { version = "0.46", default-features = false, features = [ +wry = { version = "0.46.1", default-features = false, features = [ "drag-drop", "protocol", "os-webview",