From 22c09871c37765a322788237c913a35cdca4c1a6 Mon Sep 17 00:00:00 2001 From: Lucas Fernandes Nogueira Date: Fri, 17 Mar 2023 13:07:39 -0300 Subject: [PATCH] fix(ios): link clang_rt.ios to include isPlatformVersionAtLeast (#6476) * fix(ios): link clang_rt.ios to include isPlatformVersionAtLeast See https://github.com/alexcrichton/curl-rust/pull/283 * lint [skip ci] * update swift-rs to 1.0.2 --- .github/workflows/test-core.yml | 1 - core/tauri-build/Cargo.toml | 2 +- core/tauri/Cargo.toml | 2 +- examples/api/src-tauri/Cargo.lock | 4 ++-- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test-core.yml b/.github/workflows/test-core.yml index 7dcc5f916be0..7c71ae61e1eb 100644 --- a/.github/workflows/test-core.yml +++ b/.github/workflows/test-core.yml @@ -18,7 +18,6 @@ on: env: RUST_BACKTRACE: 1 CARGO_PROFILE_DEV_DEBUG: 0 # This would add unnecessary bloat to the target folder, decreasing cache efficiency. - IOS_DEPLOYMENT_TARGET: '16.0' concurrency: group: ${{ github.workflow }}-${{ github.ref }} diff --git a/core/tauri-build/Cargo.toml b/core/tauri-build/Cargo.toml index 322d6a5c876a..d071e6a10520 100644 --- a/core/tauri-build/Cargo.toml +++ b/core/tauri-build/Cargo.toml @@ -33,7 +33,7 @@ filetime = "0.2" tauri-winres = "0.1" semver = "1" [target."cfg(target_os = \"macos\")".dependencies] -swift-rs = { version = "1.0.1", features = ["build"] } +swift-rs = { version = "1.0.2", features = ["build"] } [features] codegen = [ "tauri-codegen", "quote" ] diff --git a/core/tauri/Cargo.toml b/core/tauri/Cargo.toml index b446a97e36cf..1aa3682ccd42 100644 --- a/core/tauri/Cargo.toml +++ b/core/tauri/Cargo.toml @@ -116,7 +116,7 @@ jni = "0.20" libc = "0.2" objc = "0.2" cocoa = "0.24" -swift-rs = "1.0.1" +swift-rs = "1.0.2" [build-dependencies] heck = "0.4" diff --git a/examples/api/src-tauri/Cargo.lock b/examples/api/src-tauri/Cargo.lock index 564d07c6549f..21e293fb3675 100644 --- a/examples/api/src-tauri/Cargo.lock +++ b/examples/api/src-tauri/Cargo.lock @@ -2865,9 +2865,9 @@ checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" [[package]] name = "swift-rs" -version = "1.0.1" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "806ff0904302a8a91644422fcfeee4828c3a9dbcfd1757ba495f1a755c2ac873" +checksum = "2706dd533c2a96dfdbe942221fe0d3bb24857257aac26f938537f197c543b27e" dependencies = [ "base64 0.21.0", "serde",