From 2172252b7848d02e7f093d6e53999526656c0f40 Mon Sep 17 00:00:00 2001 From: Lucas Nogueira Date: Mon, 17 Nov 2025 08:50:39 -0300 Subject: [PATCH] use git --- Cargo.lock | 27 +++++++++++++++------------ Cargo.toml | 4 ++-- 2 files changed, 17 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6b8335989..9e81809d9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1319,7 +1319,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c" dependencies = [ "lazy_static", - "windows-sys 0.48.0", + "windows-sys 0.59.0", ] [[package]] @@ -2348,7 +2348,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d" dependencies = [ "libc", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -4319,7 +4319,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34" dependencies = [ "cfg-if", - "windows-targets 0.48.5", + "windows-targets 0.52.6", ] [[package]] @@ -5848,7 +5848,7 @@ dependencies = [ "aes-gcm", "aes-kw", "argon2", - "base64 0.21.7", + "base64 0.22.1", "bitfield", "block-padding", "blowfish", @@ -6428,7 +6428,7 @@ dependencies = [ "once_cell", "socket2", "tracing", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -7147,7 +7147,7 @@ dependencies = [ "errno", "libc", "linux-raw-sys 0.4.15", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -7160,7 +7160,7 @@ dependencies = [ "errno", "libc", "linux-raw-sys 0.9.4", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -8444,6 +8444,7 @@ dependencies = [ [[package]] name = "tao" version = "0.34.5" +source = "git+https://github.com/tauri-apps/tao?branch=feat/mobile-multi-window#e07caa1ea2edf0a8a675fadc53f301a66aa60900" dependencies = [ "bitflags 2.7.0", "block2 0.6.0", @@ -8470,7 +8471,7 @@ dependencies = [ "parking_lot", "raw-window-handle", "scopeguard", - "tao-macros 0.1.3", + "tao-macros 0.1.3 (git+https://github.com/tauri-apps/tao?branch=feat/mobile-multi-window)", "unicode-segmentation", "url", "windows 0.61.1", @@ -8482,6 +8483,8 @@ dependencies = [ [[package]] name = "tao-macros" version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd" dependencies = [ "proc-macro2", "quote", @@ -8491,8 +8494,7 @@ dependencies = [ [[package]] name = "tao-macros" version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd" +source = "git+https://github.com/tauri-apps/tao?branch=feat/mobile-multi-window#e07caa1ea2edf0a8a675fadc53f301a66aa60900" dependencies = [ "proc-macro2", "quote", @@ -9038,7 +9040,7 @@ dependencies = [ "getrandom 0.2.15", "once_cell", "rustix 0.38.43", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -10354,7 +10356,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]] @@ -10987,6 +10989,7 @@ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" [[package]] name = "wry" version = "0.53.5" +source = "git+https://github.com/tauri-apps/wry?branch=feat/mobile-multi-webview#5861318d87e8ac3b71ec7aae64df931923bbbc39" dependencies = [ "base64 0.22.1", "block2 0.6.0", diff --git a/Cargo.toml b/Cargo.toml index 562d66271..d5e6e4228 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -72,5 +72,5 @@ schemars_derive = { git = 'https://github.com/tauri-apps/schemars.git', branch = tauri = { path = "./crates/tauri" } tauri-plugin = { path = "./crates/tauri-plugin" } tauri-utils = { path = "./crates/tauri-utils" } -wry = { path = "../wry" } -tao = { path = "../tao" } +wry = { git = "https://github.com/tauri-apps/wry", branch = "feat/mobile-multi-webview" } +tao = { git = "https://github.com/tauri-apps/tao", branch = "feat/mobile-multi-window" }