The Swift Package Index logo.Swift Package Index

Build Information

Successful build of QRCode, reference main (49fec8), with Swift 6.1 for tvOS using Xcode 16.3 on 4 Mar 2026 03:12:16 UTC.

Swift 6 data race errors: 186

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme QRCode -destination generic/platform=tvOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

private let generatedEyeBackgroundPath__: CGPath = {
            ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeSquare.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeSquare.swift:66:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Square' may have shared mutable state; this is an error in the Swift 6 language mode
                private static let _defaultPupil = QRCode.PupilShape.Square()
                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeSquare.swift:27:38: note: class 'Square' does not conform to the 'Sendable' protocol
        @objc(QRCodePupilShapeSquare) class Square: NSObject, QRCodePupilShapeGenerator {
                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeSquare.swift:66:22: note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
                private static let _defaultPupil = QRCode.PupilShape.Square()
                                   ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeSquare.swift:66:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                private static let _defaultPupil = QRCode.PupilShape.Square()
                                   ^
                nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeSquarePeg.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeSquarePeg.swift:81:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Squircle' may have shared mutable state; this is an error in the Swift 6 language mode
                private static let _defaultPupil = QRCode.PupilShape.Squircle()
                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeSquircle.swift:27:40: note: class 'Squircle' does not conform to the 'Sendable' protocol
        @objc(QRCodePupilShapeSquircle) class Squircle: NSObject, QRCodePupilShapeGenerator {
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeSquarePeg.swift:81:22: note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
                private static let _defaultPupil = QRCode.PupilShape.Squircle()
                                   ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeSquarePeg.swift:81:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                private static let _defaultPupil = QRCode.PupilShape.Squircle()
                                   ^
                nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeSquircle.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeSquircle.swift:87:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Squircle' may have shared mutable state; this is an error in the Swift 6 language mode
                private static let _defaultPupil = QRCode.PupilShape.Squircle()
                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeSquircle.swift:27:40: note: class 'Squircle' does not conform to the 'Sendable' protocol
        @objc(QRCodePupilShapeSquircle) class Squircle: NSObject, QRCodePupilShapeGenerator {
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeSquircle.swift:87:22: note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
                private static let _defaultPupil = QRCode.PupilShape.Squircle()
                                   ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeSquircle.swift:87:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                private static let _defaultPupil = QRCode.PupilShape.Squircle()
                                   ^
                nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeSurroundingBars.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeSurroundingBars.swift:62:13: warning: let 'eyePath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let eyePath__: CGPath =
            ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeSurroundingBars.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
import CoreGraphics
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeSurroundingBars.swift:62:13: note: add '@MainActor' to make let 'eyePath__' part of global actor 'MainActor'
private let eyePath__: CGPath =
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeSurroundingBars.swift:62:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let eyePath__: CGPath =
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeSurroundingBars.swift:104:13: warning: let 'eyeBackgroundPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let eyeBackgroundPath__: CGPath =
            ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeSurroundingBars.swift:104:13: note: add '@MainActor' to make let 'eyeBackgroundPath__' part of global actor 'MainActor'
private let eyeBackgroundPath__: CGPath =
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeSurroundingBars.swift:104:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let eyeBackgroundPath__: CGPath =
            ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeTeardrop.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeTeardrop.swift:142:13: warning: let 'eyePath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let eyePath__: CGPath =
            ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeTeardrop.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
import CoreGraphics
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeTeardrop.swift:142:13: note: add '@MainActor' to make let 'eyePath__' part of global actor 'MainActor'
private let eyePath__: CGPath =
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeTeardrop.swift:142:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let eyePath__: CGPath =
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeTeardrop.swift:160:13: warning: let 'eyeBackgroundPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let eyeBackgroundPath__: CGPath =
            ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeTeardrop.swift:160:13: note: add '@MainActor' to make let 'eyeBackgroundPath__' part of global actor 'MainActor'
private let eyeBackgroundPath__: CGPath =
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeTeardrop.swift:160:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let eyeBackgroundPath__: CGPath =
            ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeUFO.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeUFO.swift:144:13: warning: let 'eyePath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let eyePath__: CGPath =
            ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeUFO.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
import CoreGraphics
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeUFO.swift:144:13: note: add '@MainActor' to make let 'eyePath__' part of global actor 'MainActor'
private let eyePath__: CGPath =
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeUFO.swift:144:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let eyePath__: CGPath =
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeUFO.swift:167:13: warning: let 'eyeBackgroundPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let eyeBackgroundPath__: CGPath =
            ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeUFO.swift:167:13: note: add '@MainActor' to make let 'eyeBackgroundPath__' part of global actor 'MainActor'
private let eyeBackgroundPath__: CGPath =
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeUFO.swift:167:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let eyeBackgroundPath__: CGPath =
            ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeUFORounded.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeUFORounded.swift:143:13: warning: let 'eyePath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let eyePath__: CGPath =
            ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeUFORounded.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
import CoreGraphics
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeUFORounded.swift:143:13: note: add '@MainActor' to make let 'eyePath__' part of global actor 'MainActor'
private let eyePath__: CGPath =
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeUFORounded.swift:143:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let eyePath__: CGPath =
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeUFORounded.swift:170:13: warning: let 'eyeBackgroundPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let eyeBackgroundPath__: CGPath =
            ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeUFORounded.swift:170:13: note: add '@MainActor' to make let 'eyeBackgroundPath__' part of global actor 'MainActor'
private let eyeBackgroundPath__: CGPath =
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeUFORounded.swift:170:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let eyeBackgroundPath__: CGPath =
            ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeUsePixelShape.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeUsePixelShape.swift:23:13: warning: let '_EyeTemplate' is not concurrency-safe because non-'Sendable' type 'BoolMatrix' may have shared mutable state; this is an error in the Swift 6 language mode
private let _EyeTemplate = BoolMatrix(dimension: 9, rawFlattenedInt: [
            ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/private/BoolMatrix.swift:23:38: note: class 'BoolMatrix' does not conform to the 'Sendable' protocol
@objc(QRCodeBoolMatrix) public class BoolMatrix: NSObject {
                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeUsePixelShape.swift:23:13: note: add '@MainActor' to make let '_EyeTemplate' part of global actor 'MainActor'
private let _EyeTemplate = BoolMatrix(dimension: 9, rawFlattenedInt: [
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeUsePixelShape.swift:23:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let _EyeTemplate = BoolMatrix(dimension: 9, rawFlattenedInt: [
            ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/fill/QRCodeFillStyle.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/fill/QRCodeFillStyle.swift:31:27: warning: static property 'clear' is not concurrency-safe because non-'Sendable' type 'QRCode.FillStyle.Solid' may have shared mutable state; this is an error in the Swift 6 language mode
                @objc public static let clear = FillStyle.Solid(.commonClear)
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/fill/QRCodeFillStyleSolid.swift:26:36: note: class 'Solid' does not conform to the 'Sendable' protocol
        @objc(QRCodeFillStyleSolid) class Solid: NSObject, QRCodeFillStyleGenerator {
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/fill/QRCodeFillStyle.swift:31:27: note: add '@MainActor' to make static property 'clear' part of global actor 'MainActor'
                @objc public static let clear = FillStyle.Solid(.commonClear)
                                        ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/fill/QRCodeFillStyle.swift:31:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                @objc public static let clear = FillStyle.Solid(.commonClear)
                                        ^
                      nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/fill/QRCodeFillStyleFactory.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/fill/QRCodeFillStyleFactory.swift:27:20: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'QRCodeFillStyleFactory' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let shared = QRCodeFillStyleFactory()
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/fill/QRCodeFillStyleFactory.swift:25:14: note: class 'QRCodeFillStyleFactory' does not conform to the 'Sendable' protocol
public class QRCodeFillStyleFactory {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/fill/QRCodeFillStyleFactory.swift:27:20: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
        public static let shared = QRCodeFillStyleFactory()
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/fill/QRCodeFillStyleFactory.swift:27:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let shared = QRCodeFillStyleFactory()
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/fill/QRCodeFillStyleFactory.swift:49:21: warning: static property 'registeredTypes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        private static var registeredTypes: [any QRCodeFillStyleGenerator.Type] = [
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/fill/QRCodeFillStyleFactory.swift:49:21: note: convert 'registeredTypes' to a 'let' constant to make 'Sendable' shared state immutable
        private static var registeredTypes: [any QRCodeFillStyleGenerator.Type] = [
                       ~~~ ^
                       let
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/fill/QRCodeFillStyleFactory.swift:49:21: note: add '@MainActor' to make static property 'registeredTypes' part of global actor 'MainActor'
        private static var registeredTypes: [any QRCodeFillStyleGenerator.Type] = [
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/fill/QRCodeFillStyleFactory.swift:49:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static var registeredTypes: [any QRCodeFillStyleGenerator.Type] = [
                           ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/fill/QRCodeFillStyleImage.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/fill/QRCodeFillStyleLinearGradient.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/fill/QRCodeFillStyleRadialGradient.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/fill/QRCodeFillStyleSolid.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShape.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeArc.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeArc.swift:55:13: warning: let 'pupilPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let pupilPath__: CGPath =
            ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeArc.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
import CoreGraphics
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeArc.swift:55:13: note: add '@MainActor' to make let 'pupilPath__' part of global actor 'MainActor'
private let pupilPath__: CGPath =
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeArc.swift:55:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let pupilPath__: CGPath =
            ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeArrow.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeArrow.swift:119:13: warning: let 'pupilPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let pupilPath__: CGPath =
            ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeArrow.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
import CoreGraphics
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeArrow.swift:119:13: note: add '@MainActor' to make let 'pupilPath__' part of global actor 'MainActor'
private let pupilPath__: CGPath =
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeArrow.swift:119:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let pupilPath__: CGPath =
            ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeBarsHorizontal.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeBarsVertical.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling CGImage+import.swift, CGImage+platform.swift (in target 'SwiftImageReadWrite' from project 'SwiftImageReadWrite')
SwiftCompile normal arm64 Compiling\ RandomNumberWithSeed.swift,\ String+extensions.swift,\ Utils.swift,\ QRCode+Shape.swift,\ QRCode+Style.swift,\ QRCodePixelShape.swift,\ QRCodePixelShapeAbstract.swift,\ QRCodePixelShapeBlob.swift,\ QRCodePixelShapeCircuit.swift,\ QRCodePixelShapeCrosshatch.swift,\ QRCodePixelShapeCurvePixel.swift,\ QRCodePixelShapeDiagonalStripes.swift,\ QRCodePixelShapeDonut.swift,\ QRCodePixelShapeDripHorizontal.swift,\ QRCodePixelShapeDripVertical.swift,\ QRCodePixelShapeFactory.swift,\ QRCodePixelShapeGrid.swift,\ QRCodePixelShapeHorizontal.swift,\ QRCodePixelShapePointy.swift,\ QRCodePixelShapeRazor.swift,\ QRCodePixelShapeRoundedEndIndent.swift,\ QRCodePixelShapeRoundedPath.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/private/RandomNumberWithSeed.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/private/String+extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/private/Utils.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/QRCode+Shape.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/QRCode+Style.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShape.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeAbstract.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeBlob.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCurvePixel.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDiagonalStripes.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDonut.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripHorizontal.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripVertical.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeGrid.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeHorizontal.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapePointy.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRoundedEndIndent.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRoundedPath.swift (in target 'QRCode' from project 'QRCode')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/private/RandomNumberWithSeed.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/private/String+extensions.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/private/Utils.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/QRCode+Shape.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/QRCode+Style.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShape.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeAbstract.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeBlob.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeBlob.swift:148:13: warning: static property 'templateRoundTopLeft' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateRoundTopLeft =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeBlob.swift:21:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
import CoreGraphics
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeBlob.swift:148:13: note: add '@MainActor' to make static property 'templateRoundTopLeft' part of global actor 'MainActor'
        static let templateRoundTopLeft =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeBlob.swift:148:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateRoundTopLeft =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeBlob.swift:158:13: warning: static property 'templateRoundTopRight' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateRoundTopRight =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeBlob.swift:158:13: note: add '@MainActor' to make static property 'templateRoundTopRight' part of global actor 'MainActor'
        static let templateRoundTopRight =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeBlob.swift:158:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateRoundTopRight =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeBlob.swift:168:13: warning: static property 'templateRoundBottomLeft' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateRoundBottomLeft =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeBlob.swift:168:13: note: add '@MainActor' to make static property 'templateRoundBottomLeft' part of global actor 'MainActor'
        static let templateRoundBottomLeft =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeBlob.swift:168:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateRoundBottomLeft =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeBlob.swift:178:13: warning: static property 'templateRoundBottomRight' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateRoundBottomRight =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeBlob.swift:178:13: note: add '@MainActor' to make static property 'templateRoundBottomRight' part of global actor 'MainActor'
        static let templateRoundBottomRight =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeBlob.swift:178:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateRoundBottomRight =
                   ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:158:13: warning: static property 'templateCentroid' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateCentroid = CGPath(ellipseIn: CGRect(x: 1, y: 1, width: 8, height: 8), transform: nil)
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:21:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
import CoreGraphics
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:158:13: note: add '@MainActor' to make static property 'templateCentroid' part of global actor 'MainActor'
        static let templateCentroid = CGPath(ellipseIn: CGRect(x: 1, y: 1, width: 8, height: 8), transform: nil)
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:158:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateCentroid = CGPath(ellipseIn: CGRect(x: 1, y: 1, width: 8, height: 8), transform: nil)
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:160:13: warning: static property 'templateTop' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateTop =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:160:13: note: add '@MainActor' to make static property 'templateTop' part of global actor 'MainActor'
        static let templateTop =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:160:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateTop =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:177:13: warning: static property 'templateBottom' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateBottom =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:177:13: note: add '@MainActor' to make static property 'templateBottom' part of global actor 'MainActor'
        static let templateBottom =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:177:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateBottom =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:194:13: warning: static property 'templateLeft' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateLeft =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:194:13: note: add '@MainActor' to make static property 'templateLeft' part of global actor 'MainActor'
        static let templateLeft =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:194:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateLeft =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:211:13: warning: static property 'templateRight' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateRight =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:211:13: note: add '@MainActor' to make static property 'templateRight' part of global actor 'MainActor'
        static let templateRight =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:211:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateRight =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:230:13: warning: static property 'templateTopBottom' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateTopBottom =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:230:13: note: add '@MainActor' to make static property 'templateTopBottom' part of global actor 'MainActor'
        static let templateTopBottom =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:230:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateTopBottom =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:253:13: warning: static property 'templateLeftRight' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateLeftRight =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:253:13: note: add '@MainActor' to make static property 'templateLeftRight' part of global actor 'MainActor'
        static let templateLeftRight =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:253:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateLeftRight =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:278:13: warning: static property 'templateTopLeftRight' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateTopLeftRight =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:278:13: note: add '@MainActor' to make static property 'templateTopLeftRight' part of global actor 'MainActor'
        static let templateTopLeftRight =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:278:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateTopLeftRight =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:306:13: warning: static property 'templateLeftBottomRight' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateLeftBottomRight =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:306:13: note: add '@MainActor' to make static property 'templateLeftBottomRight' part of global actor 'MainActor'
        static let templateLeftBottomRight =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:306:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateLeftBottomRight =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:334:13: warning: static property 'templateTopRightBottom' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateTopRightBottom =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:334:13: note: add '@MainActor' to make static property 'templateTopRightBottom' part of global actor 'MainActor'
        static let templateTopRightBottom =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:334:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateTopRightBottom =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:362:13: warning: static property 'templateTopLeftBottom' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateTopLeftBottom =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:362:13: note: add '@MainActor' to make static property 'templateTopLeftBottom' part of global actor 'MainActor'
        static let templateTopLeftBottom =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:362:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateTopLeftBottom =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:393:13: warning: static property 'templateTopLeftBottomRight' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateTopLeftBottomRight =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:393:13: note: add '@MainActor' to make static property 'templateTopLeftBottomRight' part of global actor 'MainActor'
        static let templateTopLeftBottomRight =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:393:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateTopLeftBottomRight =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:427:13: warning: static property 'templateTopLeft' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateTopLeft =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:427:13: note: add '@MainActor' to make static property 'templateTopLeft' part of global actor 'MainActor'
        static let templateTopLeft =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:427:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateTopLeft =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:449:13: warning: static property 'templateTopRight' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateTopRight =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:449:13: note: add '@MainActor' to make static property 'templateTopRight' part of global actor 'MainActor'
        static let templateTopRight =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:449:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateTopRight =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:471:13: warning: static property 'templateBottomLeft' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateBottomLeft =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:471:13: note: add '@MainActor' to make static property 'templateBottomLeft' part of global actor 'MainActor'
        static let templateBottomLeft =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:471:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateBottomLeft =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:493:13: warning: static property 'templateBottomRight' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateBottomRight =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:493:13: note: add '@MainActor' to make static property 'templateBottomRight' part of global actor 'MainActor'
        static let templateBottomRight =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCircuit.swift:493:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateBottomRight =
                   ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:169:13: warning: static property 'templateNone' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateNone = CGPath(ellipseIn: CGRect(x: 1, y: 1, width: 8, height: 8), transform: nil)
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:21:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
import CoreGraphics
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:169:13: note: add '@MainActor' to make static property 'templateNone' part of global actor 'MainActor'
        static let templateNone = CGPath(ellipseIn: CGRect(x: 1, y: 1, width: 8, height: 8), transform: nil)
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:169:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateNone = CGPath(ellipseIn: CGRect(x: 1, y: 1, width: 8, height: 8), transform: nil)
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:173:13: warning: static property 'templateTL' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateTL =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:173:13: note: add '@MainActor' to make static property 'templateTL' part of global actor 'MainActor'
        static let templateTL =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:173:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateTL =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:189:13: warning: static property 'templateTR' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateTR =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:189:13: note: add '@MainActor' to make static property 'templateTR' part of global actor 'MainActor'
        static let templateTR =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:189:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateTR =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:205:13: warning: static property 'templateBL' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateBL =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:205:13: note: add '@MainActor' to make static property 'templateBL' part of global actor 'MainActor'
        static let templateBL =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:205:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateBL =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:220:13: warning: static property 'templateBR' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateBR =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:220:13: note: add '@MainActor' to make static property 'templateBR' part of global actor 'MainActor'
        static let templateBR =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:220:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateBR =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:237:13: warning: static property 'templateTLTR' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateTLTR =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:237:13: note: add '@MainActor' to make static property 'templateTLTR' part of global actor 'MainActor'
        static let templateTLTR =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:237:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateTLTR =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:257:13: warning: static property 'templateTLBL' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateTLBL =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:257:13: note: add '@MainActor' to make static property 'templateTLBL' part of global actor 'MainActor'
        static let templateTLBL =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:257:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateTLBL =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:279:13: warning: static property 'templateBLBR' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateBLBR =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:279:13: note: add '@MainActor' to make static property 'templateBLBR' part of global actor 'MainActor'
        static let templateBLBR =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:279:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateBLBR =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:298:13: warning: static property 'templateTRBR' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateTRBR =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:298:13: note: add '@MainActor' to make static property 'templateTRBR' part of global actor 'MainActor'
        static let templateTRBR =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:298:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateTRBR =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:331:13: warning: static property 'templateTRBL' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateTRBL =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:331:13: note: add '@MainActor' to make static property 'templateTRBL' part of global actor 'MainActor'
        static let templateTRBL =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:331:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateTRBL =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:350:13: warning: static property 'templateTLBR' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateTLBR =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:350:13: note: add '@MainActor' to make static property 'templateTLBR' part of global actor 'MainActor'
        static let templateTLBR =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:350:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateTLBR =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:372:13: warning: static property 'templateTLTRBL' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateTLTRBL =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:372:13: note: add '@MainActor' to make static property 'templateTLTRBL' part of global actor 'MainActor'
        static let templateTLTRBL =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:372:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateTLTRBL =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:396:13: warning: static property 'templateTLTRBR' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateTLTRBR =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:396:13: note: add '@MainActor' to make static property 'templateTLTRBR' part of global actor 'MainActor'
        static let templateTLTRBR =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:396:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateTLTRBR =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:421:13: warning: static property 'templateTRBLBR' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateTRBLBR =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:421:13: note: add '@MainActor' to make static property 'templateTRBLBR' part of global actor 'MainActor'
        static let templateTRBLBR =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:421:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateTRBLBR =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:444:13: warning: static property 'templateTLBLBR' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateTLBLBR =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:444:13: note: add '@MainActor' to make static property 'templateTLBLBR' part of global actor 'MainActor'
        static let templateTLBLBR =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:444:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateTLBLBR =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:471:13: warning: static property 'templateAll' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateAll =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:471:13: note: add '@MainActor' to make static property 'templateAll' part of global actor 'MainActor'
        static let templateAll =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCrosshatch.swift:471:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateAll =
                   ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCurvePixel.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCurvePixel.swift:203:21: warning: static property 'templateSquare' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        private static let templateSquare = CGPath(
                           ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCurvePixel.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
import CoreGraphics
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCurvePixel.swift:203:21: note: add '@MainActor' to make static property 'templateSquare' part of global actor 'MainActor'
        private static let templateSquare = CGPath(
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeCurvePixel.swift:203:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static let templateSquare = CGPath(
                           ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDiagonalStripes.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDiagonalStripes.swift:101:13: warning: static property 'pixelShape_' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let pixelShape_ = CGPath.make { pixelPath in
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDiagonalStripes.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
import CoreGraphics
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDiagonalStripes.swift:101:13: note: add '@MainActor' to make static property 'pixelShape_' part of global actor 'MainActor'
        static let pixelShape_ = CGPath.make { pixelPath in
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDiagonalStripes.swift:101:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let pixelShape_ = CGPath.make { pixelPath in
                   ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDonut.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDonut.swift:99:13: warning: let 'donutsPixelPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let donutsPixelPath__ = CGPath.make { ch_pixelPath in
            ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDonut.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
import CoreGraphics
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDonut.swift:99:13: note: add '@MainActor' to make let 'donutsPixelPath__' part of global actor 'MainActor'
private let donutsPixelPath__ = CGPath.make { ch_pixelPath in
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDonut.swift:99:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let donutsPixelPath__ = CGPath.make { ch_pixelPath in
            ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripHorizontal.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripHorizontal.swift:114:13: warning: let 'dripPixelPathNone__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let dripPixelPathNone__ = CGPath.make { dripnonePath in
            ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripHorizontal.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
import CoreGraphics
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripHorizontal.swift:114:13: note: add '@MainActor' to make let 'dripPixelPathNone__' part of global actor 'MainActor'
private let dripPixelPathNone__ = CGPath.make { dripnonePath in
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripHorizontal.swift:114:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let dripPixelPathNone__ = CGPath.make { dripnonePath in
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripHorizontal.swift:123:13: warning: let 'dripPixelPathTrailing__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let dripPixelPathTrailing__ = CGPath.make { driptrailingPath in
            ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripHorizontal.swift:123:13: note: add '@MainActor' to make let 'dripPixelPathTrailing__' part of global actor 'MainActor'
private let dripPixelPathTrailing__ = CGPath.make { driptrailingPath in
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripHorizontal.swift:123:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let dripPixelPathTrailing__ = CGPath.make { driptrailingPath in
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripHorizontal.swift:138:13: warning: let 'dripPixelPathBoth__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let dripPixelPathBoth__ = CGPath.make { dripbothPath in
            ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripHorizontal.swift:138:13: note: add '@MainActor' to make let 'dripPixelPathBoth__' part of global actor 'MainActor'
private let dripPixelPathBoth__ = CGPath.make { dripbothPath in
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripHorizontal.swift:138:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let dripPixelPathBoth__ = CGPath.make { dripbothPath in
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripHorizontal.swift:159:13: warning: let 'dripPixelPathLeading__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let dripPixelPathLeading__ = CGPath.make { dripleadingPath in
            ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripHorizontal.swift:159:13: note: add '@MainActor' to make let 'dripPixelPathLeading__' part of global actor 'MainActor'
private let dripPixelPathLeading__ = CGPath.make { dripleadingPath in
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripHorizontal.swift:159:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let dripPixelPathLeading__ = CGPath.make { dripleadingPath in
            ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripVertical.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripVertical.swift:114:13: warning: let 'dripPixelPathNone__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let dripPixelPathNone__ = CGPath.make { dripnonePath in
            ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripVertical.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
import CoreGraphics
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripVertical.swift:114:13: note: add '@MainActor' to make let 'dripPixelPathNone__' part of global actor 'MainActor'
private let dripPixelPathNone__ = CGPath.make { dripnonePath in
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripVertical.swift:114:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let dripPixelPathNone__ = CGPath.make { dripnonePath in
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripVertical.swift:123:13: warning: let 'dripPixelPathTop__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let dripPixelPathTop__ = CGPath.make { driptopPath in
            ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripVertical.swift:123:13: note: add '@MainActor' to make let 'dripPixelPathTop__' part of global actor 'MainActor'
private let dripPixelPathTop__ = CGPath.make { driptopPath in
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripVertical.swift:123:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let dripPixelPathTop__ = CGPath.make { driptopPath in
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripVertical.swift:138:13: warning: let 'dripPixelPathMid__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let dripPixelPathMid__ = CGPath.make { dripmidPath in
            ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripVertical.swift:138:13: note: add '@MainActor' to make let 'dripPixelPathMid__' part of global actor 'MainActor'
private let dripPixelPathMid__ = CGPath.make { dripmidPath in
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripVertical.swift:138:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let dripPixelPathMid__ = CGPath.make { dripmidPath in
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripVertical.swift:159:13: warning: let 'dripPixelPathBottom__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let dripPixelPathBottom__ = CGPath.make { dripbottomPath in
            ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripVertical.swift:159:13: note: add '@MainActor' to make let 'dripPixelPathBottom__' part of global actor 'MainActor'
private let dripPixelPathBottom__ = CGPath.make { dripbottomPath in
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeDripVertical.swift:159:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let dripPixelPathBottom__ = CGPath.make { dripbottomPath in
            ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeFactory.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeFactory.swift:26:26: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'QRCodePixelShapeFactory' may have shared mutable state; this is an error in the Swift 6 language mode
        @objc public static let shared = QRCodePixelShapeFactory()
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeFactory.swift:24:26: note: class 'QRCodePixelShapeFactory' does not conform to the 'Sendable' protocol
@objc public final class QRCodePixelShapeFactory: NSObject {
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeFactory.swift:26:26: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
        @objc public static let shared = QRCodePixelShapeFactory()
                                ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeFactory.swift:26:26: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        @objc public static let shared = QRCodePixelShapeFactory()
                                ^
              nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeFactory.swift:112:21: warning: static property 'defaultMatrix' is not concurrency-safe because non-'Sendable' type 'BoolMatrix' may have shared mutable state; this is an error in the Swift 6 language mode
        private static let defaultMatrix = BoolMatrix(dimension: 7, rawFlattenedInt: [
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/private/BoolMatrix.swift:23:38: note: class 'BoolMatrix' does not conform to the 'Sendable' protocol
@objc(QRCodeBoolMatrix) public class BoolMatrix: NSObject {
                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeFactory.swift:112:21: note: add '@MainActor' to make static property 'defaultMatrix' part of global actor 'MainActor'
        private static let defaultMatrix = BoolMatrix(dimension: 7, rawFlattenedInt: [
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeFactory.swift:112:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static let defaultMatrix = BoolMatrix(dimension: 7, rawFlattenedInt: [
                           ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeGrid.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeGrid.swift:79:13: warning: let '_2x2template' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let _2x2template: CGPath = {
            ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeGrid.swift:21:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
import CoreGraphics
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeGrid.swift:79:13: note: add '@MainActor' to make let '_2x2template' part of global actor 'MainActor'
private let _2x2template: CGPath = {
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeGrid.swift:79:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let _2x2template: CGPath = {
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeGrid.swift:161:13: warning: let '_3x3template' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let _3x3template: CGPath = {
            ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeGrid.swift:161:13: note: add '@MainActor' to make let '_3x3template' part of global actor 'MainActor'
private let _3x3template: CGPath = {
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeGrid.swift:161:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let _3x3template: CGPath = {
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeGrid.swift:273:13: warning: let '_4x4template' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let _4x4template: CGPath = {
            ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeGrid.swift:273:13: note: add '@MainActor' to make let '_4x4template' part of global actor 'MainActor'
private let _4x4template: CGPath = {
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeGrid.swift:273:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let _4x4template: CGPath = {
            ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeHorizontal.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapePointy.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapePointy.swift:43:14: warning: static property 'templateSquare' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
                static let templateSquare: CGPath = {
                           ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapePointy.swift:21:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
import CoreGraphics
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapePointy.swift:43:14: note: add '@MainActor' to make static property 'templateSquare' part of global actor 'MainActor'
                static let templateSquare: CGPath = {
                           ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapePointy.swift:43:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                static let templateSquare: CGPath = {
                           ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapePointy.swift:47:14: warning: static property 'templatePointingDown' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
                static let templatePointingDown: CGPath = {
                           ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapePointy.swift:47:14: note: add '@MainActor' to make static property 'templatePointingDown' part of global actor 'MainActor'
                static let templatePointingDown: CGPath = {
                           ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapePointy.swift:47:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                static let templatePointingDown: CGPath = {
                           ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapePointy.swift:58:14: warning: static property 'templatePointingUp' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
                static let templatePointingUp: CGPath = {
                           ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapePointy.swift:58:14: note: add '@MainActor' to make static property 'templatePointingUp' part of global actor 'MainActor'
                static let templatePointingUp: CGPath = {
                           ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapePointy.swift:58:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                static let templatePointingUp: CGPath = {
                           ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapePointy.swift:70:14: warning: static property 'templatePointingRight' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
                static let templatePointingRight: CGPath = {
                           ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapePointy.swift:70:14: note: add '@MainActor' to make static property 'templatePointingRight' part of global actor 'MainActor'
                static let templatePointingRight: CGPath = {
                           ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapePointy.swift:70:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                static let templatePointingRight: CGPath = {
                           ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapePointy.swift:82:14: warning: static property 'templatePointingLeft' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
                static let templatePointingLeft: CGPath = {
                           ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapePointy.swift:82:14: note: add '@MainActor' to make static property 'templatePointingLeft' part of global actor 'MainActor'
                static let templatePointingLeft: CGPath = {
                           ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapePointy.swift:82:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                static let templatePointingLeft: CGPath = {
                           ^
                nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:183:13: warning: static property 'templateSquare' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateSquare =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:21:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
import CoreGraphics
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:183:13: note: add '@MainActor' to make static property 'templateSquare' part of global actor 'MainActor'
        static let templateSquare =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:183:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateSquare =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:187:13: warning: static property 'templateIsolated' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateIsolated =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:187:13: note: add '@MainActor' to make static property 'templateIsolated' part of global actor 'MainActor'
        static let templateIsolated =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:187:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateIsolated =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:190:13: warning: static property 'templatePointingDown' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templatePointingDown =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:190:13: note: add '@MainActor' to make static property 'templatePointingDown' part of global actor 'MainActor'
        static let templatePointingDown =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:190:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templatePointingDown =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:201:13: warning: static property 'templatePointingUp' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templatePointingUp =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:201:13: note: add '@MainActor' to make static property 'templatePointingUp' part of global actor 'MainActor'
        static let templatePointingUp =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:201:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templatePointingUp =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:212:13: warning: static property 'templatePointingRight' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templatePointingRight =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:212:13: note: add '@MainActor' to make static property 'templatePointingRight' part of global actor 'MainActor'
        static let templatePointingRight =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:212:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templatePointingRight =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:223:13: warning: static property 'templatePointingLeft' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templatePointingLeft =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:223:13: note: add '@MainActor' to make static property 'templatePointingLeft' part of global actor 'MainActor'
        static let templatePointingLeft =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:223:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templatePointingLeft =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:236:13: warning: static property 'templatePointingUpperLeft' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templatePointingUpperLeft =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:236:13: note: add '@MainActor' to make static property 'templatePointingUpperLeft' part of global actor 'MainActor'
        static let templatePointingUpperLeft =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:236:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templatePointingUpperLeft =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:250:13: warning: static property 'templatePointingUpperRight' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templatePointingUpperRight =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:250:13: note: add '@MainActor' to make static property 'templatePointingUpperRight' part of global actor 'MainActor'
        static let templatePointingUpperRight =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:250:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templatePointingUpperRight =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:264:13: warning: static property 'templatePointingLowerLeft' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templatePointingLowerLeft =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:264:13: note: add '@MainActor' to make static property 'templatePointingLowerLeft' part of global actor 'MainActor'
        static let templatePointingLowerLeft =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:264:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templatePointingLowerLeft =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:278:13: warning: static property 'templatePointingLowerRight' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templatePointingLowerRight =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:278:13: note: add '@MainActor' to make static property 'templatePointingLowerRight' part of global actor 'MainActor'
        static let templatePointingLowerRight =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:278:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templatePointingLowerRight =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:296:13: warning: static property 'templateRoundTopLeft' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateRoundTopLeft =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:296:13: note: add '@MainActor' to make static property 'templateRoundTopLeft' part of global actor 'MainActor'
        static let templateRoundTopLeft =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:296:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateRoundTopLeft =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:306:13: warning: static property 'templateRoundTopRight' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateRoundTopRight =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:306:13: note: add '@MainActor' to make static property 'templateRoundTopRight' part of global actor 'MainActor'
        static let templateRoundTopRight =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:306:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateRoundTopRight =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:318:13: warning: static property 'templateRoundBottomLeft' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateRoundBottomLeft =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:318:13: note: add '@MainActor' to make static property 'templateRoundBottomLeft' part of global actor 'MainActor'
        static let templateRoundBottomLeft =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:318:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateRoundBottomLeft =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:328:13: warning: static property 'templateRoundBottomRight' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let templateRoundBottomRight =
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:328:13: note: add '@MainActor' to make static property 'templateRoundBottomRight' part of global actor 'MainActor'
        static let templateRoundBottomRight =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRazor.swift:328:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let templateRoundBottomRight =
                   ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRoundedEndIndent.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRoundedEndIndent.swift:265:21: warning: static property 'templateSquare' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        private static let templateSquare = CGPath(rect: QRCode.PixelShape.RoundedEndIndent.DefaultRect, transform: nil)
                           ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRoundedEndIndent.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
import CoreGraphics
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRoundedEndIndent.swift:265:21: note: add '@MainActor' to make static property 'templateSquare' part of global actor 'MainActor'
        private static let templateSquare = CGPath(rect: QRCode.PixelShape.RoundedEndIndent.DefaultRect, transform: nil)
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRoundedEndIndent.swift:265:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static let templateSquare = CGPath(rect: QRCode.PixelShape.RoundedEndIndent.DefaultRect, transform: nil)
                           ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRoundedPath.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRoundedPath.swift:264:21: warning: static property 'templateSquare' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        private static let templateSquare = CGPath(rect: QRCode.PixelShape.RoundedPath.DefaultRect, transform: nil)
                           ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRoundedPath.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
import CoreGraphics
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRoundedPath.swift:264:21: note: add '@MainActor' to make static property 'templateSquare' part of global actor 'MainActor'
        private static let templateSquare = CGPath(rect: QRCode.PixelShape.RoundedPath.DefaultRect, transform: nil)
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/QRCodePixelShapeRoundedPath.swift:264:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static let templateSquare = CGPath(rect: QRCode.PixelShape.RoundedPath.DefaultRect, transform: nil)
                           ^
        nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling SwiftUI+extensions.swift (in target 'SwiftImageReadWrite' from project 'SwiftImageReadWrite')
SwiftDriver\ Compilation SwiftImageReadWrite normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftImageReadWrite' from project 'SwiftImageReadWrite')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftImageReadWrite -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftImageReadWrite.build/Debug-appletvos/SwiftImageReadWrite.build/Objects-normal/arm64/SwiftImageReadWrite.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftImageReadWrite.build/Debug-appletvos/SwiftImageReadWrite.build/Objects-normal/arm64/SwiftImageReadWrite-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftImageReadWrite.build/Debug-appletvos/SwiftImageReadWrite.build/Objects-normal/arm64/SwiftImageReadWrite.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftImageReadWrite.build/Debug-appletvos/SwiftImageReadWrite.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftImageReadWrite.build/Debug-appletvos/SwiftImageReadWrite.build/Objects-normal/arm64/SwiftImageReadWrite_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftImageReadWrite.build/Debug-appletvos/SwiftImageReadWrite.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftImageReadWrite.build/Debug-appletvos/SwiftImageReadWrite.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftImageReadWrite.build/Debug-appletvos/SwiftImageReadWrite.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftImageReadWrite.build/Debug-appletvos/SwiftImageReadWrite.build/Objects-normal/arm64/SwiftImageReadWrite-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling CGColor+hex.swift, CGContext+extensions.swift, CGFloat+extensions.swift, CGImage+diff.swift, CGImage+extensions.swift, CGMutablePath+PaintCodeHelpers.swift, CGPath+RoundedRectExtensions.swift, CGPath+SVG.swift, CGPath+codable.swift, CGPath+extensions.swift, CGPath+hexagon.swift, CGSize+extensions.swift, Clamp.swift, DSFGradient.swift, Debounce.swift, FileManager+extensions.swift, FixedWidthInteger+extensions.swift, NSBezierPath+extensions.swift, NSImage+extensions.swift, Neighbours.swift, Optional+extensions.swift, QRCode+Platform.swift (in target 'QRCode' from project 'QRCode')
SwiftCompile normal arm64 Compiling\ QRCodePixelShapeStar.swift,\ QRCodePixelShapeStitch.swift,\ QRCodePixelShapeWave.swift,\ QRCodePixelShapeWex.swift,\ QRCodePixelShapeInset+Fixed.swift,\ QRCodePixelShapeInset+Generator.swift,\ QRCodePixelShapeInset+HorizontalWave.swift,\ QRCodePixelShapeInset+Pinch.swift,\ QRCodePixelShapeInset+Punch.swift,\ QRCodePixelShapeInset+Random.swift,\ QRCodePixelShapeInset+VerticalWave.swift,\ QRCodePixelShapePixel.swift,\ QRCodePixelShapeRotation+Fixed.swift,\ QRCodePixelShapeRotation+Generator.swift,\ QRCodePixelShapeRotation+HWave.swift,\ QRCodePixelShapeRotation+Random.swift,\ QRCodePixelShapeRotation+VWave.swift,\ QRCodeEyeShape.swift,\ QRCodeEyeShapeArc.swift,\ QRCodeEyeShapeBarsHorizontal.swift,\ QRCodeEyeShapeBarsVertical.swift,\ QRCodeEyeShapeCRT.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStar.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStitch.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWave.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWex.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/inset-generator/QRCodePixelShapeInset+Fixed.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/inset-generator/QRCodePixelShapeInset+Generator.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/inset-generator/QRCodePixelShapeInset+HorizontalWave.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/inset-generator/QRCodePixelShapeInset+Pinch.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/inset-generator/QRCodePixelShapeInset+Punch.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/inset-generator/QRCodePixelShapeInset+Random.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/inset-generator/QRCodePixelShapeInset+VerticalWave.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/private/QRCodePixelShapePixel.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/rotation-generator/QRCodePixelShapeRotation+Fixed.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/rotation-generator/QRCodePixelShapeRotation+Generator.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/rotation-generator/QRCodePixelShapeRotation+HWave.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/rotation-generator/QRCodePixelShapeRotation+Random.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/rotation-generator/QRCodePixelShapeRotation+VWave.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShape.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsHorizontal.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsVertical.swift /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeCRT.swift (in target 'QRCode' from project 'QRCode')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStar.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStar.swift:127:13: warning: let 'pixelPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let pixelPath__: CGPath = CGPath.make { starPath in
            ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStar.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
import CoreGraphics
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStar.swift:127:13: note: add '@MainActor' to make let 'pixelPath__' part of global actor 'MainActor'
private let pixelPath__: CGPath = CGPath.make { starPath in
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStar.swift:127:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let pixelPath__: CGPath = CGPath.make { starPath in
            ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStitch.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStitch.swift:86:13: warning: static property 'pixelShape_' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
        static let pixelShape_ = CGPath.make { a in
                   ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStitch.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
import CoreGraphics
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStitch.swift:86:13: note: add '@MainActor' to make static property 'pixelShape_' part of global actor 'MainActor'
        static let pixelShape_ = CGPath.make { a in
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStitch.swift:86:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let pixelShape_ = CGPath.make { a in
                   ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWave.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWave.swift:127:13: warning: let 'generatedPixelPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let generatedPixelPath__: CGPath = CGPath.make { wavePath in
            ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWave.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
import CoreGraphics
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWave.swift:127:13: note: add '@MainActor' to make let 'generatedPixelPath__' part of global actor 'MainActor'
private let generatedPixelPath__: CGPath = CGPath.make { wavePath in
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWave.swift:127:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let generatedPixelPath__: CGPath = CGPath.make { wavePath in
            ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWex.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWex.swift:117:14: warning: static property 'WexPixel10x10' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
                static let WexPixel10x10 = CGPath.make { wexshapePath in
                           ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWex.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
import CoreGraphics
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWex.swift:117:14: note: add '@MainActor' to make static property 'WexPixel10x10' part of global actor 'MainActor'
                static let WexPixel10x10 = CGPath.make { wexshapePath in
                           ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWex.swift:117:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                static let WexPixel10x10 = CGPath.make { wexshapePath in
                           ^
                nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/inset-generator/QRCodePixelShapeInset+Fixed.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/inset-generator/QRCodePixelShapeInset+Generator.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/inset-generator/QRCodePixelShapeInset+HorizontalWave.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/inset-generator/QRCodePixelShapeInset+Pinch.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/inset-generator/QRCodePixelShapeInset+Punch.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/inset-generator/QRCodePixelShapeInset+Random.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/inset-generator/QRCodePixelShapeInset+VerticalWave.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/private/QRCodePixelShapePixel.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/private/QRCodePixelShapePixel.swift:51:15: warning: static property 'availableTypes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
                        static var availableTypes: [String] = Self.allCases.map { $0.rawValue }
                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/private/QRCodePixelShapePixel.swift:51:15: note: convert 'availableTypes' to a 'let' constant to make 'Sendable' shared state immutable
                        static var availableTypes: [String] = Self.allCases.map { $0.rawValue }
                               ~~~ ^
                               let
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/private/QRCodePixelShapePixel.swift:51:15: note: add '@MainActor' to make static property 'availableTypes' part of global actor 'MainActor'
                        static var availableTypes: [String] = Self.allCases.map { $0.rawValue }
                                   ^
                        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/private/QRCodePixelShapePixel.swift:51:15: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                        static var availableTypes: [String] = Self.allCases.map { $0.rawValue }
                                   ^
                        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/rotation-generator/QRCodePixelShapeRotation+Fixed.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/rotation-generator/QRCodePixelShapeRotation+Generator.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/rotation-generator/QRCodePixelShapeRotation+HWave.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/rotation-generator/QRCodePixelShapeRotation+Random.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/rotation-generator/QRCodePixelShapeRotation+VWave.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShape.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:44:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Arc' may have shared mutable state; this is an error in the Swift 6 language mode
                private static let _defaultPupil = QRCode.PupilShape.Arc()
                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeArc.swift:25:42: note: class 'Arc' does not conform to the 'Sendable' protocol
        @objc(QRCodePupilShapeArc) public class Arc: NSObject, QRCodePupilShapeGenerator {
                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:44:22: note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
                private static let _defaultPupil = QRCode.PupilShape.Arc()
                                   ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:44:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                private static let _defaultPupil = QRCode.PupilShape.Arc()
                                   ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:62:13: warning: let 'eyePath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let eyePath__: CGPath =
            ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
import CoreGraphics
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:62:13: note: add '@MainActor' to make let 'eyePath__' part of global actor 'MainActor'
private let eyePath__: CGPath =
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:62:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let eyePath__: CGPath =
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:171:13: warning: let 'eyeBackgroudPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
private let eyeBackgroudPath__: CGPath =
            ^
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
public class CGPath : _CFObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:171:13: note: add '@MainActor' to make let 'eyeBackgroudPath__' part of global actor 'MainActor'
private let eyeBackgroudPath__: CGPath =
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:171:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let eyeBackgroudPath__: CGPath =
            ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsHorizontal.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsHorizontal.swift:86:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsHorizontal' may have shared mutable state; this is an error in the Swift 6 language mode
                private static let _defaultPupil = QRCode.PupilShape.BarsHorizontal()
                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeBarsHorizontal.swift:27:46: note: class 'BarsHorizontal' does not conform to the 'Sendable' protocol
        @objc(QRCodePupilShapeBarsHorizontal) class BarsHorizontal: NSObject, QRCodePupilShapeGenerator {
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsHorizontal.swift:86:22: note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
                private static let _defaultPupil = QRCode.PupilShape.BarsHorizontal()
                                   ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsHorizontal.swift:86:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                private static let _defaultPupil = QRCode.PupilShape.BarsHorizontal()
                                   ^
                nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsVertical.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsVertical.swift:86:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsVertical' may have shared mutable state; this is an error in the Swift 6 language mode
                private static let _defaultPupil = QRCode.PupilShape.BarsVertical()
                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeBarsVertical.swift:27:44: note: class 'BarsVertical' does not conform to the 'Sendable' protocol
        @objc(QRCodePupilShapeBarsVertical) class BarsVertical: NSObject, QRCodePupilShapeGenerator {
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsVertical.swift:86:22: note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
                private static let _defaultPupil = QRCode.PupilShape.BarsVertical()
                                   ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsVertical.swift:86:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                private static let _defaultPupil = QRCode.PupilShape.BarsVertical()
                                   ^
                nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeCRT.swift (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeCRT.swift:44:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.CRT' may have shared mutable state; this is an error in the Swift 6 language mode
                private static let _defaultPupil = QRCode.PupilShape.CRT()
                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeCRT.swift:25:42: note: class 'CRT' does not conform to the 'Sendable' protocol
        @objc(QRCodePupilShapeCRT) public class CRT: NSObject, QRCodePupilShapeGenerator {
                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeCRT.swift:44:22: note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
                private static let _defaultPupil = QRCode.PupilShape.CRT()
                                   ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeCRT.swift:44:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                private static let _defaultPupil = QRCode.PupilShape.CRT()
                                   ^
                nonisolated(unsafe)
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftImageReadWrite.o normal (in target 'SwiftImageReadWrite' from project 'SwiftImageReadWrite')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftImageReadWrite
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos13.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftImageReadWrite.build/Debug-appletvos/SwiftImageReadWrite.build/Objects-normal/arm64/SwiftImageReadWrite.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftImageReadWrite.build/Debug-appletvos/SwiftImageReadWrite.build/Objects-normal/arm64/SwiftImageReadWrite_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftImageReadWrite.build/Debug-appletvos/SwiftImageReadWrite.build/Objects-normal/arm64/SwiftImageReadWrite_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftImageReadWrite.build/Debug-appletvos/SwiftImageReadWrite.build/Objects-normal/arm64/SwiftImageReadWrite.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftImageReadWrite.o
SwiftDriverJobDiscovery normal arm64 Compiling QRCode+Templating.swift, QRCode+Types.swift, QRCode+UTI.swift, QRCode.swift, QRCodeEngine+CoreImage.swift, QRCodeEngine.swift, QRCodeEngine+External+Wrapper.swift, QRCodeEngine+External.swift, QRCode+Message+Contact.swift, QRCode+Message+Data.swift, QRCode+Message+Event.swift, QRCode+Message+Link.swift, QRCode+Message+Location.swift, QRCode+Message+Mail.swift, QRCode+Message+Phone.swift, QRCode+Message+SMS.swift, QRCode+Message+Text.swift, Array2D.swift, BinaryFloatingPoint+extensions.swift, BoolMatrix.swift, CGColor+BackwardsCompatibility.swift, CGColor+extensions.swift (in target 'QRCode' from project 'QRCode')
ExtractAppIntentsMetadata (in target 'SwiftImageReadWrite' from project 'SwiftImageReadWrite')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftImageReadWrite
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name SwiftImageReadWrite --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 13.0 --bundle-identifier swiftimagereadwrite.SwiftImageReadWrite --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftImageReadWrite.appintents --target-triple arm64-apple-tvos13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftImageReadWrite.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftImageReadWrite.build/Debug-appletvos/SwiftImageReadWrite.build/Objects-normal/arm64/SwiftImageReadWrite_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftImageReadWrite.build/Debug-appletvos/SwiftImageReadWrite.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftImageReadWrite.build/Debug-appletvos/SwiftImageReadWrite.build/Objects-normal/arm64/SwiftImageReadWrite.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftImageReadWrite.build/Debug-appletvos/SwiftImageReadWrite.build/SwiftImageReadWrite.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftImageReadWrite.build/Debug-appletvos/SwiftImageReadWrite.build/SwiftImageReadWrite.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftImageReadWrite.build/Debug-appletvos/SwiftImageReadWrite.build/Objects-normal/arm64/SwiftImageReadWrite.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-03-03 19:12:08.938 appintentsmetadataprocessor[886:5048] Starting appintentsmetadataprocessor export
2026-03-03 19:12:08.976 appintentsmetadataprocessor[886:5048] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/QRCodeGenerator.o (in target 'QRCodeGenerator' from project 'swift-qrcode-generator')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-qrcode-generator
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/QRCodeGenerator.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftImageReadWrite.o (in target 'SwiftImageReadWrite' from project 'SwiftImageReadWrite')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftImageReadWrite
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftImageReadWrite.o
SwiftDriverJobDiscovery normal arm64 Compiling QRCodePupilShapeOrbits.swift, QRCodePupilShapePinch.swift, QRCodePupilShapePixels.swift, QRCodePupilShapeRoundedOuter.swift, QRCodePupilShapeRoundedPointingIn.swift, QRCodePupilShapeRoundedPointingOut.swift, QRCodePupilShapeRoundedRect.swift, QRCodePupilShapeSeal.swift, QRCodePupilShapeShield.swift, QRCodePupilShapeSpikyCircle.swift, QRCodePupilShapeSquare.swift, QRCodePupilShapeSquircle.swift, QRCodePupilShapeTeardrop.swift, QRCodePupilShapeUFO.swift, QRCodePupilShapeUFORounded.swift, QRCodePupilShapeUsePixelShape.swift, QRCodeDocumentView+AppKit.swift, QRCodeDocumentView+UIKit.swift, QRCodeView.swift, QRCodeDocumentUIView.swift, QRCodeShape.swift, QRCodeViewUI.swift (in target 'QRCode' from project 'QRCode')
SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, QRCode+ASCII.swift, QRCode+Builder.swift, QRCode+Combine.swift, QRCode+Content.swift, QRCode+Conveniences.swift, QRCode+Design.swift, QRCode+Detection.swift, QRCode+Document+Export.swift, QRCode+Document+LoadSave.swift, QRCode+Document.swift, QRCode+Drawing.swift, QRCode+Error.swift, QRCode+ErrorCorrection.swift, QRCode+FormattedContent.swift, QRCode+Image.swift, QRCode+Keys.swift, QRCode+LogoTemplate.swift, QRCode+Message.swift, QRCode+Pasteboard.swift, QRCode+Path.swift, QRCode+SVG.swift, QRCode+Shadow.swift (in target 'QRCode' from project 'QRCode')
SwiftDriverJobDiscovery normal arm64 Compiling QRCodePupilShapeBlade.swift, QRCodePupilShapeBlobby.swift, QRCodePupilShapeCRT.swift, QRCodePupilShapeCircle.swift, QRCodePupilShapeCloud.swift, QRCodePupilShapeCloudCircle.swift, QRCodePupilShapeCorneredPixels.swift, QRCodePupilShapeCross.swift, QRCodePupilShapeCrossCurved.swift, QRCodePupilShapeDiagonalStripes.swift, QRCodePupilShapeDotDrag.swift, QRCodePupilShapeEdges.swift, QRCodePupilShapeExplode.swift, QRCodePupilShapeFabricScissors.swift, QRCodePupilShapeFactory.swift, QRCodePupilShapeFlame.swift, QRCodePupilShapeForest.swift, QRCodePupilShapeGear.swift, QRCodePupilShapeHeart.swift, QRCodePupilShapeHexagonLeaf.swift, QRCodePupilShapeKoala.swift, QRCodePupilShapeLeaf.swift (in target 'QRCode' from project 'QRCode')
SwiftDriverJobDiscovery normal arm64 Compiling QRCodeEyeShapeRoundedRect.swift, QRCodeEyeShapeShield.swift, QRCodeEyeShapeSpikyCircle.swift, QRCodeEyeShapeSquare.swift, QRCodeEyeShapeSquarePeg.swift, QRCodeEyeShapeSquircle.swift, QRCodeEyeShapeSurroundingBars.swift, QRCodeEyeShapeTeardrop.swift, QRCodeEyeShapeUFO.swift, QRCodeEyeShapeUFORounded.swift, QRCodeEyeShapeUsePixelShape.swift, QRCodeFillStyle.swift, QRCodeFillStyleFactory.swift, QRCodeFillStyleImage.swift, QRCodeFillStyleLinearGradient.swift, QRCodeFillStyleRadialGradient.swift, QRCodeFillStyleSolid.swift, QRCodePupilShape.swift, QRCodePupilShapeArc.swift, QRCodePupilShapeArrow.swift, QRCodePupilShapeBarsHorizontal.swift, QRCodePupilShapeBarsVertical.swift (in target 'QRCode' from project 'QRCode')
SwiftDriverJobDiscovery normal arm64 Compiling QRCodePixelShapeVertical.swift, QRCodePixelShapeVortex.swift, QRCodePixelShapeArrow.swift, QRCodePixelShapeCRT.swift, QRCodePixelShapeCircle.swift, QRCodePixelShapeDiagonal.swift, QRCodePixelShapeDiamond.swift, QRCodePixelShapeFlame.swift, QRCodePixelShapeFlower.swift, QRCodePixelShapeGear.swift, QRCodePixelShapeHeart.swift, QRCodePixelShapeHexa.swift, QRCodePixelShapeHexagon.swift, QRCodePixelShapeKoala.swift, QRCodePixelShapeLeaf.swift, QRCodePixelShapeRoundedRect.swift, QRCodePixelShapeRoundedTriangle.swift, QRCodePixelShapeSharp.swift, QRCodePixelShapeShiny.swift, QRCodePixelShapeSpikyCircle.swift, QRCodePixelShapeSquare.swift, QRCodePixelShapeSquircle.swift (in target 'QRCode' from project 'QRCode')
SwiftDriverJobDiscovery normal arm64 Compiling QRCodePixelShapeStar.swift, QRCodePixelShapeStitch.swift, QRCodePixelShapeWave.swift, QRCodePixelShapeWex.swift, QRCodePixelShapeInset+Fixed.swift, QRCodePixelShapeInset+Generator.swift, QRCodePixelShapeInset+HorizontalWave.swift, QRCodePixelShapeInset+Pinch.swift, QRCodePixelShapeInset+Punch.swift, QRCodePixelShapeInset+Random.swift, QRCodePixelShapeInset+VerticalWave.swift, QRCodePixelShapePixel.swift, QRCodePixelShapeRotation+Fixed.swift, QRCodePixelShapeRotation+Generator.swift, QRCodePixelShapeRotation+HWave.swift, QRCodePixelShapeRotation+Random.swift, QRCodePixelShapeRotation+VWave.swift, QRCodeEyeShape.swift, QRCodeEyeShapeArc.swift, QRCodeEyeShapeBarsHorizontal.swift, QRCodeEyeShapeBarsVertical.swift, QRCodeEyeShapeCRT.swift (in target 'QRCode' from project 'QRCode')
SwiftDriverJobDiscovery normal arm64 Compiling RandomNumberWithSeed.swift, String+extensions.swift, Utils.swift, QRCode+Shape.swift, QRCode+Style.swift, QRCodePixelShape.swift, QRCodePixelShapeAbstract.swift, QRCodePixelShapeBlob.swift, QRCodePixelShapeCircuit.swift, QRCodePixelShapeCrosshatch.swift, QRCodePixelShapeCurvePixel.swift, QRCodePixelShapeDiagonalStripes.swift, QRCodePixelShapeDonut.swift, QRCodePixelShapeDripHorizontal.swift, QRCodePixelShapeDripVertical.swift, QRCodePixelShapeFactory.swift, QRCodePixelShapeGrid.swift, QRCodePixelShapeHorizontal.swift, QRCodePixelShapePointy.swift, QRCodePixelShapeRazor.swift, QRCodePixelShapeRoundedEndIndent.swift, QRCodePixelShapeRoundedPath.swift (in target 'QRCode' from project 'QRCode')
SwiftDriverJobDiscovery normal arm64 Compiling QRCodeEyeShapeCircle.swift, QRCodeEyeShapeCloud.swift, QRCodeEyeShapeCloudCircle.swift, QRCodeEyeShapeCorneredPixels.swift, QRCodeEyeShapeDiagonalStripes.swift, QRCodeEyeShapeDotDrag.swift, QRCodeEyeShapeEdges.swift, QRCodeEyeShapeExplode.swift, QRCodeEyeShapeEye.swift, QRCodeEyeShapeFabricScissors.swift, QRCodeEyeShapeFactory.swift, QRCodeEyeShapeFireball.swift, QRCodeEyeShapeFlame.swift, QRCodeEyeShapeHeadlight.swift, QRCodeEyeShapeHolePunch.swift, QRCodeEyeShapeLeaf.swift, QRCodeEyeShapePeacock.swift, QRCodeEyeShapePinch.swift, QRCodeEyeShapePixels.swift, QRCodeEyeShapeRoundedOuter.swift, QRCodeEyeShapeRoundedPointingIn.swift, QRCodeEyeShapeRoundedPointingOut.swift (in target 'QRCode' from project 'QRCode')
SwiftDriverJobDiscovery normal arm64 Emitting module for QRCode (in target 'QRCode' from project 'QRCode')
SwiftDriver\ Compilation\ Requirements QRCode normal arm64 com.apple.xcode.tools.swift.compiler (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name QRCode -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/QRCode.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/QRCode-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/QRCode.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/QRCode_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/QRCode-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/QRCode-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/QRCode-Swift.h (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/QRCode-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/QRCode-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/QRCode.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/QRCode.swiftdoc (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/QRCode.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/QRCode.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/QRCode.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/QRCode.abi.json (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/QRCode.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/QRCode.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/QRCode.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/QRCode.swiftmodule (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/QRCode.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/QRCode.swiftmodule/arm64-apple-tvos.swiftmodule
SwiftDriver\ Compilation QRCode normal arm64 com.apple.xcode.tools.swift.compiler (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name QRCode -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/QRCode.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/QRCode-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/QRCode.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/QRCode_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/QRCode-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/QRCode.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/QRCode.swiftsourceinfo (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/QRCode.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/QRCode.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/QRCode.o normal (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos13.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/QRCode.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/QRCode_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/QRCode_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/QRCode.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/QRCode.o
ExtractAppIntentsMetadata (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name QRCode --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 13.0 --bundle-identifier spi-builder-workspace.QRCode --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/QRCode.appintents --target-triple arm64-apple-tvos13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/QRCode.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/QRCode_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/QRCode.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/QRCode.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/QRCode.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/QRCode.build/Debug-appletvos/QRCode.build/Objects-normal/arm64/QRCode.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-03-03 19:12:15.695 appintentsmetadataprocessor[889:5195] Starting appintentsmetadataprocessor export
2026-03-03 19:12:15.729 appintentsmetadataprocessor[889:5195] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/QRCode.o (in target 'QRCode' from project 'QRCode')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/QRCode.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-argument-parser",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.4.3",
            "upper_bound" : "0.5.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-argument-parser"
    },
    {
      "identity" : "swift-qrcode-generator",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.0.2",
            "upper_bound" : "2.1.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/dagronf/swift-qrcode-generator"
    },
    {
      "identity" : "swiftimagereadwrite",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.9.1",
            "upper_bound" : "1.10.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/dagronf/SwiftImageReadWrite"
    }
  ],
  "manifest_display_name" : "QRCode",
  "name" : "QRCode",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.13"
    },
    {
      "name" : "ios",
      "version" : "11.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "QRCode",
      "targets" : [
        "QRCode"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "QRCodeStatic",
      "targets" : [
        "QRCode"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    },
    {
      "name" : "QRCodeDynamic",
      "targets" : [
        "QRCode"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "QRCodeDetector",
      "targets" : [
        "QRCodeDetector"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "qrcodegen",
      "targets" : [
        "qrcodegen"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "qrcodegen",
      "module_type" : "SwiftTarget",
      "name" : "qrcodegen",
      "path" : "Sources/qrcodegen",
      "product_dependencies" : [
        "ArgumentParser"
      ],
      "product_memberships" : [
        "qrcodegen"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/qrcodegen/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "main.swift",
        "utils.swift"
      ],
      "target_dependencies" : [
        "QRCode"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "QRCodeTests",
      "module_type" : "SwiftTarget",
      "name" : "QRCodeTests",
      "path" : "Tests/QRCodeTests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/apple.png",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/b-image.jpg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/beach-square.jpg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/colored-fill-bw.jpg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/colored-fill-invert.jpg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/colored-fill.jpg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/corner-heart.png",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/example-com.jpg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/instagram-icon.png",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/lego.jpeg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/logo-mask.png",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/logo-scan.png",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/logo.png",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/nsw-health.jpg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/photo-logo.jpg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/qrcodes-image.jpg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/square-logo.png",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/svg/Issue19Generated.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/swift-logo.png",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/wiki-logo.png",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/wombles.jpeg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/wwf.jpeg",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "CGPathCoderTests.swift",
        "ComponentsTests.swift",
        "DocumentationImageTests.swift",
        "QRCodeBugFixTests.swift",
        "QRCodeBuilderTests.swift",
        "QRCodeDetectionTests.swift",
        "QRCodeDocGenerator.swift",
        "QRCodeEncodeDecodeTests.swift",
        "QRCodeExternalGenerationTests.swift",
        "QRCodeEyeShapeTests.swift",
        "QRCodeFillTests.swift",
        "QRCodeImageFillTests.swift",
        "QRCodeMaskingTests.swift",
        "QRCodeMessageFormattingTests.swift",
        "QRCodePathTests.swift",
        "QRCodePixelInsetDocumentTests.swift",
        "QRCodePixelInsetTests.swift",
        "QRCodePixelRotationDocumentTests.swift",
        "QRCodePixelRotationTests.swift",
        "QRCodeSVGExportTests.swift",
        "QRCodeTests.swift",
        "QRCodeWatchOSTests.swift",
        "QRLoadSaveTests.swift",
        "ShadowTests.swift",
        "TestFilesContainer.swift",
        "Utils.swift"
      ],
      "target_dependencies" : [
        "QRCode"
      ],
      "type" : "test"
    },
    {
      "c99name" : "QRCodeDetector",
      "module_type" : "SwiftTarget",
      "name" : "QRCodeDetector",
      "path" : "Sources/QRCodeDetector",
      "product_memberships" : [
        "QRCodeDetector"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/QRCodeDetector/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "QRCodeDetector+VideoDetector.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "QRCode",
      "module_type" : "SwiftTarget",
      "name" : "QRCode",
      "path" : "Sources/QRCode",
      "product_dependencies" : [
        "SwiftImageReadWrite",
        "QRCodeGenerator"
      ],
      "product_memberships" : [
        "QRCode",
        "QRCodeStatic",
        "QRCodeDynamic",
        "qrcodegen"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/QRCode/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "QRCode+ASCII.swift",
        "QRCode+Builder.swift",
        "QRCode+Combine.swift",
        "QRCode+Content.swift",
        "QRCode+Conveniences.swift",
        "QRCode+Design.swift",
        "QRCode+Detection.swift",
        "QRCode+Document+Export.swift",
        "QRCode+Document+LoadSave.swift",
        "QRCode+Document.swift",
        "QRCode+Drawing.swift",
        "QRCode+Error.swift",
        "QRCode+ErrorCorrection.swift",
        "QRCode+FormattedContent.swift",
        "QRCode+Image.swift",
        "QRCode+Keys.swift",
        "QRCode+LogoTemplate.swift",
        "QRCode+Message.swift",
        "QRCode+Pasteboard.swift",
        "QRCode+Path.swift",
        "QRCode+SVG.swift",
        "QRCode+Shadow.swift",
        "QRCode+Templating.swift",
        "QRCode+Types.swift",
        "QRCode+UTI.swift",
        "QRCode.swift",
        "generator/QRCodeEngine+CoreImage.swift",
        "generator/QRCodeEngine.swift",
        "generator/external/QRCodeEngine+External+Wrapper.swift",
        "generator/external/QRCodeEngine+External.swift",
        "message/QRCode+Message+Contact.swift",
        "message/QRCode+Message+Data.swift",
        "message/QRCode+Message+Event.swift",
        "message/QRCode+Message+Link.swift",
        "message/QRCode+Message+Location.swift",
        "message/QRCode+Message+Mail.swift",
        "message/QRCode+Message+Phone.swift",
        "message/QRCode+Message+SMS.swift",
        "message/QRCode+Message+Text.swift",
        "private/Array2D.swift",
        "private/BinaryFloatingPoint+extensions.swift",
        "private/BoolMatrix.swift",
        "private/CGColor+BackwardsCompatibility.swift",
        "private/CGColor+extensions.swift",
        "private/CGColor+hex.swift",
        "private/CGContext+extensions.swift",
        "private/CGFloat+extensions.swift",
        "private/CGImage+diff.swift",
        "private/CGImage+extensions.swift",
        "private/CGMutablePath+PaintCodeHelpers.swift",
        "private/CGPath+RoundedRectExtensions.swift",
        "private/CGPath+SVG.swift",
        "private/CGPath+codable.swift",
        "private/CGPath+extensions.swift",
        "private/CGPath+hexagon.swift",
        "private/CGSize+extensions.swift",
        "private/Clamp.swift",
        "private/DSFGradient.swift",
        "private/Debounce.swift",
        "private/FileManager+extensions.swift",
        "private/FixedWidthInteger+extensions.swift",
        "private/NSBezierPath+extensions.swift",
        "private/NSImage+extensions.swift",
        "private/Neighbours.swift",
        "private/Optional+extensions.swift",
        "private/QRCode+Platform.swift",
        "private/RandomNumberWithSeed.swift",
        "private/String+extensions.swift",
        "private/Utils.swift",
        "styles/QRCode+Shape.swift",
        "styles/QRCode+Style.swift",
        "styles/data/QRCodePixelShape.swift",
        "styles/data/QRCodePixelShapeAbstract.swift",
        "styles/data/QRCodePixelShapeBlob.swift",
        "styles/data/QRCodePixelShapeCircuit.swift",
        "styles/data/QRCodePixelShapeCrosshatch.swift",
        "styles/data/QRCodePixelShapeCurvePixel.swift",
        "styles/data/QRCodePixelShapeDiagonalStripes.swift",
        "styles/data/QRCodePixelShapeDonut.swift",
        "styles/data/QRCodePixelShapeDripHorizontal.swift",
        "styles/data/QRCodePixelShapeDripVertical.swift",
        "styles/data/QRCodePixelShapeFactory.swift",
        "styles/data/QRCodePixelShapeGrid.swift",
        "styles/data/QRCodePixelShapeHorizontal.swift",
        "styles/data/QRCodePixelShapePointy.swift",
        "styles/data/QRCodePixelShapeRazor.swift",
        "styles/data/QRCodePixelShapeRoundedEndIndent.swift",
        "styles/data/QRCodePixelShapeRoundedPath.swift",
        "styles/data/QRCodePixelShapeVertical.swift",
        "styles/data/QRCodePixelShapeVortex.swift",
        "styles/data/pixel/QRCodePixelShapeArrow.swift",
        "styles/data/pixel/QRCodePixelShapeCRT.swift",
        "styles/data/pixel/QRCodePixelShapeCircle.swift",
        "styles/data/pixel/QRCodePixelShapeDiagonal.swift",
        "styles/data/pixel/QRCodePixelShapeDiamond.swift",
        "styles/data/pixel/QRCodePixelShapeFlame.swift",
        "styles/data/pixel/QRCodePixelShapeFlower.swift",
        "styles/data/pixel/QRCodePixelShapeGear.swift",
        "styles/data/pixel/QRCodePixelShapeHeart.swift",
        "styles/data/pixel/QRCodePixelShapeHexa.swift",
        "styles/data/pixel/QRCodePixelShapeHexagon.swift",
        "styles/data/pixel/QRCodePixelShapeKoala.swift",
        "styles/data/pixel/QRCodePixelShapeLeaf.swift",
        "styles/data/pixel/QRCodePixelShapeRoundedRect.swift",
        "styles/data/pixel/QRCodePixelShapeRoundedTriangle.swift",
        "styles/data/pixel/QRCodePixelShapeSharp.swift",
        "styles/data/pixel/QRCodePixelShapeShiny.swift",
        "styles/data/pixel/QRCodePixelShapeSpikyCircle.swift",
        "styles/data/pixel/QRCodePixelShapeSquare.swift",
        "styles/data/pixel/QRCodePixelShapeSquircle.swift",
        "styles/data/pixel/QRCodePixelShapeStar.swift",
        "styles/data/pixel/QRCodePixelShapeStitch.swift",
        "styles/data/pixel/QRCodePixelShapeWave.swift",
        "styles/data/pixel/QRCodePixelShapeWex.swift",
        "styles/data/pixel/inset-generator/QRCodePixelShapeInset+Fixed.swift",
        "styles/data/pixel/inset-generator/QRCodePixelShapeInset+Generator.swift",
        "styles/data/pixel/inset-generator/QRCodePixelShapeInset+HorizontalWave.swift",
        "styles/data/pixel/inset-generator/QRCodePixelShapeInset+Pinch.swift",
        "styles/data/pixel/inset-generator/QRCodePixelShapeInset+Punch.swift",
        "styles/data/pixel/inset-generator/QRCodePixelShapeInset+Random.swift",
        "styles/data/pixel/inset-generator/QRCodePixelShapeInset+VerticalWave.swift",
        "styles/data/pixel/private/QRCodePixelShapePixel.swift",
        "styles/data/pixel/rotation-generator/QRCodePixelShapeRotation+Fixed.swift",
        "styles/data/pixel/rotation-generator/QRCodePixelShapeRotation+Generator.swift",
        "styles/data/pixel/rotation-generator/QRCodePixelShapeRotation+HWave.swift",
        "styles/data/pixel/rotation-generator/QRCodePixelShapeRotation+Random.swift",
        "styles/data/pixel/rotation-generator/QRCodePixelShapeRotation+VWave.swift",
        "styles/eye/QRCodeEyeShape.swift",
        "styles/eye/QRCodeEyeShapeArc.swift",
        "styles/eye/QRCodeEyeShapeBarsHorizontal.swift",
        "styles/eye/QRCodeEyeShapeBarsVertical.swift",
        "styles/eye/QRCodeEyeShapeCRT.swift",
        "styles/eye/QRCodeEyeShapeCircle.swift",
        "styles/eye/QRCodeEyeShapeCloud.swift",
        "styles/eye/QRCodeEyeShapeCloudCircle.swift",
        "styles/eye/QRCodeEyeShapeCorneredPixels.swift",
        "styles/eye/QRCodeEyeShapeDiagonalStripes.swift",
        "styles/eye/QRCodeEyeShapeDotDrag.swift",
        "styles/eye/QRCodeEyeShapeEdges.swift",
        "styles/eye/QRCodeEyeShapeExplode.swift",
        "styles/eye/QRCodeEyeShapeEye.swift",
        "styles/eye/QRCodeEyeShapeFabricScissors.swift",
        "styles/eye/QRCodeEyeShapeFactory.swift",
        "styles/eye/QRCodeEyeShapeFireball.swift",
        "styles/eye/QRCodeEyeShapeFlame.swift",
        "styles/eye/QRCodeEyeShapeHeadlight.swift",
        "styles/eye/QRCodeEyeShapeHolePunch.swift",
        "styles/eye/QRCodeEyeShapeLeaf.swift",
        "styles/eye/QRCodeEyeShapePeacock.swift",
        "styles/eye/QRCodeEyeShapePinch.swift",
        "styles/eye/QRCodeEyeShapePixels.swift",
        "styles/eye/QRCodeEyeShapeRoundedOuter.swift",
        "styles/eye/QRCodeEyeShapeRoundedPointingIn.swift",
        "styles/eye/QRCodeEyeShapeRoundedPointingOut.swift",
        "styles/eye/QRCodeEyeShapeRoundedRect.swift",
        "styles/eye/QRCodeEyeShapeShield.swift",
        "styles/eye/QRCodeEyeShapeSpikyCircle.swift",
        "styles/eye/QRCodeEyeShapeSquare.swift",
        "styles/eye/QRCodeEyeShapeSquarePeg.swift",
        "styles/eye/QRCodeEyeShapeSquircle.swift",
        "styles/eye/QRCodeEyeShapeSurroundingBars.swift",
        "styles/eye/QRCodeEyeShapeTeardrop.swift",
        "styles/eye/QRCodeEyeShapeUFO.swift",
        "styles/eye/QRCodeEyeShapeUFORounded.swift",
        "styles/eye/QRCodeEyeShapeUsePixelShape.swift",
        "styles/fill/QRCodeFillStyle.swift",
        "styles/fill/QRCodeFillStyleFactory.swift",
        "styles/fill/QRCodeFillStyleImage.swift",
        "styles/fill/QRCodeFillStyleLinearGradient.swift",
        "styles/fill/QRCodeFillStyleRadialGradient.swift",
        "styles/fill/QRCodeFillStyleSolid.swift",
        "styles/pupil/QRCodePupilShape.swift",
        "styles/pupil/QRCodePupilShapeArc.swift",
        "styles/pupil/QRCodePupilShapeArrow.swift",
        "styles/pupil/QRCodePupilShapeBarsHorizontal.swift",
        "styles/pupil/QRCodePupilShapeBarsVertical.swift",
        "styles/pupil/QRCodePupilShapeBlade.swift",
        "styles/pupil/QRCodePupilShapeBlobby.swift",
        "styles/pupil/QRCodePupilShapeCRT.swift",
        "styles/pupil/QRCodePupilShapeCircle.swift",
        "styles/pupil/QRCodePupilShapeCloud.swift",
        "styles/pupil/QRCodePupilShapeCloudCircle.swift",
        "styles/pupil/QRCodePupilShapeCorneredPixels.swift",
        "styles/pupil/QRCodePupilShapeCross.swift",
        "styles/pupil/QRCodePupilShapeCrossCurved.swift",
        "styles/pupil/QRCodePupilShapeDiagonalStripes.swift",
        "styles/pupil/QRCodePupilShapeDotDrag.swift",
        "styles/pupil/QRCodePupilShapeEdges.swift",
        "styles/pupil/QRCodePupilShapeExplode.swift",
        "styles/pupil/QRCodePupilShapeFabricScissors.swift",
        "styles/pupil/QRCodePupilShapeFactory.swift",
        "styles/pupil/QRCodePupilShapeFlame.swift",
        "styles/pupil/QRCodePupilShapeForest.swift",
        "styles/pupil/QRCodePupilShapeGear.swift",
        "styles/pupil/QRCodePupilShapeHeart.swift",
        "styles/pupil/QRCodePupilShapeHexagonLeaf.swift",
        "styles/pupil/QRCodePupilShapeKoala.swift",
        "styles/pupil/QRCodePupilShapeLeaf.swift",
        "styles/pupil/QRCodePupilShapeOrbits.swift",
        "styles/pupil/QRCodePupilShapePinch.swift",
        "styles/pupil/QRCodePupilShapePixels.swift",
        "styles/pupil/QRCodePupilShapeRoundedOuter.swift",
        "styles/pupil/QRCodePupilShapeRoundedPointingIn.swift",
        "styles/pupil/QRCodePupilShapeRoundedPointingOut.swift",
        "styles/pupil/QRCodePupilShapeRoundedRect.swift",
        "styles/pupil/QRCodePupilShapeSeal.swift",
        "styles/pupil/QRCodePupilShapeShield.swift",
        "styles/pupil/QRCodePupilShapeSpikyCircle.swift",
        "styles/pupil/QRCodePupilShapeSquare.swift",
        "styles/pupil/QRCodePupilShapeSquircle.swift",
        "styles/pupil/QRCodePupilShapeTeardrop.swift",
        "styles/pupil/QRCodePupilShapeUFO.swift",
        "styles/pupil/QRCodePupilShapeUFORounded.swift",
        "styles/pupil/QRCodePupilShapeUsePixelShape.swift",
        "views/QRCodeDocumentView+AppKit.swift",
        "views/QRCodeDocumentView+UIKit.swift",
        "views/QRCodeView.swift",
        "views/SwiftUI/QRCodeDocumentUIView.swift",
        "views/SwiftUI/QRCodeShape.swift",
        "views/SwiftUI/QRCodeViewUI.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.