diff --git a/.changes/rfd101.md b/.changes/rfd101.md new file mode 100644 index 000000000000..ef230029a9bf --- /dev/null +++ b/.changes/rfd101.md @@ -0,0 +1,6 @@ +--- +"tauri": minor +--- + +Update rfd to 0.11. + diff --git a/.changes/wry26.md b/.changes/wry26.md new file mode 100644 index 000000000000..2775757c55c6 --- /dev/null +++ b/.changes/wry26.md @@ -0,0 +1,6 @@ +--- +"tauri-runtime-wry": minor +--- + +Update wry to 0.26. + diff --git a/core/tauri-runtime-wry/Cargo.toml b/core/tauri-runtime-wry/Cargo.toml index c195ccf4f84e..26144538ae40 100644 --- a/core/tauri-runtime-wry/Cargo.toml +++ b/core/tauri-runtime-wry/Cargo.toml @@ -13,7 +13,7 @@ exclude = [ "CHANGELOG.md", "/target" ] readme = "README.md" [dependencies] -wry = { version = "0.25.0", default-features = false, features = [ "file-drop", "protocol" ] } +wry = { version = "0.26.0", default-features = false, features = [ "file-drop", "protocol" ] } tauri-runtime = { version = "0.13.0-alpha.0", path = "../tauri-runtime" } tauri-utils = { version = "2.0.0-alpha.0", path = "../tauri-utils" } uuid = { version = "1", features = [ "v4" ] } diff --git a/core/tauri/Cargo.toml b/core/tauri/Cargo.toml index d325b2243780..b8389a55df7a 100644 --- a/core/tauri/Cargo.toml +++ b/core/tauri/Cargo.toml @@ -87,7 +87,7 @@ ico = { version = "0.2.0", optional = true } encoding_rs = "0.8.31" [target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies] -rfd = { git = "https://github.com/PolyMeilex/rfd", version = "0.10", optional = true } +rfd = { version = "0.11.0", optional = true } notify-rust = { version = "4.5", default-features = false, features = [ "d" ], optional = true } [target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies] diff --git a/tooling/cli/Cargo.lock b/tooling/cli/Cargo.lock index bff0f2e3cea1..34a185138310 100644 --- a/tooling/cli/Cargo.lock +++ b/tooling/cli/Cargo.lock @@ -3844,8 +3844,9 @@ dependencies = [ [[package]] name = "tauri-mobile" -version = "0.2.0" -source = "git+https://github.com/tauri-apps/tauri-mobile?branch=dev#01c5f5083760714163e527bf9b8c80157150aed8" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "030f6c282001e94a89a347f4d1684f146091140058b57d0af04862a53694dbe5" dependencies = [ "cocoa", "colored 1.9.3", diff --git a/tooling/cli/Cargo.toml b/tooling/cli/Cargo.toml index 4c75ee57bf4d..9753206456c3 100644 --- a/tooling/cli/Cargo.toml +++ b/tooling/cli/Cargo.toml @@ -39,7 +39,7 @@ name = "cargo-tauri" path = "src/main.rs" [dependencies] -tauri-mobile = { git = "https://github.com/tauri-apps/tauri-mobile", branch = "dev", default-features = false } +tauri-mobile = { version = "0.2", default-features = false } textwrap = { version = "0.11.0", features = [ "term_size" ] } jsonrpsee = { version = "0.16", features = [ "client", "server" ] } thiserror = "1"