The Swift Package Index logo.Swift Package Index

Build Information

Failed to build KadrUI, reference v0.6.0 (1dc1c6), with Swift 6.1 for macOS (SPM) on 29 Apr 2026 12:28:30 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/SteliyanH/kadr-ui.git
Reference: v0.6.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/SteliyanH/kadr-ui
 * tag               v0.6.0     -> FETCH_HEAD
HEAD is now at 1dc1c63 docs: v0.6.0 release prep — CHANGELOG, README, ROADMAP
Cloned https://github.com/SteliyanH/kadr-ui.git
Revision (git rev-parse @):
1dc1c63b197bc8828761634718faa8e3bbe2d6ca
SUCCESS checkout https://github.com/SteliyanH/kadr-ui.git at v0.6.0
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/SteliyanH/kadr-ui.git
https://github.com/SteliyanH/kadr-ui.git
{
  "dependencies" : [
    {
      "identity" : "kadr",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.8.4",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/SteliyanH/kadr.git"
    }
  ],
  "manifest_display_name" : "KadrUI",
  "name" : "KadrUI",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "16.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "KadrUI",
      "targets" : [
        "KadrUI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "KadrUITests",
      "module_type" : "SwiftTarget",
      "name" : "KadrUITests",
      "path" : "Tests/KadrUITests",
      "sources" : [
        "AnimatedTextLayerViewTests.swift",
        "AudioWaveformTests.swift",
        "CrossfadeBoundariesTests.swift",
        "InspectorPanelTests.swift",
        "KadrUITests.swift",
        "KeyframeEditorTests.swift",
        "OverlayGestureTests.swift",
        "OverlayHostHelpersTests.swift",
        "OverlayHostTests.swift",
        "ThumbnailStripTests.swift",
        "TimelineLanesTests.swift",
        "TimelineViewTests.swift",
        "VideoPreviewTests.swift"
      ],
      "target_dependencies" : [
        "KadrUI"
      ],
      "type" : "test"
    },
    {
      "c99name" : "KadrUI",
      "module_type" : "SwiftTarget",
      "name" : "KadrUI",
      "path" : "Sources/KadrUI",
      "product_dependencies" : [
        "Kadr"
      ],
      "product_memberships" : [
        "KadrUI"
      ],
      "sources" : [
        "AnimatedTextLayerView.swift",
        "AudioWaveform.swift",
        "AudioWaveformLoader.swift",
        "InspectorPanel.swift",
        "KadrUI.swift",
        "KeyframeEditor.swift",
        "OverlayHost.swift",
        "PlatformBridge.swift",
        "ThumbnailStrip.swift",
        "TimelineLanes.swift",
        "TimelineView.swift",
        "VideoPreview.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-2F0A5646E1D333AE.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[4/53] Emitting module Kadr
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/DSL/ImageClip.swift:16:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 14 | public struct ImageClip: Clip, Sendable {
 15 |     /// The image rendered for the clip's duration.
 16 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 17 |     internal let _duration: CMTime
 18 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Engine/MaskCompositor.swift:22:9: error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
20 | /// users don't construct it directly.
21 | internal struct MaskCompositor: Compositor {
22 |     let mask: CIImage
   |         `- error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
23 |
24 |     func process(image: CIImage, context: CompositorContext) -> CIImage {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h:34:12: note: class 'CIImage' does not conform to the 'Sendable' protocol
 32 |
 33 | NS_CLASS_AVAILABLE(10_4, 5_0)
 34 | @interface CIImage : NSObject <NSSecureCoding, NSCopying>
    |            `- note: class 'CIImage' does not conform to the 'Sendable' protocol
 35 | {
 36 | #if TARGET_OS_OSX || TARGET_OS_MACCATALYST
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Overlays/ImageOverlay.swift:26:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 24 | public struct ImageOverlay: Overlay, Sendable {
 25 |     /// The source image rendered into the overlay layer.
 26 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 27 |     /// Where the overlay's anchor lands on the render canvas.
 28 |     public let position: Position
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Overlays/StickerOverlay.swift:32:16: error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 30 | public struct StickerOverlay: Overlay, Sendable {
 31 |     /// The source image rendered into the sticker layer.
 32 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 33 |     /// Where the sticker's anchor lands on the render canvas.
 34 |     public let position: Position
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
[5/58] Compiling Kadr LayerID.swift
[6/58] Compiling Kadr Layout.swift
[7/58] Compiling Kadr Position.swift
[8/58] Compiling Kadr Size.swift
[9/58] Compiling Kadr Transform.swift
[10/58] Compiling Kadr TextOverlay.swift
[11/58] Compiling Kadr TextStyle.swift
[12/58] Compiling Kadr Watermark.swift
[13/58] Compiling Kadr PlatformTypes.swift
[14/58] Compiling Kadr Timecode.swift
[15/58] Compiling Kadr ExportProgress.swift
[16/58] Compiling Kadr Exporter.swift
[17/58] Compiling Kadr Preset.swift
[18/58] Compiling Kadr ChromaKey.swift
[19/58] Compiling Kadr Filter.swift
[20/58] Compiling Kadr LUT.swift
[21/58] Compiling Kadr Anchor.swift
[22/58] Compiling Kadr ClipID.swift
[23/58] Compiling Kadr CropRegion.swift
[24/58] Compiling Kadr Frame.swift
[25/58] Compiling Kadr OverlayRenderer.swift
[26/58] Compiling Kadr PlaybackComposer.swift
[27/58] Compiling Kadr ReverseProcessor.swift
[28/58] Compiling Kadr SpeedCurveSampler.swift
[29/58] Compiling Kadr KadrError.swift
[30/58] Compiling Kadr Clip+Speed.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Overlays/ImageOverlay.swift:26:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 24 | public struct ImageOverlay: Overlay, Sendable {
 25 |     /// The source image rendered into the overlay layer.
 26 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 27 |     /// Where the overlay's anchor lands on the render canvas.
 28 |     public let position: Position
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Overlays/StickerOverlay.swift:32:16: error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 30 | public struct StickerOverlay: Overlay, Sendable {
 31 |     /// The source image rendered into the sticker layer.
 32 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 33 |     /// Where the sticker's anchor lands on the render canvas.
 34 |     public let position: Position
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
[31/58] Compiling Kadr ImageOverlay.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Overlays/ImageOverlay.swift:26:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 24 | public struct ImageOverlay: Overlay, Sendable {
 25 |     /// The source image rendered into the overlay layer.
 26 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 27 |     /// Where the overlay's anchor lands on the render canvas.
 28 |     public let position: Position
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Overlays/StickerOverlay.swift:32:16: error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 30 | public struct StickerOverlay: Overlay, Sendable {
 31 |     /// The source image rendered into the sticker layer.
 32 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 33 |     /// Where the sticker's anchor lands on the render canvas.
 34 |     public let position: Position
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
[32/58] Compiling Kadr Overlay.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Overlays/ImageOverlay.swift:26:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 24 | public struct ImageOverlay: Overlay, Sendable {
 25 |     /// The source image rendered into the overlay layer.
 26 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 27 |     /// Where the overlay's anchor lands on the render canvas.
 28 |     public let position: Position
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Overlays/StickerOverlay.swift:32:16: error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 30 | public struct StickerOverlay: Overlay, Sendable {
 31 |     /// The source image rendered into the sticker layer.
 32 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 33 |     /// Where the sticker's anchor lands on the render canvas.
 34 |     public let position: Position
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
[33/58] Compiling Kadr StickerOverlay.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Overlays/ImageOverlay.swift:26:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 24 | public struct ImageOverlay: Overlay, Sendable {
 25 |     /// The source image rendered into the overlay layer.
 26 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 27 |     /// Where the overlay's anchor lands on the render canvas.
 28 |     public let position: Position
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Overlays/StickerOverlay.swift:32:16: error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 30 | public struct StickerOverlay: Overlay, Sendable {
 31 |     /// The source image rendered into the sticker layer.
 32 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 33 |     /// Where the sticker's anchor lands on the render canvas.
 34 |     public let position: Position
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
[34/58] Compiling Kadr TextAnimation.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Overlays/ImageOverlay.swift:26:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 24 | public struct ImageOverlay: Overlay, Sendable {
 25 |     /// The source image rendered into the overlay layer.
 26 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 27 |     /// Where the overlay's anchor lands on the render canvas.
 28 |     public let position: Position
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Overlays/StickerOverlay.swift:32:16: error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 30 | public struct StickerOverlay: Overlay, Sendable {
 31 |     /// The source image rendered into the sticker layer.
 32 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 33 |     /// Where the sticker's anchor lands on the render canvas.
 34 |     public let position: Position
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
[35/58] Compiling Kadr VideoBuilder.swift
[36/58] Compiling Kadr VideoClip.swift
[37/58] Compiling Kadr CancellationToken.swift
[38/58] Compiling Kadr CompositionBuilder.swift
[39/58] Compiling Kadr Compositor.swift
[40/58] Compiling Kadr CropCompositor.swift
[41/58] Compiling Kadr Clip.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/DSL/ImageClip.swift:16:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 14 | public struct ImageClip: Clip, Sendable {
 15 |     /// The image rendered for the clip's duration.
 16 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 17 |     internal let _duration: CMTime
 18 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
[42/58] Compiling Kadr ImageClip.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/DSL/ImageClip.swift:16:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 14 | public struct ImageClip: Clip, Sendable {
 15 |     /// The image rendered for the clip's duration.
 16 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 17 |     internal let _duration: CMTime
 18 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
[43/58] Compiling Kadr TitleSequence.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/DSL/ImageClip.swift:16:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 14 | public struct ImageClip: Clip, Sendable {
 15 |     /// The image rendered for the clip's duration.
 16 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 17 |     internal let _duration: CMTime
 18 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
[44/58] Compiling Kadr Track.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/DSL/ImageClip.swift:16:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 14 | public struct ImageClip: Clip, Sendable {
 15 |     /// The image rendered for the clip's duration.
 16 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 17 |     internal let _duration: CMTime
 18 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
[45/58] Compiling Kadr Transition.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/DSL/ImageClip.swift:16:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 14 | public struct ImageClip: Clip, Sendable {
 15 |     /// The image rendered for the clip's duration.
 16 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 17 |     internal let _duration: CMTime
 18 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
[46/58] Compiling Kadr Video.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/DSL/ImageClip.swift:16:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 14 | public struct ImageClip: Clip, Sendable {
 15 |     /// The image rendered for the clip's duration.
 16 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 17 |     internal let _duration: CMTime
 18 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
[47/58] Compiling Kadr Animatable.swift
[48/58] Compiling Kadr Animation.swift
[49/58] Compiling Kadr TimingFunction.swift
[50/58] Compiling Kadr AudioBuilder.swift
[51/58] Compiling Kadr AudioTrack.swift
[52/58] Compiling Kadr BackgroundMusic.swift
[53/58] Compiling Kadr ExportEngine.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Engine/MaskCompositor.swift:22:9: error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
20 | /// users don't construct it directly.
21 | internal struct MaskCompositor: Compositor {
22 |     let mask: CIImage
   |         `- error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
23 |
24 |     func process(image: CIImage, context: CompositorContext) -> CIImage {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h:34:12: note: class 'CIImage' does not conform to the 'Sendable' protocol
 32 |
 33 | NS_CLASS_AVAILABLE(10_4, 5_0)
 34 | @interface CIImage : NSObject <NSSecureCoding, NSCopying>
    |            `- note: class 'CIImage' does not conform to the 'Sendable' protocol
 35 | {
 36 | #if TARGET_OS_OSX || TARGET_OS_MACCATALYST
[54/58] Compiling Kadr FilterProcessor.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Engine/MaskCompositor.swift:22:9: error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
20 | /// users don't construct it directly.
21 | internal struct MaskCompositor: Compositor {
22 |     let mask: CIImage
   |         `- error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
23 |
24 |     func process(image: CIImage, context: CompositorContext) -> CIImage {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h:34:12: note: class 'CIImage' does not conform to the 'Sendable' protocol
 32 |
 33 | NS_CLASS_AVAILABLE(10_4, 5_0)
 34 | @interface CIImage : NSObject <NSSecureCoding, NSCopying>
    |            `- note: class 'CIImage' does not conform to the 'Sendable' protocol
 35 | {
 36 | #if TARGET_OS_OSX || TARGET_OS_MACCATALYST
[55/58] Compiling Kadr ImageEncoder.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Engine/MaskCompositor.swift:22:9: error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
20 | /// users don't construct it directly.
21 | internal struct MaskCompositor: Compositor {
22 |     let mask: CIImage
   |         `- error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
23 |
24 |     func process(image: CIImage, context: CompositorContext) -> CIImage {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h:34:12: note: class 'CIImage' does not conform to the 'Sendable' protocol
 32 |
 33 | NS_CLASS_AVAILABLE(10_4, 5_0)
 34 | @interface CIImage : NSObject <NSSecureCoding, NSCopying>
    |            `- note: class 'CIImage' does not conform to the 'Sendable' protocol
 35 | {
 36 | #if TARGET_OS_OSX || TARGET_OS_MACCATALYST
[56/58] Compiling Kadr KadrVideoCompositor.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Engine/MaskCompositor.swift:22:9: error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
20 | /// users don't construct it directly.
21 | internal struct MaskCompositor: Compositor {
22 |     let mask: CIImage
   |         `- error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
23 |
24 |     func process(image: CIImage, context: CompositorContext) -> CIImage {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h:34:12: note: class 'CIImage' does not conform to the 'Sendable' protocol
 32 |
 33 | NS_CLASS_AVAILABLE(10_4, 5_0)
 34 | @interface CIImage : NSObject <NSSecureCoding, NSCopying>
    |            `- note: class 'CIImage' does not conform to the 'Sendable' protocol
 35 | {
 36 | #if TARGET_OS_OSX || TARGET_OS_MACCATALYST
[57/58] Compiling Kadr MaskCompositor.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Engine/MaskCompositor.swift:22:9: error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
20 | /// users don't construct it directly.
21 | internal struct MaskCompositor: Compositor {
22 |     let mask: CIImage
   |         `- error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
23 |
24 |     func process(image: CIImage, context: CompositorContext) -> CIImage {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h:34:12: note: class 'CIImage' does not conform to the 'Sendable' protocol
 32 |
 33 | NS_CLASS_AVAILABLE(10_4, 5_0)
 34 | @interface CIImage : NSObject <NSSecureCoding, NSCopying>
    |            `- note: class 'CIImage' does not conform to the 'Sendable' protocol
 35 | {
 36 | #if TARGET_OS_OSX || TARGET_OS_MACCATALYST
[58/58] Compiling Kadr MultiInputCompositor.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Engine/MaskCompositor.swift:22:9: error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
20 | /// users don't construct it directly.
21 | internal struct MaskCompositor: Compositor {
22 |     let mask: CIImage
   |         `- error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
23 |
24 |     func process(image: CIImage, context: CompositorContext) -> CIImage {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h:34:12: note: class 'CIImage' does not conform to the 'Sendable' protocol
 32 |
 33 | NS_CLASS_AVAILABLE(10_4, 5_0)
 34 | @interface CIImage : NSObject <NSSecureCoding, NSCopying>
    |            `- note: class 'CIImage' does not conform to the 'Sendable' protocol
 35 | {
 36 | #if TARGET_OS_OSX || TARGET_OS_MACCATALYST
Fetching https://github.com/SteliyanH/kadr.git
[1/1168] Fetching kadr
Fetched https://github.com/SteliyanH/kadr.git from cache (3.43s)
Computing version for https://github.com/SteliyanH/kadr.git
Computed https://github.com/SteliyanH/kadr.git at 0.9.0 (3.93s)
Creating working copy for https://github.com/SteliyanH/kadr.git
Working copy of https://github.com/SteliyanH/kadr.git resolved at 0.9.0
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[2/51] Emitting module Kadr
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/DSL/ImageClip.swift:16:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 14 | public struct ImageClip: Clip, Sendable {
 15 |     /// The image rendered for the clip's duration.
 16 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 17 |     internal let _duration: CMTime
 18 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Engine/MaskCompositor.swift:22:9: error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
20 | /// users don't construct it directly.
21 | internal struct MaskCompositor: Compositor {
22 |     let mask: CIImage
   |         `- error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
23 |
24 |     func process(image: CIImage, context: CompositorContext) -> CIImage {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h:34:12: note: class 'CIImage' does not conform to the 'Sendable' protocol
 32 |
 33 | NS_CLASS_AVAILABLE(10_4, 5_0)
 34 | @interface CIImage : NSObject <NSSecureCoding, NSCopying>
    |            `- note: class 'CIImage' does not conform to the 'Sendable' protocol
 35 | {
 36 | #if TARGET_OS_OSX || TARGET_OS_MACCATALYST
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Overlays/ImageOverlay.swift:26:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 24 | public struct ImageOverlay: Overlay, Sendable {
 25 |     /// The source image rendered into the overlay layer.
 26 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 27 |     /// Where the overlay's anchor lands on the render canvas.
 28 |     public let position: Position
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Overlays/StickerOverlay.swift:32:16: error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 30 | public struct StickerOverlay: Overlay, Sendable {
 31 |     /// The source image rendered into the sticker layer.
 32 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 33 |     /// Where the sticker's anchor lands on the render canvas.
 34 |     public let position: Position
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
[3/56] Compiling Kadr Animatable.swift
[4/56] Compiling Kadr Animation.swift
[5/56] Compiling Kadr TimingFunction.swift
[6/56] Compiling Kadr AudioBuilder.swift
[7/56] Compiling Kadr AudioTrack.swift
[8/56] Compiling Kadr BackgroundMusic.swift
[9/56] Compiling Kadr LayerID.swift
[10/56] Compiling Kadr Layout.swift
[11/56] Compiling Kadr Position.swift
[12/56] Compiling Kadr Size.swift
[13/56] Compiling Kadr Transform.swift
[14/56] Compiling Kadr LUT.swift
[15/56] Compiling Kadr Anchor.swift
[16/56] Compiling Kadr ClipID.swift
[17/56] Compiling Kadr CropRegion.swift
[18/56] Compiling Kadr Frame.swift
[19/56] Compiling Kadr Clip.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/DSL/ImageClip.swift:16:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 14 | public struct ImageClip: Clip, Sendable {
 15 |     /// The image rendered for the clip's duration.
 16 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 17 |     internal let _duration: CMTime
 18 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
[20/56] Compiling Kadr ImageClip.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/DSL/ImageClip.swift:16:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 14 | public struct ImageClip: Clip, Sendable {
 15 |     /// The image rendered for the clip's duration.
 16 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 17 |     internal let _duration: CMTime
 18 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
[21/56] Compiling Kadr TitleSequence.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/DSL/ImageClip.swift:16:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 14 | public struct ImageClip: Clip, Sendable {
 15 |     /// The image rendered for the clip's duration.
 16 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 17 |     internal let _duration: CMTime
 18 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
[22/56] Compiling Kadr Track.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/DSL/ImageClip.swift:16:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 14 | public struct ImageClip: Clip, Sendable {
 15 |     /// The image rendered for the clip's duration.
 16 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 17 |     internal let _duration: CMTime
 18 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
[23/56] Compiling Kadr Transition.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/DSL/ImageClip.swift:16:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 14 | public struct ImageClip: Clip, Sendable {
 15 |     /// The image rendered for the clip's duration.
 16 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 17 |     internal let _duration: CMTime
 18 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
[24/56] Compiling Kadr Video.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/DSL/ImageClip.swift:16:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 14 | public struct ImageClip: Clip, Sendable {
 15 |     /// The image rendered for the clip's duration.
 16 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 17 |     internal let _duration: CMTime
 18 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
[25/56] Compiling Kadr ExportProgress.swift
[26/56] Compiling Kadr Exporter.swift
[27/56] Compiling Kadr Preset.swift
[28/56] Compiling Kadr ChromaKey.swift
[29/56] Compiling Kadr Filter.swift
[30/56] Compiling Kadr ExportEngine.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Engine/MaskCompositor.swift:22:9: error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
20 | /// users don't construct it directly.
21 | internal struct MaskCompositor: Compositor {
22 |     let mask: CIImage
   |         `- error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
23 |
24 |     func process(image: CIImage, context: CompositorContext) -> CIImage {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h:34:12: note: class 'CIImage' does not conform to the 'Sendable' protocol
 32 |
 33 | NS_CLASS_AVAILABLE(10_4, 5_0)
 34 | @interface CIImage : NSObject <NSSecureCoding, NSCopying>
    |            `- note: class 'CIImage' does not conform to the 'Sendable' protocol
 35 | {
 36 | #if TARGET_OS_OSX || TARGET_OS_MACCATALYST
[31/56] Compiling Kadr FilterProcessor.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Engine/MaskCompositor.swift:22:9: error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
20 | /// users don't construct it directly.
21 | internal struct MaskCompositor: Compositor {
22 |     let mask: CIImage
   |         `- error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
23 |
24 |     func process(image: CIImage, context: CompositorContext) -> CIImage {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h:34:12: note: class 'CIImage' does not conform to the 'Sendable' protocol
 32 |
 33 | NS_CLASS_AVAILABLE(10_4, 5_0)
 34 | @interface CIImage : NSObject <NSSecureCoding, NSCopying>
    |            `- note: class 'CIImage' does not conform to the 'Sendable' protocol
 35 | {
 36 | #if TARGET_OS_OSX || TARGET_OS_MACCATALYST
[32/56] Compiling Kadr ImageEncoder.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Engine/MaskCompositor.swift:22:9: error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
20 | /// users don't construct it directly.
21 | internal struct MaskCompositor: Compositor {
22 |     let mask: CIImage
   |         `- error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
23 |
24 |     func process(image: CIImage, context: CompositorContext) -> CIImage {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h:34:12: note: class 'CIImage' does not conform to the 'Sendable' protocol
 32 |
 33 | NS_CLASS_AVAILABLE(10_4, 5_0)
 34 | @interface CIImage : NSObject <NSSecureCoding, NSCopying>
    |            `- note: class 'CIImage' does not conform to the 'Sendable' protocol
 35 | {
 36 | #if TARGET_OS_OSX || TARGET_OS_MACCATALYST
[33/56] Compiling Kadr KadrVideoCompositor.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Engine/MaskCompositor.swift:22:9: error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
20 | /// users don't construct it directly.
21 | internal struct MaskCompositor: Compositor {
22 |     let mask: CIImage
   |         `- error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
23 |
24 |     func process(image: CIImage, context: CompositorContext) -> CIImage {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h:34:12: note: class 'CIImage' does not conform to the 'Sendable' protocol
 32 |
 33 | NS_CLASS_AVAILABLE(10_4, 5_0)
 34 | @interface CIImage : NSObject <NSSecureCoding, NSCopying>
    |            `- note: class 'CIImage' does not conform to the 'Sendable' protocol
 35 | {
 36 | #if TARGET_OS_OSX || TARGET_OS_MACCATALYST
[34/56] Compiling Kadr MaskCompositor.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Engine/MaskCompositor.swift:22:9: error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
20 | /// users don't construct it directly.
21 | internal struct MaskCompositor: Compositor {
22 |     let mask: CIImage
   |         `- error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
23 |
24 |     func process(image: CIImage, context: CompositorContext) -> CIImage {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h:34:12: note: class 'CIImage' does not conform to the 'Sendable' protocol
 32 |
 33 | NS_CLASS_AVAILABLE(10_4, 5_0)
 34 | @interface CIImage : NSObject <NSSecureCoding, NSCopying>
    |            `- note: class 'CIImage' does not conform to the 'Sendable' protocol
 35 | {
 36 | #if TARGET_OS_OSX || TARGET_OS_MACCATALYST
[35/56] Compiling Kadr MultiInputCompositor.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Engine/MaskCompositor.swift:22:9: error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
20 | /// users don't construct it directly.
21 | internal struct MaskCompositor: Compositor {
22 |     let mask: CIImage
   |         `- error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
23 |
24 |     func process(image: CIImage, context: CompositorContext) -> CIImage {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h:34:12: note: class 'CIImage' does not conform to the 'Sendable' protocol
 32 |
 33 | NS_CLASS_AVAILABLE(10_4, 5_0)
 34 | @interface CIImage : NSObject <NSSecureCoding, NSCopying>
    |            `- note: class 'CIImage' does not conform to the 'Sendable' protocol
 35 | {
 36 | #if TARGET_OS_OSX || TARGET_OS_MACCATALYST
[36/56] Compiling Kadr TextOverlay.swift
[37/56] Compiling Kadr TextStyle.swift
[38/56] Compiling Kadr Watermark.swift
[39/56] Compiling Kadr PlatformTypes.swift
[40/56] Compiling Kadr Timecode.swift
[41/56] Compiling Kadr OverlayRenderer.swift
[42/56] Compiling Kadr PlaybackComposer.swift
[43/56] Compiling Kadr ReverseProcessor.swift
[44/56] Compiling Kadr SpeedCurveSampler.swift
[45/56] Compiling Kadr KadrError.swift
[46/56] Compiling Kadr Clip+Speed.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Overlays/ImageOverlay.swift:26:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 24 | public struct ImageOverlay: Overlay, Sendable {
 25 |     /// The source image rendered into the overlay layer.
 26 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 27 |     /// Where the overlay's anchor lands on the render canvas.
 28 |     public let position: Position
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Overlays/StickerOverlay.swift:32:16: error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 30 | public struct StickerOverlay: Overlay, Sendable {
 31 |     /// The source image rendered into the sticker layer.
 32 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 33 |     /// Where the sticker's anchor lands on the render canvas.
 34 |     public let position: Position
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
[47/56] Compiling Kadr ImageOverlay.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Overlays/ImageOverlay.swift:26:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 24 | public struct ImageOverlay: Overlay, Sendable {
 25 |     /// The source image rendered into the overlay layer.
 26 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 27 |     /// Where the overlay's anchor lands on the render canvas.
 28 |     public let position: Position
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Overlays/StickerOverlay.swift:32:16: error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 30 | public struct StickerOverlay: Overlay, Sendable {
 31 |     /// The source image rendered into the sticker layer.
 32 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 33 |     /// Where the sticker's anchor lands on the render canvas.
 34 |     public let position: Position
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
[48/56] Compiling Kadr Overlay.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Overlays/ImageOverlay.swift:26:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 24 | public struct ImageOverlay: Overlay, Sendable {
 25 |     /// The source image rendered into the overlay layer.
 26 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 27 |     /// Where the overlay's anchor lands on the render canvas.
 28 |     public let position: Position
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Overlays/StickerOverlay.swift:32:16: error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 30 | public struct StickerOverlay: Overlay, Sendable {
 31 |     /// The source image rendered into the sticker layer.
 32 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 33 |     /// Where the sticker's anchor lands on the render canvas.
 34 |     public let position: Position
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
[49/56] Compiling Kadr StickerOverlay.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Overlays/ImageOverlay.swift:26:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 24 | public struct ImageOverlay: Overlay, Sendable {
 25 |     /// The source image rendered into the overlay layer.
 26 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 27 |     /// Where the overlay's anchor lands on the render canvas.
 28 |     public let position: Position
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Overlays/StickerOverlay.swift:32:16: error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 30 | public struct StickerOverlay: Overlay, Sendable {
 31 |     /// The source image rendered into the sticker layer.
 32 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 33 |     /// Where the sticker's anchor lands on the render canvas.
 34 |     public let position: Position
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
[50/56] Compiling Kadr TextAnimation.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Overlays/ImageOverlay.swift:26:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 24 | public struct ImageOverlay: Overlay, Sendable {
 25 |     /// The source image rendered into the overlay layer.
 26 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 27 |     /// Where the overlay's anchor lands on the render canvas.
 28 |     public let position: Position
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/.build/checkouts/kadr/Sources/Kadr/Overlays/StickerOverlay.swift:32:16: error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 30 | public struct StickerOverlay: Overlay, Sendable {
 31 |     /// The source image rendered into the sticker layer.
 32 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 33 |     /// Where the sticker's anchor lands on the render canvas.
 34 |     public let position: Position
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
[51/56] Compiling Kadr VideoBuilder.swift
[52/56] Compiling Kadr VideoClip.swift
[53/56] Compiling Kadr CancellationToken.swift
[54/56] Compiling Kadr CompositionBuilder.swift
[55/56] Compiling Kadr Compositor.swift
[56/56] Compiling Kadr CropCompositor.swift
BUILD FAILURE 6.1 macosSpm