Disable strict concurrency in the Images module due to warnings that can’t be fixed right now.

This commit is contained in:
Brent Simmons 2024-04-17 20:51:25 -07:00
parent 280a59ffa3
commit 8931bc1cf1
1 changed files with 5 additions and 3 deletions

View File

@ -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",