From e0eea658f933134682c1c8779ccec4e88547531b Mon Sep 17 00:00:00 2001 From: Leon Matthes Date: Fri, 12 Jul 2024 10:27:18 +0200 Subject: [PATCH] fix: Remove dev-dependencies on cxx-qt-lib This was causing a duplicate build of cxx-qt-lib, which caused the file locking issues we observed in CI. This should also speed up the CI run for cargo_test, as it's not building -lib twice now. However, this doesn't yet solve the inherent issue that Cargo may run build scripts of different configurations in parallel. So this remains a TODO! --- crates/cxx-qt-macro/Cargo.toml | 1 - crates/cxx-qt/Cargo.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/crates/cxx-qt-macro/Cargo.toml b/crates/cxx-qt-macro/Cargo.toml index 7f6531f9d..bddb6a334 100644 --- a/crates/cxx-qt-macro/Cargo.toml +++ b/crates/cxx-qt-macro/Cargo.toml @@ -24,5 +24,4 @@ syn.workspace = true [dev-dependencies] cxx.workspace = true -cxx-qt-lib.workspace = true cxx-qt.workspace = true diff --git a/crates/cxx-qt/Cargo.toml b/crates/cxx-qt/Cargo.toml index b828d3a86..a8455605e 100644 --- a/crates/cxx-qt/Cargo.toml +++ b/crates/cxx-qt/Cargo.toml @@ -28,4 +28,3 @@ qt-build-utils.workspace = true [dev-dependencies] cxx.workspace = true -cxx-qt-lib.workspace = true