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 master (571022), with Swift 6.0 for macOS (SPM) on 15 Sep 2024 02:53:08 UTC.

Swift 6 data race errors: 13

Build Command

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

Build Log

 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 Image.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Core/Pixel/UnsafePixelRef.swift:82:13: warning: initialization of 'UnsafeBufferPointer<UInt8>' results in a dangling buffer pointer
 80 |         let rawPointer = UnsafeMutableRawBufferPointer(pointer)
 81 |         rawPointer.copyMemory(from: UnsafeRawBufferPointer(
 82 |             UnsafeBufferPointer(start: &colorData[0], count: P.channels)
    |             |                          |- note: implicit argument conversion from 'UInt8' to 'UnsafePointer<UInt8>?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
    |             |                          `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |             `- warning: initialization of 'UnsafeBufferPointer<UInt8>' results in a dangling buffer pointer
 83 |         ))
 84 |     }
[26/103] Compiling Swim ImageInitializers.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Core/Pixel/UnsafePixelRef.swift:82:13: warning: initialization of 'UnsafeBufferPointer<UInt8>' results in a dangling buffer pointer
 80 |         let rawPointer = UnsafeMutableRawBufferPointer(pointer)
 81 |         rawPointer.copyMemory(from: UnsafeRawBufferPointer(
 82 |             UnsafeBufferPointer(start: &colorData[0], count: P.channels)
    |             |                          |- note: implicit argument conversion from 'UInt8' to 'UnsafePointer<UInt8>?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
    |             |                          `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |             `- warning: initialization of 'UnsafeBufferPointer<UInt8>' results in a dangling buffer pointer
 83 |         ))
 84 |     }
[27/103] Compiling Swim LikeInitializer.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Core/Pixel/UnsafePixelRef.swift:82:13: warning: initialization of 'UnsafeBufferPointer<UInt8>' results in a dangling buffer pointer
 80 |         let rawPointer = UnsafeMutableRawBufferPointer(pointer)
 81 |         rawPointer.copyMemory(from: UnsafeRawBufferPointer(
 82 |             UnsafeBufferPointer(start: &colorData[0], count: P.channels)
    |             |                          |- note: implicit argument conversion from 'UInt8' to 'UnsafePointer<UInt8>?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
    |             |                          `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |             `- warning: initialization of 'UnsafeBufferPointer<UInt8>' results in a dangling buffer pointer
 83 |         ))
 84 |     }
[28/103] Compiling Swim UninitializedCreation.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Core/Pixel/UnsafePixelRef.swift:82:13: warning: initialization of 'UnsafeBufferPointer<UInt8>' results in a dangling buffer pointer
 80 |         let rawPointer = UnsafeMutableRawBufferPointer(pointer)
 81 |         rawPointer.copyMemory(from: UnsafeRawBufferPointer(
 82 |             UnsafeBufferPointer(start: &colorData[0], count: P.channels)
    |             |                          |- note: implicit argument conversion from 'UInt8' to 'UnsafePointer<UInt8>?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
    |             |                          `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |             `- warning: initialization of 'UnsafeBufferPointer<UInt8>' results in a dangling buffer pointer
 83 |         ))
 84 |     }
[29/103] Compiling Swim Pixel.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Core/Pixel/UnsafePixelRef.swift:82:13: warning: initialization of 'UnsafeBufferPointer<UInt8>' results in a dangling buffer pointer
 80 |         let rawPointer = UnsafeMutableRawBufferPointer(pointer)
 81 |         rawPointer.copyMemory(from: UnsafeRawBufferPointer(
 82 |             UnsafeBufferPointer(start: &colorData[0], count: P.channels)
    |             |                          |- note: implicit argument conversion from 'UInt8' to 'UnsafePointer<UInt8>?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
    |             |                          `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |             `- warning: initialization of 'UnsafeBufferPointer<UInt8>' results in a dangling buffer pointer
 83 |         ))
 84 |     }
[30/103] Compiling Swim PixelIterator.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Core/Pixel/UnsafePixelRef.swift:82:13: warning: initialization of 'UnsafeBufferPointer<UInt8>' results in a dangling buffer pointer
 80 |         let rawPointer = UnsafeMutableRawBufferPointer(pointer)
 81 |         rawPointer.copyMemory(from: UnsafeRawBufferPointer(
 82 |             UnsafeBufferPointer(start: &colorData[0], count: P.channels)
    |             |                          |- note: implicit argument conversion from 'UInt8' to 'UnsafePointer<UInt8>?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
    |             |                          `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |             `- warning: initialization of 'UnsafeBufferPointer<UInt8>' results in a dangling buffer pointer
 83 |         ))
 84 |     }
[31/103] Compiling Swim UnsafePixelRef.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Core/Pixel/UnsafePixelRef.swift:82:13: warning: initialization of 'UnsafeBufferPointer<UInt8>' results in a dangling buffer pointer
 80 |         let rawPointer = UnsafeMutableRawBufferPointer(pointer)
 81 |         rawPointer.copyMemory(from: UnsafeRawBufferPointer(
 82 |             UnsafeBufferPointer(start: &colorData[0], count: P.channels)
    |             |                          |- note: implicit argument conversion from 'UInt8' to 'UnsafePointer<UInt8>?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
    |             |                          `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |             `- warning: initialization of 'UnsafeBufferPointer<UInt8>' results in a dangling buffer pointer
 83 |         ))
 84 |     }
[32/103] Compiling Swim PixelType.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Core/Pixel/UnsafePixelRef.swift:82:13: warning: initialization of 'UnsafeBufferPointer<UInt8>' results in a dangling buffer pointer
 80 |         let rawPointer = UnsafeMutableRawBufferPointer(pointer)
 81 |         rawPointer.copyMemory(from: UnsafeRawBufferPointer(
 82 |             UnsafeBufferPointer(start: &colorData[0], count: P.channels)
    |             |                          |- note: implicit argument conversion from 'UInt8' to 'UnsafePointer<UInt8>?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
    |             |                          `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |             `- warning: initialization of 'UnsafeBufferPointer<UInt8>' results in a dangling buffer pointer
 83 |         ))
 84 |     }
[33/103] Compiling Swim DrawCircle.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Core/Pixel/UnsafePixelRef.swift:82:13: warning: initialization of 'UnsafeBufferPointer<UInt8>' results in a dangling buffer pointer
 80 |         let rawPointer = UnsafeMutableRawBufferPointer(pointer)
 81 |         rawPointer.copyMemory(from: UnsafeRawBufferPointer(
 82 |             UnsafeBufferPointer(start: &colorData[0], count: P.channels)
    |             |                          |- note: implicit argument conversion from 'UInt8' to 'UnsafePointer<UInt8>?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
    |             |                          `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |             `- warning: initialization of 'UnsafeBufferPointer<UInt8>' results in a dangling buffer pointer
 83 |         ))
 84 |     }
[34/103] Compiling Swim DrawImage.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Core/Pixel/UnsafePixelRef.swift:82:13: warning: initialization of 'UnsafeBufferPointer<UInt8>' results in a dangling buffer pointer
 80 |         let rawPointer = UnsafeMutableRawBufferPointer(pointer)
 81 |         rawPointer.copyMemory(from: UnsafeRawBufferPointer(
 82 |             UnsafeBufferPointer(start: &colorData[0], count: P.channels)
    |             |                          |- note: implicit argument conversion from 'UInt8' to 'UnsafePointer<UInt8>?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
    |             |                          `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |             `- warning: initialization of 'UnsafeBufferPointer<UInt8>' results in a dangling buffer pointer
 83 |         ))
 84 |     }
[35/103] Compiling Swim Bayer.swift
[36/103] Compiling Swim FourierTransformer.swift
[37/103] Compiling Swim Histograms.swift
[38/103] Compiling Swim Im2col.swift
[39/103] Compiling Swim ImageCompare.swift
[40/103] Compiling Swim IntegralImage.swift
[41/103] Compiling Swim Skeletonizer.swift
[42/103] Compiling Swim ColorAndColor.swift
[43/103] Compiling Swim ColorAndScalar.swift
[44/103] Compiling Swim ColorUnary.swift
[45/103] Compiling Swim ChannelwiseConversion.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Core/Color/Color.swift:19:13: warning: initialization of 'UnsafeBufferPointer<T>' results in a dangling buffer pointer
 17 |         self.data = data
 18 |         self.dataPointer = UnsafeRawBufferPointer(
 19 |             UnsafeBufferPointer(start: &self.data[0], count: data.count)
    |             |                          |- note: implicit argument conversion from 'T' to 'UnsafePointer<T>?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
    |             |                          `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |             `- warning: initialization of 'UnsafeBufferPointer<T>' results in a dangling buffer pointer
 20 |         )
 21 |     }
[46/103] Compiling Swim CreateMask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Core/Color/Color.swift:19:13: warning: initialization of 'UnsafeBufferPointer<T>' results in a dangling buffer pointer
 17 |         self.data = data
 18 |         self.dataPointer = UnsafeRawBufferPointer(
 19 |             UnsafeBufferPointer(start: &self.data[0], count: data.count)
    |             |                          |- note: implicit argument conversion from 'T' to 'UnsafePointer<T>?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
    |             |                          `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |             `- warning: initialization of 'UnsafeBufferPointer<T>' results in a dangling buffer pointer
 20 |         )
 21 |     }
[47/103] Compiling Swim DataConversion.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Core/Color/Color.swift:19:13: warning: initialization of 'UnsafeBufferPointer<T>' results in a dangling buffer pointer
 17 |         self.data = data
 18 |         self.dataPointer = UnsafeRawBufferPointer(
 19 |             UnsafeBufferPointer(start: &self.data[0], count: data.count)
    |             |                          |- note: implicit argument conversion from 'T' to 'UnsafePointer<T>?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
    |             |                          `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |             `- warning: initialization of 'UnsafeBufferPointer<T>' results in a dangling buffer pointer
 20 |         )
 21 |     }
[48/103] Compiling Swim DataTypeConversion.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Core/Color/Color.swift:19:13: warning: initialization of 'UnsafeBufferPointer<T>' results in a dangling buffer pointer
 17 |         self.data = data
 18 |         self.dataPointer = UnsafeRawBufferPointer(
 19 |             UnsafeBufferPointer(start: &self.data[0], count: data.count)
    |             |                          |- note: implicit argument conversion from 'T' to 'UnsafePointer<T>?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
    |             |                          `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |             `- warning: initialization of 'UnsafeBufferPointer<T>' results in a dangling buffer pointer
 20 |         )
 21 |     }
[49/103] Compiling Swim PixelTypeConversion.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Core/Color/Color.swift:19:13: warning: initialization of 'UnsafeBufferPointer<T>' results in a dangling buffer pointer
 17 |         self.data = data
 18 |         self.dataPointer = UnsafeRawBufferPointer(
 19 |             UnsafeBufferPointer(start: &self.data[0], count: data.count)
    |             |                          |- note: implicit argument conversion from 'T' to 'UnsafePointer<T>?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
    |             |                          `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |             `- warning: initialization of 'UnsafeBufferPointer<T>' results in a dangling buffer pointer
 20 |         )
 21 |     }
[50/103] Compiling Swim PixelwiseConversion.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Core/Color/Color.swift:19:13: warning: initialization of 'UnsafeBufferPointer<T>' results in a dangling buffer pointer
 17 |         self.data = data
 18 |         self.dataPointer = UnsafeRawBufferPointer(
 19 |             UnsafeBufferPointer(start: &self.data[0], count: data.count)
    |             |                          |- note: implicit argument conversion from 'T' to 'UnsafePointer<T>?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
    |             |                          `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |             `- warning: initialization of 'UnsafeBufferPointer<T>' results in a dangling buffer pointer
 20 |         )
 21 |     }
[51/103] Compiling Swim Color.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Core/Color/Color.swift:19:13: warning: initialization of 'UnsafeBufferPointer<T>' results in a dangling buffer pointer
 17 |         self.data = data
 18 |         self.dataPointer = UnsafeRawBufferPointer(
 19 |             UnsafeBufferPointer(start: &self.data[0], count: data.count)
    |             |                          |- note: implicit argument conversion from 'T' to 'UnsafePointer<T>?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
    |             |                          `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |             `- warning: initialization of 'UnsafeBufferPointer<T>' results in a dangling buffer pointer
 20 |         )
 21 |     }
[52/103] Compiling Swim ColorPreset.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Core/Color/Color.swift:19:13: warning: initialization of 'UnsafeBufferPointer<T>' results in a dangling buffer pointer
 17 |         self.data = data
 18 |         self.dataPointer = UnsafeRawBufferPointer(
 19 |             UnsafeBufferPointer(start: &self.data[0], count: data.count)
    |             |                          |- note: implicit argument conversion from 'T' to 'UnsafePointer<T>?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
    |             |                          `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |             `- warning: initialization of 'UnsafeBufferPointer<T>' results in a dangling buffer pointer
 20 |         )
 21 |     }
[53/103] Compiling Swim ColorProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Core/Color/Color.swift:19:13: warning: initialization of 'UnsafeBufferPointer<T>' results in a dangling buffer pointer
 17 |         self.data = data
 18 |         self.dataPointer = UnsafeRawBufferPointer(
 19 |             UnsafeBufferPointer(start: &self.data[0], count: data.count)
    |             |                          |- note: implicit argument conversion from 'T' to 'UnsafePointer<T>?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
    |             |                          `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |             `- warning: initialization of 'UnsafeBufferPointer<T>' results in a dangling buffer pointer
 20 |         )
 21 |     }
[54/103] Compiling Swim DataType.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Core/Color/Color.swift:19:13: warning: initialization of 'UnsafeBufferPointer<T>' results in a dangling buffer pointer
 17 |         self.data = data
 18 |         self.dataPointer = UnsafeRawBufferPointer(
 19 |             UnsafeBufferPointer(start: &self.data[0], count: data.count)
    |             |                          |- note: implicit argument conversion from 'T' to 'UnsafePointer<T>?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
    |             |                          `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |             `- warning: initialization of 'UnsafeBufferPointer<T>' results in a dangling buffer pointer
 20 |         )
 21 |     }
[55/103] Compiling Swim DrawLine.swift
[56/103] Compiling Swim DrawPixel.swift
[57/103] Compiling Swim DrawPolygon.swift
[58/103] Compiling Swim DrawRect.swift
[59/103] Compiling Swim DrawText.swift
[60/103] Compiling Swim BilateralFilter.swift
[61/103] Compiling Swim Convolution.swift
[62/103] Compiling Swim NonLocalMeanFilter.swift
[63/103] Compiling Swim RankFilter.swift
[64/103] Compiling Swim IOError.swift
[65/103] Compiling Swim AffineTransformation.swift
[66/103] Compiling Swim HomogeneousTransformationMatrix.swift
[67/103] Compiling Swim ProjectiveTransformation.swift
[68/103] Compiling Swim Padding.swift
[69/103] Compiling Swim Repeat.swift
[70/103] Compiling Swim Resize.swift
[71/103] Compiling Swim Rotate.swift
[72/103] Compiling Swim Shift.swift
[73/103] Compiling Swim Transpose.swift
[74/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 |     }
[75/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 |     }
[76/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 |     }
[77/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 |     }
[78/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 |     }
[79/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 |     }
[80/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 |     }
[81/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 |     }
[82/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 |     }
[83/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 |     }
[84/103] Compiling Swim Warp.swift
[85/103] Compiling Swim Clamp.swift
[86/103] Compiling Swim Complex.swift
[87/103] Compiling Swim ConvertUInt8FP.swift
[88/103] Compiling Swim Copy.swift
[89/103] Compiling Swim Interleave.swift
[90/103] Compiling Swim IsPOT.swift
[91/103] Compiling Swim Matrix.swift
[92/103] Compiling Swim Rect.swift
[93/103] Emitting module Swim
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Core/Color/Color.swift:19:13: warning: initialization of 'UnsafeBufferPointer<T>' results in a dangling buffer pointer
 17 |         self.data = data
 18 |         self.dataPointer = UnsafeRawBufferPointer(
 19 |             UnsafeBufferPointer(start: &self.data[0], count: data.count)
    |             |                          |- note: implicit argument conversion from 'T' to 'UnsafePointer<T>?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
    |             |                          `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |             `- warning: initialization of 'UnsafeBufferPointer<T>' results in a dangling buffer pointer
 20 |         )
 21 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Swim/Core/Pixel/UnsafePixelRef.swift:82:13: warning: initialization of 'UnsafeBufferPointer<UInt8>' results in a dangling buffer pointer
 80 |         let rawPointer = UnsafeMutableRawBufferPointer(pointer)
 81 |         rawPointer.copyMemory(from: UnsafeRawBufferPointer(
 82 |             UnsafeBufferPointer(start: &colorData[0], count: P.channels)
    |             |                          |- note: implicit argument conversion from 'UInt8' to 'UnsafePointer<UInt8>?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
    |             |                          `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |             `- warning: initialization of 'UnsafeBufferPointer<UInt8>' results in a dangling buffer pointer
 83 |         ))
 84 |     }
/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 |     }
[94/103] Compiling Swim NearestNeighborInterpolator.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 |
[95/103] Compiling Swim Abs.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 |
[96/103] Compiling Swim Clip.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 |
[97/103] Compiling Swim Power.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 |
[98/103] Compiling Swim Rounding.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 |
[99/103] Compiling Swim AppKit.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 |
[100/103] Compiling Swim CoreGraphics.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 |
[101/103] Compiling Swim S4TF.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 |
[102/103] Compiling Swim UIKit.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 |
[103/103] Compiling Swim vImageAlphaBlend.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 |
Build complete! (16.27s)
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",
        "XCTestManifests.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",
        "XCTestManifests.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.