From d3539a0dff28354dc5c66d84a8a724947fc013d2 Mon Sep 17 00:00:00 2001 From: Be Wilson Date: Mon, 12 Feb 2024 19:29:10 -0600 Subject: [PATCH] update cc crate to 1.0.86 1.0.86 includes https://github.com/rust-lang/cc-rs/pull/918 and the macOS deployment target issue has been fixed. --- Cargo.toml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fc8949907..397a99d4e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ cxx-qt-lib = { path = "crates/cxx-qt-lib" } cxx-qt-lib-headers = { path = "crates/cxx-qt-lib-headers", version = "0.6.0" } qt-build-utils = { path = "crates/qt-build-utils", version = "0.6.0" } -cc = { version = "1.0.79", features = ["parallel"] } +cc = { version = "1.0.86", features = ["parallel"] } # Ensure that the example comments are kept in sync # ./examples/cargo_without_cmake/Cargo.toml # ./examples/qml_minimal/rust/Cargo.toml @@ -56,8 +56,3 @@ syn = { version = "2.0", features = ["extra-traits", "full"] } quote = "1.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" - -# Use a patched version of cc-rs that respects the rustc wrapper -# This should greatly speed up CI builds! -[patch.crates-io] -cc = { git = "https://github.com/LeonMatthesKDAB/cc-rs.git", branch="respect-rustc-wrapper" }