From 4475fbb502c5ffb3cea4de6bef1c7869be39bed6 Mon Sep 17 00:00:00 2001 From: Lucas Fernandes Nogueira Date: Thu, 3 Oct 2024 13:46:49 -0300 Subject: [PATCH] chore(cli): update cargo-mobile2 to adjust lib name validation (#11208) --- .changes/update-cargo-mobile2.md | 6 ++++++ Cargo.lock | 4 ++-- crates/tauri-cli/Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 .changes/update-cargo-mobile2.md diff --git a/.changes/update-cargo-mobile2.md b/.changes/update-cargo-mobile2.md new file mode 100644 index 000000000..ec54c8306 --- /dev/null +++ b/.changes/update-cargo-mobile2.md @@ -0,0 +1,6 @@ +--- +"tauri-cli": patch:changes +"@tauri-apps/cli": patch:changes +--- + +Update cargo-mobile2 to 0.17.3, fixing lib name validation. diff --git a/Cargo.lock b/Cargo.lock index 3628a004d..beaee52d0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1473,9 +1473,9 @@ dependencies = [ [[package]] name = "cargo-mobile2" -version = "0.17.2" +version = "0.17.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4200047e17fd50597ae9ee15657b0c53105394f95d3a1aa82148dba35acb412" +checksum = "5c8052fc43184dc6c572437c2f8dae83e4ca9a5b27c790e269b90b080c1b9301" dependencies = [ "colored", "core-foundation 0.10.0", diff --git a/crates/tauri-cli/Cargo.toml b/crates/tauri-cli/Cargo.toml index 71afe3b79..96736e985 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.17.2", default-features = false } +cargo-mobile2 = { version = "0.17.3", default-features = false } [dependencies] jsonrpsee = { version = "0.24.5", features = ["server"] }