Browse Source

chore: update rfd and wry versions (#6174)

Co-authored-by: Wu Yu Wei <wusyong9104@gmail.com>
Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
Ngo Iok Ui (Wu Yu Wei) 2 years ago
parent
commit
f0a1d9cdbc

+ 6 - 0
.changes/rfd101.md

@@ -0,0 +1,6 @@
+---
+"tauri": minor
+---
+
+Update rfd to 0.11.
+

+ 6 - 0
.changes/wry26.md

@@ -0,0 +1,6 @@
+---
+"tauri-runtime-wry": minor
+---
+
+Update wry to 0.26.
+

+ 1 - 1
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" ] }

+ 1 - 1
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]

+ 3 - 2
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",

+ 1 - 1
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"