The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of Swim, reference 3.9.0 (e8e3dc), with Swift 6.0 for macOS (SPM) on 1 Nov 2024 06:56:20 UTC.

Swift 6 data race errors: 13

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

 11 |
    :
 19 |
 20 |     public static let noFlags = vImageProcessingFlag(rawValue: kvImageNoFlags)
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
    |                       |- warning: static property 'leaveAlphaUnchanged' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'leaveAlphaUnchanged' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:22:23: warning: static property 'doNotTile' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 20 |     public static let noFlags = vImageProcessingFlag(rawValue: kvImageNoFlags)
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
    |                       |- warning: static property 'doNotTile' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'doNotTile' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:23:23: warning: static property 'highQualityResampling' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
    |                       |- warning: static property 'highQualityResampling' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'highQualityResampling' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:24:23: warning: static property 'getTempBufferSize' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
    |                       |- warning: static property 'getTempBufferSize' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'getTempBufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:25:23: warning: static property 'printDiagnosticsToConsole' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
    |                       |- warning: static property 'printDiagnosticsToConsole' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'printDiagnosticsToConsole' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:26:23: warning: static property 'noAllocate' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
    |                       |- warning: static property 'noAllocate' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'noAllocate' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:27:23: warning: static property 'doNotClamp' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
    |                       |- warning: static property 'doNotClamp' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'doNotClamp' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:28:23: warning: static property 'copyInPlace' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
    |                       |- warning: static property 'copyInPlace' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'copyInPlace' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:29:23: warning: static property 'backgroundColorFill' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
    |                       |- warning: static property 'backgroundColorFill' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'backgroundColorFill' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
 31 |     public static let truncateKernel = vImageProcessingFlag(rawValue: kvImageTruncateKernel)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:30:23: warning: static property 'edgeExtend' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
    |                       |- warning: static property 'edgeExtend' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'edgeExtend' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |     public static let truncateKernel = vImageProcessingFlag(rawValue: kvImageTruncateKernel)
 32 |
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:31:23: warning: static property 'truncateKernel' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
 31 |     public static let truncateKernel = vImageProcessingFlag(rawValue: kvImageTruncateKernel)
    |                       |- warning: static property 'truncateKernel' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'truncateKernel' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     @available(iOS 9.0, *)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:35:23: warning: static property 'hdrContent' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 33 |     @available(iOS 9.0, *)
 34 |     @available(OSX 10.11, *)
 35 |     public static let hdrContent = vImageProcessingFlag(rawValue: kvImageHDRContent)
    |                       |- warning: static property 'hdrContent' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'hdrContent' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 | }
 37 |
[19/103] Compiling Swim ChannelSubscript.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:20:23: warning: static property 'noFlags' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 18 |     }
 19 |
 20 |     public static let noFlags = vImageProcessingFlag(rawValue: kvImageNoFlags)
    |                       |- warning: static property 'noFlags' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'noFlags' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:21:23: warning: static property 'leaveAlphaUnchanged' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 19 |
 20 |     public static let noFlags = vImageProcessingFlag(rawValue: kvImageNoFlags)
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
    |                       |- warning: static property 'leaveAlphaUnchanged' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'leaveAlphaUnchanged' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:22:23: warning: static property 'doNotTile' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 20 |     public static let noFlags = vImageProcessingFlag(rawValue: kvImageNoFlags)
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
    |                       |- warning: static property 'doNotTile' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'doNotTile' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:23:23: warning: static property 'highQualityResampling' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
    |                       |- warning: static property 'highQualityResampling' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'highQualityResampling' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:24:23: warning: static property 'getTempBufferSize' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
    |                       |- warning: static property 'getTempBufferSize' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'getTempBufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:25:23: warning: static property 'printDiagnosticsToConsole' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
    |                       |- warning: static property 'printDiagnosticsToConsole' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'printDiagnosticsToConsole' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:26:23: warning: static property 'noAllocate' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
    |                       |- warning: static property 'noAllocate' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'noAllocate' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:27:23: warning: static property 'doNotClamp' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
    |                       |- warning: static property 'doNotClamp' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'doNotClamp' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:28:23: warning: static property 'copyInPlace' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
    |                       |- warning: static property 'copyInPlace' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'copyInPlace' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:29:23: warning: static property 'backgroundColorFill' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
    |                       |- warning: static property 'backgroundColorFill' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'backgroundColorFill' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
 31 |     public static let truncateKernel = vImageProcessingFlag(rawValue: kvImageTruncateKernel)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:30:23: warning: static property 'edgeExtend' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
    |                       |- warning: static property 'edgeExtend' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'edgeExtend' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |     public static let truncateKernel = vImageProcessingFlag(rawValue: kvImageTruncateKernel)
 32 |
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:31:23: warning: static property 'truncateKernel' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
 31 |     public static let truncateKernel = vImageProcessingFlag(rawValue: kvImageTruncateKernel)
    |                       |- warning: static property 'truncateKernel' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'truncateKernel' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     @available(iOS 9.0, *)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:35:23: warning: static property 'hdrContent' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 33 |     @available(iOS 9.0, *)
 34 |     @available(OSX 10.11, *)
 35 |     public static let hdrContent = vImageProcessingFlag(rawValue: kvImageHDRContent)
    |                       |- warning: static property 'hdrContent' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'hdrContent' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 | }
 37 |
[20/103] Compiling Swim PixelSubscript.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:20:23: warning: static property 'noFlags' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 18 |     }
 19 |
 20 |     public static let noFlags = vImageProcessingFlag(rawValue: kvImageNoFlags)
    |                       |- warning: static property 'noFlags' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'noFlags' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:21:23: warning: static property 'leaveAlphaUnchanged' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 19 |
 20 |     public static let noFlags = vImageProcessingFlag(rawValue: kvImageNoFlags)
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
    |                       |- warning: static property 'leaveAlphaUnchanged' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'leaveAlphaUnchanged' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:22:23: warning: static property 'doNotTile' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 20 |     public static let noFlags = vImageProcessingFlag(rawValue: kvImageNoFlags)
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
    |                       |- warning: static property 'doNotTile' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'doNotTile' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:23:23: warning: static property 'highQualityResampling' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
    |                       |- warning: static property 'highQualityResampling' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'highQualityResampling' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:24:23: warning: static property 'getTempBufferSize' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
    |                       |- warning: static property 'getTempBufferSize' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'getTempBufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:25:23: warning: static property 'printDiagnosticsToConsole' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
    |                       |- warning: static property 'printDiagnosticsToConsole' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'printDiagnosticsToConsole' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:26:23: warning: static property 'noAllocate' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
    |                       |- warning: static property 'noAllocate' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'noAllocate' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:27:23: warning: static property 'doNotClamp' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
    |                       |- warning: static property 'doNotClamp' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'doNotClamp' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:28:23: warning: static property 'copyInPlace' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
    |                       |- warning: static property 'copyInPlace' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'copyInPlace' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:29:23: warning: static property 'backgroundColorFill' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
    |                       |- warning: static property 'backgroundColorFill' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'backgroundColorFill' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
 31 |     public static let truncateKernel = vImageProcessingFlag(rawValue: kvImageTruncateKernel)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:30:23: warning: static property 'edgeExtend' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
    |                       |- warning: static property 'edgeExtend' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'edgeExtend' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |     public static let truncateKernel = vImageProcessingFlag(rawValue: kvImageTruncateKernel)
 32 |
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:31:23: warning: static property 'truncateKernel' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
 31 |     public static let truncateKernel = vImageProcessingFlag(rawValue: kvImageTruncateKernel)
    |                       |- warning: static property 'truncateKernel' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'truncateKernel' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     @available(iOS 9.0, *)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:35:23: warning: static property 'hdrContent' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 33 |     @available(iOS 9.0, *)
 34 |     @available(OSX 10.11, *)
 35 |     public static let hdrContent = vImageProcessingFlag(rawValue: kvImageHDRContent)
    |                       |- warning: static property 'hdrContent' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'hdrContent' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 | }
 37 |
[21/103] Compiling Swim SubimageSubscript.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:20:23: warning: static property 'noFlags' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 18 |     }
 19 |
 20 |     public static let noFlags = vImageProcessingFlag(rawValue: kvImageNoFlags)
    |                       |- warning: static property 'noFlags' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'noFlags' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:21:23: warning: static property 'leaveAlphaUnchanged' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 19 |
 20 |     public static let noFlags = vImageProcessingFlag(rawValue: kvImageNoFlags)
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
    |                       |- warning: static property 'leaveAlphaUnchanged' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'leaveAlphaUnchanged' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:22:23: warning: static property 'doNotTile' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 20 |     public static let noFlags = vImageProcessingFlag(rawValue: kvImageNoFlags)
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
    |                       |- warning: static property 'doNotTile' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'doNotTile' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:23:23: warning: static property 'highQualityResampling' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
    |                       |- warning: static property 'highQualityResampling' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'highQualityResampling' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:24:23: warning: static property 'getTempBufferSize' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
    |                       |- warning: static property 'getTempBufferSize' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'getTempBufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:25:23: warning: static property 'printDiagnosticsToConsole' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
    |                       |- warning: static property 'printDiagnosticsToConsole' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'printDiagnosticsToConsole' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:26:23: warning: static property 'noAllocate' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
    |                       |- warning: static property 'noAllocate' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'noAllocate' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:27:23: warning: static property 'doNotClamp' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
    |                       |- warning: static property 'doNotClamp' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'doNotClamp' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:28:23: warning: static property 'copyInPlace' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
    |                       |- warning: static property 'copyInPlace' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'copyInPlace' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:29:23: warning: static property 'backgroundColorFill' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
    |                       |- warning: static property 'backgroundColorFill' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'backgroundColorFill' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
 31 |     public static let truncateKernel = vImageProcessingFlag(rawValue: kvImageTruncateKernel)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:30:23: warning: static property 'edgeExtend' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
    |                       |- warning: static property 'edgeExtend' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'edgeExtend' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |     public static let truncateKernel = vImageProcessingFlag(rawValue: kvImageTruncateKernel)
 32 |
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:31:23: warning: static property 'truncateKernel' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
 31 |     public static let truncateKernel = vImageProcessingFlag(rawValue: kvImageTruncateKernel)
    |                       |- warning: static property 'truncateKernel' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'truncateKernel' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     @available(iOS 9.0, *)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:35:23: warning: static property 'hdrContent' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 33 |     @available(iOS 9.0, *)
 34 |     @available(OSX 10.11, *)
 35 |     public static let hdrContent = vImageProcessingFlag(rawValue: kvImageHDRContent)
    |                       |- warning: static property 'hdrContent' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'hdrContent' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 | }
 37 |
[22/103] Compiling Swim Concatenation.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:20:23: warning: static property 'noFlags' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 18 |     }
 19 |
 20 |     public static let noFlags = vImageProcessingFlag(rawValue: kvImageNoFlags)
    |                       |- warning: static property 'noFlags' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'noFlags' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:21:23: warning: static property 'leaveAlphaUnchanged' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 19 |
 20 |     public static let noFlags = vImageProcessingFlag(rawValue: kvImageNoFlags)
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
    |                       |- warning: static property 'leaveAlphaUnchanged' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'leaveAlphaUnchanged' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:22:23: warning: static property 'doNotTile' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 20 |     public static let noFlags = vImageProcessingFlag(rawValue: kvImageNoFlags)
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
    |                       |- warning: static property 'doNotTile' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'doNotTile' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:23:23: warning: static property 'highQualityResampling' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
    |                       |- warning: static property 'highQualityResampling' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'highQualityResampling' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:24:23: warning: static property 'getTempBufferSize' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
    |                       |- warning: static property 'getTempBufferSize' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'getTempBufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:25:23: warning: static property 'printDiagnosticsToConsole' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
    |                       |- warning: static property 'printDiagnosticsToConsole' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'printDiagnosticsToConsole' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:26:23: warning: static property 'noAllocate' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
    |                       |- warning: static property 'noAllocate' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'noAllocate' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:27:23: warning: static property 'doNotClamp' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
    |                       |- warning: static property 'doNotClamp' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'doNotClamp' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:28:23: warning: static property 'copyInPlace' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
    |                       |- warning: static property 'copyInPlace' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'copyInPlace' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:29:23: warning: static property 'backgroundColorFill' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
    |                       |- warning: static property 'backgroundColorFill' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'backgroundColorFill' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
 31 |     public static let truncateKernel = vImageProcessingFlag(rawValue: kvImageTruncateKernel)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:30:23: warning: static property 'edgeExtend' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
    |                       |- warning: static property 'edgeExtend' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'edgeExtend' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |     public static let truncateKernel = vImageProcessingFlag(rawValue: kvImageTruncateKernel)
 32 |
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:31:23: warning: static property 'truncateKernel' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
 31 |     public static let truncateKernel = vImageProcessingFlag(rawValue: kvImageTruncateKernel)
    |                       |- warning: static property 'truncateKernel' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'truncateKernel' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     @available(iOS 9.0, *)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:35:23: warning: static property 'hdrContent' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 33 |     @available(iOS 9.0, *)
 34 |     @available(OSX 10.11, *)
 35 |     public static let hdrContent = vImageProcessingFlag(rawValue: kvImageHDRContent)
    |                       |- warning: static property 'hdrContent' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'hdrContent' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 | }
 37 |
[23/103] Compiling Swim EdgeMode.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:20:23: warning: static property 'noFlags' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 18 |     }
 19 |
 20 |     public static let noFlags = vImageProcessingFlag(rawValue: kvImageNoFlags)
    |                       |- warning: static property 'noFlags' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'noFlags' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:21:23: warning: static property 'leaveAlphaUnchanged' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 19 |
 20 |     public static let noFlags = vImageProcessingFlag(rawValue: kvImageNoFlags)
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
    |                       |- warning: static property 'leaveAlphaUnchanged' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'leaveAlphaUnchanged' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:22:23: warning: static property 'doNotTile' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 20 |     public static let noFlags = vImageProcessingFlag(rawValue: kvImageNoFlags)
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
    |                       |- warning: static property 'doNotTile' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'doNotTile' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:23:23: warning: static property 'highQualityResampling' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
    |                       |- warning: static property 'highQualityResampling' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'highQualityResampling' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:24:23: warning: static property 'getTempBufferSize' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
    |                       |- warning: static property 'getTempBufferSize' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'getTempBufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:25:23: warning: static property 'printDiagnosticsToConsole' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
    |                       |- warning: static property 'printDiagnosticsToConsole' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'printDiagnosticsToConsole' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:26:23: warning: static property 'noAllocate' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
    |                       |- warning: static property 'noAllocate' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'noAllocate' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:27:23: warning: static property 'doNotClamp' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
    |                       |- warning: static property 'doNotClamp' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'doNotClamp' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:28:23: warning: static property 'copyInPlace' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
    |                       |- warning: static property 'copyInPlace' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'copyInPlace' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:29:23: warning: static property 'backgroundColorFill' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
    |                       |- warning: static property 'backgroundColorFill' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'backgroundColorFill' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
 31 |     public static let truncateKernel = vImageProcessingFlag(rawValue: kvImageTruncateKernel)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:30:23: warning: static property 'edgeExtend' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
    |                       |- warning: static property 'edgeExtend' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'edgeExtend' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |     public static let truncateKernel = vImageProcessingFlag(rawValue: kvImageTruncateKernel)
 32 |
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:31:23: warning: static property 'truncateKernel' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
 31 |     public static let truncateKernel = vImageProcessingFlag(rawValue: kvImageTruncateKernel)
    |                       |- warning: static property 'truncateKernel' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'truncateKernel' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     @available(iOS 9.0, *)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:35:23: warning: static property 'hdrContent' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 33 |     @available(iOS 9.0, *)
 34 |     @available(OSX 10.11, *)
 35 |     public static let hdrContent = vImageProcessingFlag(rawValue: kvImageHDRContent)
    |                       |- warning: static property 'hdrContent' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'hdrContent' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 | }
 37 |
[24/103] Compiling Swim Flip.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:20:23: warning: static property 'noFlags' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 18 |     }
 19 |
 20 |     public static let noFlags = vImageProcessingFlag(rawValue: kvImageNoFlags)
    |                       |- warning: static property 'noFlags' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'noFlags' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:21:23: warning: static property 'leaveAlphaUnchanged' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 19 |
 20 |     public static let noFlags = vImageProcessingFlag(rawValue: kvImageNoFlags)
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
    |                       |- warning: static property 'leaveAlphaUnchanged' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'leaveAlphaUnchanged' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:22:23: warning: static property 'doNotTile' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 20 |     public static let noFlags = vImageProcessingFlag(rawValue: kvImageNoFlags)
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
    |                       |- warning: static property 'doNotTile' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'doNotTile' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:23:23: warning: static property 'highQualityResampling' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
    |                       |- warning: static property 'highQualityResampling' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'highQualityResampling' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:24:23: warning: static property 'getTempBufferSize' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
    |                       |- warning: static property 'getTempBufferSize' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'getTempBufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:25:23: warning: static property 'printDiagnosticsToConsole' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
    |                       |- warning: static property 'printDiagnosticsToConsole' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'printDiagnosticsToConsole' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:26:23: warning: static property 'noAllocate' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
    |                       |- warning: static property 'noAllocate' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'noAllocate' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:27:23: warning: static property 'doNotClamp' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
    |                       |- warning: static property 'doNotClamp' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'doNotClamp' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:28:23: warning: static property 'copyInPlace' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
    |                       |- warning: static property 'copyInPlace' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'copyInPlace' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:29:23: warning: static property 'backgroundColorFill' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
    |                       |- warning: static property 'backgroundColorFill' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'backgroundColorFill' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
 31 |     public static let truncateKernel = vImageProcessingFlag(rawValue: kvImageTruncateKernel)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:30:23: warning: static property 'edgeExtend' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
    |                       |- warning: static property 'edgeExtend' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'edgeExtend' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |     public static let truncateKernel = vImageProcessingFlag(rawValue: kvImageTruncateKernel)
 32 |
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:31:23: warning: static property 'truncateKernel' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
 31 |     public static let truncateKernel = vImageProcessingFlag(rawValue: kvImageTruncateKernel)
    |                       |- warning: static property 'truncateKernel' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'truncateKernel' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     @available(iOS 9.0, *)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:35:23: warning: static property 'hdrContent' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 33 |     @available(iOS 9.0, *)
 34 |     @available(OSX 10.11, *)
 35 |     public static let hdrContent = vImageProcessingFlag(rawValue: kvImageHDRContent)
    |                       |- warning: static property 'hdrContent' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'hdrContent' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 | }
 37 |
[25/103] Compiling Swim AffineTransformation.swift
[26/103] Compiling Swim HomogeneousTransformationMatrix.swift
[27/103] Compiling Swim ProjectiveTransformation.swift
[28/103] Compiling Swim Padding.swift
[29/103] Compiling Swim Repeat.swift
[30/103] Compiling Swim Resize.swift
[31/103] Compiling Swim Rotate.swift
[32/103] Compiling Swim Shift.swift
[33/103] Compiling Swim Transpose.swift
[34/103] Compiling Swim Bayer.swift
[35/103] Compiling Swim FourierTransformer.swift
[36/103] Compiling Swim Histograms.swift
[37/103] Compiling Swim Im2col.swift
[38/103] Compiling Swim ImageCompare.swift
[39/103] Compiling Swim IntegralImage.swift
[40/103] Compiling Swim Skeletonizer.swift
[41/103] Compiling Swim ColorAndColor.swift
[42/103] Compiling Swim ColorAndScalar.swift
[43/103] Compiling Swim ColorUnary.swift
[44/103] Compiling Swim ReadImageData.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:14:47: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 12 |
 13 |     let code = image.data.withUnsafeBufferPointer {
 14 |         write_image_png_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                               `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 15 |     }
 16 |
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:36:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 34 |     case .bitmap:
 35 |         code = image.data.withUnsafeBufferPointer {
 36 |             write_image_bmp_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 37 |         }
 38 |     case let .jpeg(quality):
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:43:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 41 |         }
 42 |         code = image.data.withUnsafeBufferPointer {
 43 |             write_image_jpg_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!, Int32(quality))
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 44 |         }
 45 |     case .png:
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:47:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 45 |     case .png:
 46 |         code = image.data.withUnsafeBufferPointer {
 47 |             write_image_png_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 48 |         }
 49 |     }
[45/103] Compiling Swim ReadImageFile.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:14:47: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 12 |
 13 |     let code = image.data.withUnsafeBufferPointer {
 14 |         write_image_png_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                               `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 15 |     }
 16 |
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:36:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 34 |     case .bitmap:
 35 |         code = image.data.withUnsafeBufferPointer {
 36 |             write_image_bmp_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 37 |         }
 38 |     case let .jpeg(quality):
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:43:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 41 |         }
 42 |         code = image.data.withUnsafeBufferPointer {
 43 |             write_image_jpg_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!, Int32(quality))
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 44 |         }
 45 |     case .png:
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:47:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 45 |     case .png:
 46 |         code = image.data.withUnsafeBufferPointer {
 47 |             write_image_png_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 48 |         }
 49 |     }
[46/103] Compiling Swim STBImageData.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:14:47: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 12 |
 13 |     let code = image.data.withUnsafeBufferPointer {
 14 |         write_image_png_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                               `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 15 |     }
 16 |
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:36:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 34 |     case .bitmap:
 35 |         code = image.data.withUnsafeBufferPointer {
 36 |             write_image_bmp_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 37 |         }
 38 |     case let .jpeg(quality):
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:43:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 41 |         }
 42 |         code = image.data.withUnsafeBufferPointer {
 43 |             write_image_jpg_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!, Int32(quality))
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 44 |         }
 45 |     case .png:
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:47:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 45 |     case .png:
 46 |         code = image.data.withUnsafeBufferPointer {
 47 |             write_image_png_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 48 |         }
 49 |     }
[47/103] Compiling Swim WriteImageData.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:14:47: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 12 |
 13 |     let code = image.data.withUnsafeBufferPointer {
 14 |         write_image_png_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                               `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 15 |     }
 16 |
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:36:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 34 |     case .bitmap:
 35 |         code = image.data.withUnsafeBufferPointer {
 36 |             write_image_bmp_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 37 |         }
 38 |     case let .jpeg(quality):
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:43:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 41 |         }
 42 |         code = image.data.withUnsafeBufferPointer {
 43 |             write_image_jpg_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!, Int32(quality))
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 44 |         }
 45 |     case .png:
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:47:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 45 |     case .png:
 46 |         code = image.data.withUnsafeBufferPointer {
 47 |             write_image_png_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 48 |         }
 49 |     }
[48/103] Compiling Swim WriteImageFile.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:14:47: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 12 |
 13 |     let code = image.data.withUnsafeBufferPointer {
 14 |         write_image_png_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                               `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 15 |     }
 16 |
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:36:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 34 |     case .bitmap:
 35 |         code = image.data.withUnsafeBufferPointer {
 36 |             write_image_bmp_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 37 |         }
 38 |     case let .jpeg(quality):
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:43:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 41 |         }
 42 |         code = image.data.withUnsafeBufferPointer {
 43 |             write_image_jpg_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!, Int32(quality))
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 44 |         }
 45 |     case .png:
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:47:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 45 |     case .png:
 46 |         code = image.data.withUnsafeBufferPointer {
 47 |             write_image_png_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 48 |         }
 49 |     }
[49/103] Compiling Swim BicubicInterpolator.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:14:47: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 12 |
 13 |     let code = image.data.withUnsafeBufferPointer {
 14 |         write_image_png_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                               `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 15 |     }
 16 |
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:36:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 34 |     case .bitmap:
 35 |         code = image.data.withUnsafeBufferPointer {
 36 |             write_image_bmp_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 37 |         }
 38 |     case let .jpeg(quality):
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:43:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 41 |         }
 42 |         code = image.data.withUnsafeBufferPointer {
 43 |             write_image_jpg_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!, Int32(quality))
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 44 |         }
 45 |     case .png:
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:47:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 45 |     case .png:
 46 |         code = image.data.withUnsafeBufferPointer {
 47 |             write_image_png_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 48 |         }
 49 |     }
[50/103] Compiling Swim BilinearInterpolator.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:14:47: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 12 |
 13 |     let code = image.data.withUnsafeBufferPointer {
 14 |         write_image_png_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                               `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 15 |     }
 16 |
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:36:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 34 |     case .bitmap:
 35 |         code = image.data.withUnsafeBufferPointer {
 36 |             write_image_bmp_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 37 |         }
 38 |     case let .jpeg(quality):
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:43:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 41 |         }
 42 |         code = image.data.withUnsafeBufferPointer {
 43 |             write_image_jpg_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!, Int32(quality))
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 44 |         }
 45 |     case .png:
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:47:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 45 |     case .png:
 46 |         code = image.data.withUnsafeBufferPointer {
 47 |             write_image_png_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 48 |         }
 49 |     }
[51/103] Compiling Swim Interpolator.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:14:47: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 12 |
 13 |     let code = image.data.withUnsafeBufferPointer {
 14 |         write_image_png_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                               `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 15 |     }
 16 |
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:36:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 34 |     case .bitmap:
 35 |         code = image.data.withUnsafeBufferPointer {
 36 |             write_image_bmp_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 37 |         }
 38 |     case let .jpeg(quality):
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:43:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 41 |         }
 42 |         code = image.data.withUnsafeBufferPointer {
 43 |             write_image_jpg_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!, Int32(quality))
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 44 |         }
 45 |     case .png:
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:47:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 45 |     case .png:
 46 |         code = image.data.withUnsafeBufferPointer {
 47 |             write_image_png_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 48 |         }
 49 |     }
[52/103] Compiling Swim Interpolator4x4.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:14:47: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 12 |
 13 |     let code = image.data.withUnsafeBufferPointer {
 14 |         write_image_png_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                               `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 15 |     }
 16 |
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:36:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 34 |     case .bitmap:
 35 |         code = image.data.withUnsafeBufferPointer {
 36 |             write_image_bmp_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 37 |         }
 38 |     case let .jpeg(quality):
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:43:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 41 |         }
 42 |         code = image.data.withUnsafeBufferPointer {
 43 |             write_image_jpg_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!, Int32(quality))
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 44 |         }
 45 |     case .png:
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:47:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 45 |     case .png:
 46 |         code = image.data.withUnsafeBufferPointer {
 47 |             write_image_png_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 48 |         }
 49 |     }
[53/103] Compiling Swim LanczosInterpolator.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:14:47: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 12 |
 13 |     let code = image.data.withUnsafeBufferPointer {
 14 |         write_image_png_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                               `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 15 |     }
 16 |
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:36:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 34 |     case .bitmap:
 35 |         code = image.data.withUnsafeBufferPointer {
 36 |             write_image_bmp_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 37 |         }
 38 |     case let .jpeg(quality):
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:43:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 41 |         }
 42 |         code = image.data.withUnsafeBufferPointer {
 43 |             write_image_jpg_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!, Int32(quality))
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 44 |         }
 45 |     case .png:
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:47:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 45 |     case .png:
 46 |         code = image.data.withUnsafeBufferPointer {
 47 |             write_image_png_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 48 |         }
 49 |     }
[54/103] Compiling Swim ImageAndColor.swift
[55/103] Compiling Swim ImageAndImage.swift
[56/103] Compiling Swim ImageAndScalar.swift
[57/103] Compiling Swim ImageUnary.swift
[58/103] Compiling Swim PixelRefAndColor.swift
[59/103] Compiling Swim PixelRefAndScalar.swift
[60/103] Compiling Swim Blender.swift
[61/103] Compiling Swim BitOperations.swift
[62/103] Compiling Swim CheckBool.swift
[63/103] Compiling Swim ChannelComposition.swift
[64/103] Compiling Swim DrawLine.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h: 0:
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h: 0:[65/103] Compiling Swim DrawPixel.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h: 0:
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h: 0:[66/103] Compiling Swim DrawPolygon.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h: 0:
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h: 0:[67/103] Compiling Swim DrawRect.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h: 0:
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h: 0:[68/103] Compiling Swim DrawText.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h: 0:
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h: 0:[69/103] Compiling Swim BilateralFilter.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h: 0:
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h: 0:[70/103] Compiling Swim Convolution.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h: 0:
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h: 0:[71/103] Compiling Swim NonLocalMeanFilter.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h: 0:
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h: 0:[72/103] Compiling Swim RankFilter.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h: 0:
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h: 0:[73/103] Compiling Swim IOError.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h: 0:
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CStbImage/include/CStbImage.h: 0:[74/103] Compiling Swim Warp.swift
[75/103] Compiling Swim Clamp.swift
[76/103] Compiling Swim Complex.swift
[77/103] Compiling Swim ConvertUInt8FP.swift
[78/103] Compiling Swim Copy.swift
[79/103] Compiling Swim Interleave.swift
[80/103] Compiling Swim IsPOT.swift
[81/103] Compiling Swim Matrix.swift
[82/103] Compiling Swim Rect.swift
[83/103] Compiling Swim Image.swift
[84/103] Compiling Swim ImageInitializers.swift
[85/103] Compiling Swim LikeInitializer.swift
[86/103] Compiling Swim UninitializedCreation.swift
[87/103] Compiling Swim Pixel.swift
[88/103] Compiling Swim PixelIterator.swift
[89/103] Compiling Swim UnsafePixelRef.swift
[90/103] Compiling Swim PixelType.swift
[91/103] Compiling Swim DrawCircle.swift
[92/103] Compiling Swim DrawImage.swift
[93/103] Compiling Swim NearestNeighborInterpolator.swift
[94/103] Compiling Swim Abs.swift
[95/103] Compiling Swim Clip.swift
[96/103] Compiling Swim Power.swift
[97/103] Compiling Swim Rounding.swift
[98/103] Compiling Swim AppKit.swift
[99/103] Compiling Swim CoreGraphics.swift
[100/103] Compiling Swim S4TF.swift
[101/103] Compiling Swim UIKit.swift
[102/103] Compiling Swim vImageAlphaBlend.swift
[103/103] Emitting module Swim
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:20:23: warning: static property 'noFlags' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 18 |     }
 19 |
 20 |     public static let noFlags = vImageProcessingFlag(rawValue: kvImageNoFlags)
    |                       |- warning: static property 'noFlags' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'noFlags' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:21:23: warning: static property 'leaveAlphaUnchanged' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 19 |
 20 |     public static let noFlags = vImageProcessingFlag(rawValue: kvImageNoFlags)
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
    |                       |- warning: static property 'leaveAlphaUnchanged' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'leaveAlphaUnchanged' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:22:23: warning: static property 'doNotTile' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 20 |     public static let noFlags = vImageProcessingFlag(rawValue: kvImageNoFlags)
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
    |                       |- warning: static property 'doNotTile' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'doNotTile' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:23:23: warning: static property 'highQualityResampling' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 21 |     public static let leaveAlphaUnchanged = vImageProcessingFlag(rawValue: kvImageLeaveAlphaUnchanged)
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
    |                       |- warning: static property 'highQualityResampling' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'highQualityResampling' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:24:23: warning: static property 'getTempBufferSize' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 22 |     public static let doNotTile = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
    |                       |- warning: static property 'getTempBufferSize' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'getTempBufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:25:23: warning: static property 'printDiagnosticsToConsole' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 23 |     public static let highQualityResampling = vImageProcessingFlag(rawValue: kvImageHighQualityResampling)
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
    |                       |- warning: static property 'printDiagnosticsToConsole' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'printDiagnosticsToConsole' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:26:23: warning: static property 'noAllocate' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 24 |     public static let getTempBufferSize = vImageProcessingFlag(rawValue: kvImageGetTempBufferSize)
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
    |                       |- warning: static property 'noAllocate' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'noAllocate' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:27:23: warning: static property 'doNotClamp' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 25 |     public static let printDiagnosticsToConsole = vImageProcessingFlag(rawValue: kvImagePrintDiagnosticsToConsole)
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
    |                       |- warning: static property 'doNotClamp' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'doNotClamp' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:28:23: warning: static property 'copyInPlace' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 26 |     public static let noAllocate = vImageProcessingFlag(rawValue: kvImageNoAllocate)
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
    |                       |- warning: static property 'copyInPlace' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'copyInPlace' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:29:23: warning: static property 'backgroundColorFill' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 27 |     public static let doNotClamp = vImageProcessingFlag(rawValue: kvImageDoNotTile)
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
    |                       |- warning: static property 'backgroundColorFill' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'backgroundColorFill' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
 31 |     public static let truncateKernel = vImageProcessingFlag(rawValue: kvImageTruncateKernel)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:30:23: warning: static property 'edgeExtend' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 28 |     public static let copyInPlace = vImageProcessingFlag(rawValue: kvImageCopyInPlace)
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
    |                       |- warning: static property 'edgeExtend' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'edgeExtend' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |     public static let truncateKernel = vImageProcessingFlag(rawValue: kvImageTruncateKernel)
 32 |
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:31:23: warning: static property 'truncateKernel' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 29 |     public static let backgroundColorFill = vImageProcessingFlag(rawValue: kvImageBackgroundColorFill)
 30 |     public static let edgeExtend = vImageProcessingFlag(rawValue: kvImageEdgeExtend)
 31 |     public static let truncateKernel = vImageProcessingFlag(rawValue: kvImageTruncateKernel)
    |                       |- warning: static property 'truncateKernel' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'truncateKernel' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     @available(iOS 9.0, *)
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Platform/vImage/vImageUtils.swift:35:23: warning: static property 'hdrContent' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | // MARK: - Processing Flags
  9 | public struct vImageProcessingFlag: OptionSet {
    |               `- note: consider making struct 'vImageProcessingFlag' conform to the 'Sendable' protocol
 10 |     public let rawValue: Int
 11 |
    :
 33 |     @available(iOS 9.0, *)
 34 |     @available(OSX 10.11, *)
 35 |     public static let hdrContent = vImageProcessingFlag(rawValue: kvImageHDRContent)
    |                       |- warning: static property 'hdrContent' is not concurrency-safe because non-'Sendable' type 'vImageProcessingFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'hdrContent' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 | }
 37 |
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:14:47: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 12 |
 13 |     let code = image.data.withUnsafeBufferPointer {
 14 |         write_image_png_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                               `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 15 |     }
 16 |
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:36:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 34 |     case .bitmap:
 35 |         code = image.data.withUnsafeBufferPointer {
 36 |             write_image_bmp_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 37 |         }
 38 |     case let .jpeg(quality):
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:43:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 41 |         }
 42 |         code = image.data.withUnsafeBufferPointer {
 43 |             write_image_jpg_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!, Int32(quality))
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 44 |         }
 45 |     case .png:
/Users/admin/builder/spi-builder-workspace/Sources/Swim/IO/WriteImageData.swift:47:51: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 45 |     case .png:
 46 |         code = image.data.withUnsafeBufferPointer {
 47 |             write_image_png_to_func(storeContent, &content, width, height, bpp, $0.baseAddress!)
    |                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Data'; this is likely incorrect because 'Data' may contain an object reference.
 48 |         }
 49 |     }
Build complete! (18.35s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Swim",
  "name" : "Swim",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.13"
    }
  ],
  "products" : [
    {
      "name" : "Swim",
      "targets" : [
        "Swim"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "VisualTests",
      "module_type" : "SwiftTarget",
      "name" : "VisualTests",
      "path" : "Tests/VisualTests",
      "sources" : [
        "ApplicationVisualTests.swift",
        "BayerVisualTests.swift",
        "BlendVisualTests.swift",
        "DrawVisualTests.swift",
        "FilterVisualTests.swift",
        "FourierTransformerVisualTests.swift",
        "HistogramsVisualTests.swift",
        "PaddingVisualTests.swift",
        "ResizeVisualTests.swift",
        "SkeletonizerVisualTests.swift",
        "SubimageVisualTests.swift",
        "TransformationVisualTests.swift",
        "Utils.swift",
        "WarpVisualTests.swift",
        "vImageVisualTests.swift"
      ],
      "target_dependencies" : [
        "Swim"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwimTests",
      "module_type" : "SwiftTarget",
      "name" : "SwimTests",
      "path" : "Tests/SwimTests",
      "sources" : [
        "AdvanceTests/BayerTests.swift",
        "AdvanceTests/CorrelationTests.swift",
        "AdvanceTests/Im2colTests.swift",
        "AdvanceTests/IntegralImageTests.swift",
        "ArithmeticTests/ColorArithmeticTests.swift",
        "ArithmeticTests/ImageArithmeticTests.swift",
        "ArithmeticTests/PixelRefArithmeticTests.swift",
        "BooleanTests/BitOperationsTests.swift",
        "BooleanTests/CheckBoolTests.swift",
        "ConversionTests/ChannelCompositionTests.swift",
        "ConversionTests/ChannelwiseConversionTests.swift",
        "ConversionTests/DataTypeConversionTests.swift",
        "ConversionTests/PixelTypeConversionTests.swift",
        "ConversionTests/PixelwiseConversionTests.swift",
        "CoreTests/ImageTests.swift",
        "CoreTests/LikeInitializerTests.swift",
        "CoreTests/PixelIteratorTests.swift",
        "DrawTests/DrawTests.swift",
        "FilterTests/ConvolutionTests.swift",
        "FilterTests/FilterTests.swift",
        "IOTests/ImageIOTests.swift",
        "InterpolationTests/BicubicInterpolationTests.swift",
        "InterpolationTests/BilinearInterpolationTests.swift",
        "InterpolationTests/NearestNeighborInterpolatorTests.swift",
        "ManipulationTests/AbsTests.swift",
        "ManipulationTests/ClipTests.swift",
        "ManipulationTests/PowerTests.swift",
        "ManipulationTests/RoundingTests.swift",
        "PlatformTests/AppKitTests.swift",
        "PlatformTests/S4TFTests.swift",
        "PlatformTests/UIKitTests.swift",
        "PlatformTests/vImageUtilsTests.swift",
        "StatTests/ExtremaTests.swift",
        "SubscriptTests/ChannelSubscriptTests.swift",
        "SubscriptTests/PixelSubscriptTests.swift",
        "SubscriptTests/SubimageSubscriptTests.swift",
        "TransformationTests/AffineTransformationTests.swift",
        "TransformationTests/ConcatenateTests.swift",
        "TransformationTests/EdgeModeTests.swift",
        "TransformationTests/PaddingTests.swift",
        "TransformationTests/ProjectiveTransformationTests.swift",
        "TransformationTests/RepeatedTests.swift",
        "TransformationTests/ResizeTests.swift",
        "TransformationTests/ShiftTests.swift",
        "TransformationTests/TransformationTests.swift",
        "TransformationTests/TransposeTests.swift",
        "Utility/Random.swift",
        "Utility/Utils.swift",
        "Utility/XCTAssertEqualWithAccuracy.swift",
        "UtilityTests/ClampTests.swift",
        "UtilityTests/ComplexTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "Swim"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Swim",
      "module_type" : "SwiftTarget",
      "name" : "Swim",
      "path" : "Sources/Swim",
      "product_memberships" : [
        "Swim"
      ],
      "sources" : [
        "Advance/Bayer.swift",
        "Advance/FourierTransformer.swift",
        "Advance/Histograms.swift",
        "Advance/Im2col.swift",
        "Advance/ImageCompare.swift",
        "Advance/IntegralImage.swift",
        "Advance/Skeletonizer.swift",
        "Arithmetic/ColorAndColor.swift",
        "Arithmetic/ColorAndScalar.swift",
        "Arithmetic/ColorUnary.swift",
        "Arithmetic/ImageAndColor.swift",
        "Arithmetic/ImageAndImage.swift",
        "Arithmetic/ImageAndScalar.swift",
        "Arithmetic/ImageUnary.swift",
        "Arithmetic/PixelRefAndColor.swift",
        "Arithmetic/PixelRefAndScalar.swift",
        "Blend/Blender.swift",
        "Boolean/BitOperations.swift",
        "Boolean/CheckBool.swift",
        "Conversion/ChannelComposition.swift",
        "Conversion/ChannelwiseConversion.swift",
        "Conversion/CreateMask.swift",
        "Conversion/DataConversion.swift",
        "Conversion/DataTypeConversion.swift",
        "Conversion/PixelTypeConversion.swift",
        "Conversion/PixelwiseConversion.swift",
        "Core/Color/Color.swift",
        "Core/Color/ColorPreset.swift",
        "Core/Color/ColorProtocol.swift",
        "Core/DataType.swift",
        "Core/Image/Image.swift",
        "Core/Image/ImageInitializers.swift",
        "Core/Image/LikeInitializer.swift",
        "Core/Image/UninitializedCreation.swift",
        "Core/Pixel/Pixel.swift",
        "Core/Pixel/PixelIterator.swift",
        "Core/Pixel/UnsafePixelRef.swift",
        "Core/PixelType.swift",
        "Draw/DrawCircle.swift",
        "Draw/DrawImage.swift",
        "Draw/DrawLine.swift",
        "Draw/DrawPixel.swift",
        "Draw/DrawPolygon.swift",
        "Draw/DrawRect.swift",
        "Draw/DrawText.swift",
        "Filter/BilateralFilter.swift",
        "Filter/Convolution.swift",
        "Filter/NonLocalMeanFilter.swift",
        "Filter/RankFilter.swift",
        "IO/IOError.swift",
        "IO/ReadImageData.swift",
        "IO/ReadImageFile.swift",
        "IO/STBImageData.swift",
        "IO/WriteImageData.swift",
        "IO/WriteImageFile.swift",
        "Interpolation/BicubicInterpolator.swift",
        "Interpolation/BilinearInterpolator.swift",
        "Interpolation/Interpolator.swift",
        "Interpolation/Interpolator4x4.swift",
        "Interpolation/LanczosInterpolator.swift",
        "Interpolation/NearestNeighborInterpolator.swift",
        "Manipulation/Abs.swift",
        "Manipulation/Clip.swift",
        "Manipulation/Power.swift",
        "Manipulation/Rounding.swift",
        "Platform/AppKit.swift",
        "Platform/CoreGraphics.swift",
        "Platform/S4TF.swift",
        "Platform/UIKit.swift",
        "Platform/vImage/vImageAlphaBlend.swift",
        "Platform/vImage/vImageBuffer.swift",
        "Platform/vImage/vImageMorphology.swift",
        "Platform/vImage/vImageUtils.swift",
        "Stat/Extrema.swift",
        "Subscript/ChannelSubscript.swift",
        "Subscript/PixelSubscript.swift",
        "Subscript/SubimageSubscript.swift",
        "Transformation/Concatenation.swift",
        "Transformation/EdgeMode.swift",
        "Transformation/Flip.swift",
        "Transformation/Matrix/AffineTransformation.swift",
        "Transformation/Matrix/HomogeneousTransformationMatrix.swift",
        "Transformation/Matrix/ProjectiveTransformation.swift",
        "Transformation/Padding.swift",
        "Transformation/Repeat.swift",
        "Transformation/Resize.swift",
        "Transformation/Rotate.swift",
        "Transformation/Shift.swift",
        "Transformation/Transpose.swift",
        "Transformation/Warp.swift",
        "Utility/Clamp.swift",
        "Utility/Complex.swift",
        "Utility/ConvertUInt8FP.swift",
        "Utility/Copy.swift",
        "Utility/Interleave.swift",
        "Utility/IsPOT.swift",
        "Utility/Matrix.swift",
        "Utility/Rect.swift"
      ],
      "target_dependencies" : [
        "CStbImage"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PerformanceTests",
      "module_type" : "SwiftTarget",
      "name" : "PerformanceTests",
      "path" : "Tests/PerformanceTests",
      "sources" : [
        "ArithmeticPerformanceTests.swift",
        "BasicPerformanceTests.swift",
        "BayerPerformanceTests.swift",
        "BlendPerformanceTests.swift",
        "ConversionPerformanceTests.swift",
        "CorrelationPerformanceTests.swift",
        "DataTypeConversionPerformanceTests.swift",
        "DrawPerformanceTests.swift",
        "FilterPerformanceTests.swift",
        "FourierTransformerPerformanceTests.swift",
        "ImageIOPerformanceTests.swift",
        "InterpolatorPerformanceTests.swift",
        "IterationPerformanceTests.swift",
        "ManipulationPerformanceTests.swift",
        "PerformanceTests.swift",
        "ResizePerformanceTests.swift",
        "SubscriptPerformanceTests.swift",
        "TransformationPerformanceTests.swift"
      ],
      "target_dependencies" : [
        "Swim"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CStbImage",
      "module_type" : "ClangTarget",
      "name" : "CStbImage",
      "path" : "Sources/CStbImage",
      "product_memberships" : [
        "Swim"
      ],
      "sources" : [
        "image_io.c",
        "truetype.c"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
Done.