diff --git a/.changes/cargo-mobile-0.21.md b/.changes/cargo-mobile-0.21.md new file mode 100644 index 000000000..17e99609f --- /dev/null +++ b/.changes/cargo-mobile-0.21.md @@ -0,0 +1,6 @@ +--- +'tauri-cli': 'minor:enhance' +'@tauri-apps/cli': minor:enhance +--- + +Update cargo-mobile2 to 0.21, enhancing error messages and opening Xcode when multiple apps are installed. diff --git a/Cargo.lock b/Cargo.lock index 56ec5ecad..16526fe9c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1055,9 +1055,9 @@ dependencies = [ [[package]] name = "cargo-mobile2" -version = "0.20.6" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35613119e2e16b293e56557a27da0d5bc42031f5edc0bf4f73a2b4d310d39c65" +checksum = "7705eddd52bb9e1d1fa94b79c5e869055fdf505a27217574c6ebd4f35389abbe" dependencies = [ "colored", "core-foundation 0.10.0", @@ -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]] @@ -4311,7 +4311,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]] @@ -10315,7 +10315,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]] diff --git a/crates/tauri-cli/Cargo.toml b/crates/tauri-cli/Cargo.toml index b8bf475c4..e854602c7 100644 --- a/crates/tauri-cli/Cargo.toml +++ b/crates/tauri-cli/Cargo.toml @@ -36,7 +36,7 @@ name = "cargo-tauri" path = "src/main.rs" [target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"windows\", target_os = \"macos\"))".dependencies] -cargo-mobile2 = { version = "0.20.6", default-features = false } +cargo-mobile2 = { version = "0.21", default-features = false } [dependencies] jsonrpsee = { version = "0.24", features = ["server"] }