From 8931bc1cf1b8b885f3d302f5536be430c6b5b425 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Wed, 17 Apr 2024 20:51:25 -0700 Subject: [PATCH] =?UTF-8?q?Disable=20strict=20concurrency=20in=20the=20Ima?= =?UTF-8?q?ges=20module=20due=20to=20warnings=20that=20can=E2=80=99t=20be?= =?UTF-8?q?=20fixed=20right=20now.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Images/Package.swift | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Images/Package.swift b/Images/Package.swift index bdada55ac..17dd61c24 100644 --- a/Images/Package.swift +++ b/Images/Package.swift @@ -22,10 +22,12 @@ let package = Package( "Core", "Articles", "Account" - ], - swiftSettings: [ - .enableExperimentalFeature("StrictConcurrency") ] +// Disabled due to Sendable warnings about RSImage (NSImage). +// TODO: check if Swift 6 will allow us to deal with these warnings. +// swiftSettings: [ +// .enableExperimentalFeature("StrictConcurrency") +// ] ), .testTarget( name: "ImagesTests",