The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of EFQRCode, reference main (d1e77b), with Swift 6.1 for macOS (SPM) on 31 May 2025 14:20:31 UTC.

Swift 6 data race errors: 33

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

 32 | public class EFStyleFunctionParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultPosition: EFStyleFunctionParamsPosition = EFStyleFunctionParamsPosition()
 36 |     public static let defaultData: EFStyleFunctionParamsData = EFStyleFunctionParamsData()
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleFunction.swift:35:23: warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleFunctionParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultPosition: EFStyleFunctionParamsPosition = EFStyleFunctionParamsPosition()
    |                       |- warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleFunctionParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultPosition' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |     public static let defaultData: EFStyleFunctionParamsData = EFStyleFunctionParamsData()
 37 |
    :
 65 | }
 66 |
 67 | public class EFStyleFunctionParamsPosition {
    |              `- note: class 'EFStyleFunctionParamsPosition' does not conform to the 'Sendable' protocol
 68 |
 69 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleFunction.swift:36:23: warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleFunctionParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultPosition: EFStyleFunctionParamsPosition = EFStyleFunctionParamsPosition()
 36 |     public static let defaultData: EFStyleFunctionParamsData = EFStyleFunctionParamsData()
    |                       |- warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleFunctionParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultData' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |
 38 |     let position: EFStyleFunctionParamsPosition
    :
 84 | }
 85 |
 86 | public class EFStyleFunctionParamsData {
    |              `- note: class 'EFStyleFunctionParamsData' does not conform to the 'Sendable' protocol
 87 |
 88 |     let function: EFStyleFunctionParamsDataFunction
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleImage.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleImageParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultAlign: EFStyleImageParamsAlign = EFStyleImageParamsAlign()
 36 |     public static let defaultTiming: EFStyleImageParamsTiming = EFStyleImageParamsTiming()
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleImage.swift:35:23: warning: static property 'defaultAlign' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsAlign' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultAlign: EFStyleImageParamsAlign = EFStyleImageParamsAlign()
    |                       |- warning: static property 'defaultAlign' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsAlign' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultAlign' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |     public static let defaultTiming: EFStyleImageParamsTiming = EFStyleImageParamsTiming()
 37 |     public static let defaultData: EFStyleImageParamsData = EFStyleImageParamsData()
    :
 89 | }
 90 |
 91 | public class EFStyleImageParamsAlign {
    |              `- note: class 'EFStyleImageParamsAlign' does not conform to the 'Sendable' protocol
 92 |
 93 |     public static let defaultColorDark: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleImage.swift:36:23: warning: static property 'defaultTiming' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsTiming' may have shared mutable state; this is an error in the Swift 6 language mode
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultAlign: EFStyleImageParamsAlign = EFStyleImageParamsAlign()
 36 |     public static let defaultTiming: EFStyleImageParamsTiming = EFStyleImageParamsTiming()
    |                       |- warning: static property 'defaultTiming' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsTiming' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultTiming' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     public static let defaultData: EFStyleImageParamsData = EFStyleImageParamsData()
 38 |     public static let defaultPosition: EFStyleImageParamsPosition = EFStyleImageParamsPosition()
    :
119 | }
120 |
121 | public class EFStyleImageParamsTiming {
    |              `- note: class 'EFStyleImageParamsTiming' does not conform to the 'Sendable' protocol
122 |
123 |     public static let defaultColorDark: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleImage.swift:37:23: warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
 35 |     public static let defaultAlign: EFStyleImageParamsAlign = EFStyleImageParamsAlign()
 36 |     public static let defaultTiming: EFStyleImageParamsTiming = EFStyleImageParamsTiming()
 37 |     public static let defaultData: EFStyleImageParamsData = EFStyleImageParamsData()
    |                       |- warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultData' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |     public static let defaultPosition: EFStyleImageParamsPosition = EFStyleImageParamsPosition()
 39 |
    :
199 | }
200 |
201 | public class EFStyleImageParamsData {
    |              `- note: class 'EFStyleImageParamsData' does not conform to the 'Sendable' protocol
202 |
203 |     public static let defaultColorDark: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleImage.swift:38:23: warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
 36 |     public static let defaultTiming: EFStyleImageParamsTiming = EFStyleImageParamsTiming()
 37 |     public static let defaultData: EFStyleImageParamsData = EFStyleImageParamsData()
 38 |     public static let defaultPosition: EFStyleImageParamsPosition = EFStyleImageParamsPosition()
    |                       |- warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultPosition' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     let align: EFStyleImageParamsAlign
    :
176 | }
177 |
178 | public class EFStyleImageParamsPosition {
    |              `- note: class 'EFStyleImageParamsPosition' does not conform to the 'Sendable' protocol
179 |
180 |     public static let defaultColorDark: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleImageFill.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleImageFillParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultBackgroundColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
 36 |     public static let defaultMaskColor: CGColor = CGColor.createWith(rgb: 0x000000, alpha: 0.1)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleLine.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleLineParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultPosition: EFStyleLineParamsPosition = EFStyleLineParamsPosition()
 36 |     public static let defaultLine: EFStyleLineParamsLine = EFStyleLineParamsLine()
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleLine.swift:35:23: warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleLineParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultPosition: EFStyleLineParamsPosition = EFStyleLineParamsPosition()
    |                       |- warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleLineParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultPosition' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |     public static let defaultLine: EFStyleLineParamsLine = EFStyleLineParamsLine()
 37 |
    :
 65 | }
 66 |
 67 | public class EFStyleLineParamsPosition {
    |              `- note: class 'EFStyleLineParamsPosition' does not conform to the 'Sendable' protocol
 68 |
 69 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleLine.swift:36:23: warning: static property 'defaultLine' is not concurrency-safe because non-'Sendable' type 'EFStyleLineParamsLine' may have shared mutable state; this is an error in the Swift 6 language mode
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultPosition: EFStyleLineParamsPosition = EFStyleLineParamsPosition()
 36 |     public static let defaultLine: EFStyleLineParamsLine = EFStyleLineParamsLine()
    |                       |- warning: static property 'defaultLine' is not concurrency-safe because non-'Sendable' type 'EFStyleLineParamsLine' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultLine' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |
 38 |     let position: EFStyleLineParamsPosition
    :
 84 | }
 85 |
 86 | public class EFStyleLineParamsLine {
    |              `- note: class 'EFStyleLineParamsLine' does not conform to the 'Sendable' protocol
 87 |
 88 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleRandomRectangle.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleRandomRectangleParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x14AA3C)!
 36 |
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleResampleImage.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleResampleImageParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultAlign: EFStyleResampleImageParamsAlign = EFStyleResampleImageParamsAlign()
 36 |     public static let defaultTiming: EFStyleResampleImageParamsTiming = EFStyleResampleImageParamsTiming()
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleResampleImage.swift:35:23: warning: static property 'defaultAlign' is not concurrency-safe because non-'Sendable' type 'EFStyleResampleImageParamsAlign' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultAlign: EFStyleResampleImageParamsAlign = EFStyleResampleImageParamsAlign()
    |                       |- warning: static property 'defaultAlign' is not concurrency-safe because non-'Sendable' type 'EFStyleResampleImageParamsAlign' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultAlign' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |     public static let defaultTiming: EFStyleResampleImageParamsTiming = EFStyleResampleImageParamsTiming()
 37 |     public static let defaultPosition: EFStyleResampleImageParamsPosition = EFStyleResampleImageParamsPosition()
    :
 89 | }
 90 |
 91 | public class EFStyleResampleImageParamsAlign {
    |              `- note: class 'EFStyleResampleImageParamsAlign' does not conform to the 'Sendable' protocol
 92 |
 93 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleResampleImage.swift:36:23: warning: static property 'defaultTiming' is not concurrency-safe because non-'Sendable' type 'EFStyleResampleImageParamsTiming' may have shared mutable state; this is an error in the Swift 6 language mode
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultAlign: EFStyleResampleImageParamsAlign = EFStyleResampleImageParamsAlign()
 36 |     public static let defaultTiming: EFStyleResampleImageParamsTiming = EFStyleResampleImageParamsTiming()
    |                       |- warning: static property 'defaultTiming' is not concurrency-safe because non-'Sendable' type 'EFStyleResampleImageParamsTiming' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultTiming' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     public static let defaultPosition: EFStyleResampleImageParamsPosition = EFStyleResampleImageParamsPosition()
 38 |     public static let defaultDataColor: CGColor = CGColor.createWith(rgb: 0x000000)!
    :
118 | }
119 |
120 | public class EFStyleResampleImageParamsTiming {
    |              `- note: class 'EFStyleResampleImageParamsTiming' does not conform to the 'Sendable' protocol
121 |
122 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleResampleImage.swift:37:23: warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleResampleImageParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
 35 |     public static let defaultAlign: EFStyleResampleImageParamsAlign = EFStyleResampleImageParamsAlign()
 36 |     public static let defaultTiming: EFStyleResampleImageParamsTiming = EFStyleResampleImageParamsTiming()
 37 |     public static let defaultPosition: EFStyleResampleImageParamsPosition = EFStyleResampleImageParamsPosition()
    |                       |- warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleResampleImageParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultPosition' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |     public static let defaultDataColor: CGColor = CGColor.createWith(rgb: 0x000000)!
 39 |
    :
140 | }
141 |
142 | public class EFStyleResampleImageParamsPosition {
    |              `- note: class 'EFStyleResampleImageParamsPosition' does not conform to the 'Sendable' protocol
143 |
144 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleResampleImage.swift:338:24: warning: static property 'uniqueMark' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
336 |     override func writeIcon(qrcode: QRCode) throws -> [String] {
337 |         struct Anchor {
338 |             static var uniqueMark: Int = 0
    |                        |- warning: static property 'uniqueMark' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'uniqueMark' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'uniqueMark' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
339 |         }
340 |
/Users/admin/builder/spi-builder-workspace/Source/Type/EFQRCodeError.swift:65:10: warning: associated value 'internalError' of 'Sendable'-conforming enum 'EFQRCodeError' has non-sendable type 'EFQRCodeError.ImplmentationError'; this is an error in the Swift 6 language mode
63 |     case cannotCreateVideo
64 |     /// Fill a new issue on GitHub, or submit a pull request.
65 |     case internalError(ImplmentationError)
   |          `- warning: associated value 'internalError' of 'Sendable'-conforming enum 'EFQRCodeError' has non-sendable type 'EFQRCodeError.ImplmentationError'; this is an error in the Swift 6 language mode
66 |
67 |     /// Should probably contact developer is you ever see any of these.
68 |     public enum ImplmentationError {
   |                 `- note: consider making enum 'ImplmentationError' conform to the 'Sendable' protocol
69 |         /// fail to determine how large is the data.
70 |         case dataLengthIndeterminable
[111/136] Compiling EFQRCode EFEdgeInsets.swift
/Users/admin/builder/spi-builder-workspace/Source/Type/EFQRCodeError.swift:65:10: warning: associated value 'internalError' of 'Sendable'-conforming enum 'EFQRCodeError' has non-sendable type 'EFQRCodeError.ImplmentationError'; this is an error in the Swift 6 language mode
63 |     case cannotCreateVideo
64 |     /// Fill a new issue on GitHub, or submit a pull request.
65 |     case internalError(ImplmentationError)
   |          `- warning: associated value 'internalError' of 'Sendable'-conforming enum 'EFQRCodeError' has non-sendable type 'EFQRCodeError.ImplmentationError'; this is an error in the Swift 6 language mode
66 |
67 |     /// Should probably contact developer is you ever see any of these.
68 |     public enum ImplmentationError {
   |                 `- note: consider making enum 'ImplmentationError' conform to the 'Sendable' protocol
69 |         /// fail to determine how large is the data.
70 |         case dataLengthIndeterminable
[112/136] Compiling EFQRCode EFImageMode.swift
/Users/admin/builder/spi-builder-workspace/Source/Type/EFQRCodeError.swift:65:10: warning: associated value 'internalError' of 'Sendable'-conforming enum 'EFQRCodeError' has non-sendable type 'EFQRCodeError.ImplmentationError'; this is an error in the Swift 6 language mode
63 |     case cannotCreateVideo
64 |     /// Fill a new issue on GitHub, or submit a pull request.
65 |     case internalError(ImplmentationError)
   |          `- warning: associated value 'internalError' of 'Sendable'-conforming enum 'EFQRCodeError' has non-sendable type 'EFQRCodeError.ImplmentationError'; this is an error in the Swift 6 language mode
66 |
67 |     /// Should probably contact developer is you ever see any of these.
68 |     public enum ImplmentationError {
   |                 `- note: consider making enum 'ImplmentationError' conform to the 'Sendable' protocol
69 |         /// fail to determine how large is the data.
70 |         case dataLengthIndeterminable
[113/136] Compiling EFQRCode EFQRCodeError.swift
/Users/admin/builder/spi-builder-workspace/Source/Type/EFQRCodeError.swift:65:10: warning: associated value 'internalError' of 'Sendable'-conforming enum 'EFQRCodeError' has non-sendable type 'EFQRCodeError.ImplmentationError'; this is an error in the Swift 6 language mode
63 |     case cannotCreateVideo
64 |     /// Fill a new issue on GitHub, or submit a pull request.
65 |     case internalError(ImplmentationError)
   |          `- warning: associated value 'internalError' of 'Sendable'-conforming enum 'EFQRCodeError' has non-sendable type 'EFQRCodeError.ImplmentationError'; this is an error in the Swift 6 language mode
66 |
67 |     /// Should probably contact developer is you ever see any of these.
68 |     public enum ImplmentationError {
   |                 `- note: consider making enum 'ImplmentationError' conform to the 'Sendable' protocol
69 |         /// fail to determine how large is the data.
70 |         case dataLengthIndeterminable
[114/136] Compiling EFQRCode BinaryFloatingPoint+EFQRCode.swift
[115/136] Compiling EFQRCode BinaryInteger+EFQRCode.swift
[116/136] Compiling EFQRCode CGColor+EFQRCode.swift
[117/136] Compiling EFQRCode EFQRCodeStyleResampleImage.swift
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleResampleImage.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleResampleImageParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultAlign: EFStyleResampleImageParamsAlign = EFStyleResampleImageParamsAlign()
 36 |     public static let defaultTiming: EFStyleResampleImageParamsTiming = EFStyleResampleImageParamsTiming()
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleResampleImage.swift:35:23: warning: static property 'defaultAlign' is not concurrency-safe because non-'Sendable' type 'EFStyleResampleImageParamsAlign' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultAlign: EFStyleResampleImageParamsAlign = EFStyleResampleImageParamsAlign()
    |                       |- warning: static property 'defaultAlign' is not concurrency-safe because non-'Sendable' type 'EFStyleResampleImageParamsAlign' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultAlign' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |     public static let defaultTiming: EFStyleResampleImageParamsTiming = EFStyleResampleImageParamsTiming()
 37 |     public static let defaultPosition: EFStyleResampleImageParamsPosition = EFStyleResampleImageParamsPosition()
    :
 89 | }
 90 |
 91 | public class EFStyleResampleImageParamsAlign {
    |              `- note: class 'EFStyleResampleImageParamsAlign' does not conform to the 'Sendable' protocol
 92 |
 93 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleResampleImage.swift:36:23: warning: static property 'defaultTiming' is not concurrency-safe because non-'Sendable' type 'EFStyleResampleImageParamsTiming' may have shared mutable state; this is an error in the Swift 6 language mode
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultAlign: EFStyleResampleImageParamsAlign = EFStyleResampleImageParamsAlign()
 36 |     public static let defaultTiming: EFStyleResampleImageParamsTiming = EFStyleResampleImageParamsTiming()
    |                       |- warning: static property 'defaultTiming' is not concurrency-safe because non-'Sendable' type 'EFStyleResampleImageParamsTiming' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultTiming' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     public static let defaultPosition: EFStyleResampleImageParamsPosition = EFStyleResampleImageParamsPosition()
 38 |     public static let defaultDataColor: CGColor = CGColor.createWith(rgb: 0x000000)!
    :
118 | }
119 |
120 | public class EFStyleResampleImageParamsTiming {
    |              `- note: class 'EFStyleResampleImageParamsTiming' does not conform to the 'Sendable' protocol
121 |
122 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleResampleImage.swift:37:23: warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleResampleImageParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
 35 |     public static let defaultAlign: EFStyleResampleImageParamsAlign = EFStyleResampleImageParamsAlign()
 36 |     public static let defaultTiming: EFStyleResampleImageParamsTiming = EFStyleResampleImageParamsTiming()
 37 |     public static let defaultPosition: EFStyleResampleImageParamsPosition = EFStyleResampleImageParamsPosition()
    |                       |- warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleResampleImageParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultPosition' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |     public static let defaultDataColor: CGColor = CGColor.createWith(rgb: 0x000000)!
 39 |
    :
140 | }
141 |
142 | public class EFStyleResampleImageParamsPosition {
    |              `- note: class 'EFStyleResampleImageParamsPosition' does not conform to the 'Sendable' protocol
143 |
144 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleResampleImage.swift:338:24: warning: static property 'uniqueMark' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
336 |     override func writeIcon(qrcode: QRCode) throws -> [String] {
337 |         struct Anchor {
338 |             static var uniqueMark: Int = 0
    |                        |- warning: static property 'uniqueMark' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'uniqueMark' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'uniqueMark' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
339 |         }
340 |
[118/136] Compiling EFQRCode EFAnimatedImageFormat.swift
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleResampleImage.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleResampleImageParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultAlign: EFStyleResampleImageParamsAlign = EFStyleResampleImageParamsAlign()
 36 |     public static let defaultTiming: EFStyleResampleImageParamsTiming = EFStyleResampleImageParamsTiming()
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleResampleImage.swift:35:23: warning: static property 'defaultAlign' is not concurrency-safe because non-'Sendable' type 'EFStyleResampleImageParamsAlign' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultAlign: EFStyleResampleImageParamsAlign = EFStyleResampleImageParamsAlign()
    |                       |- warning: static property 'defaultAlign' is not concurrency-safe because non-'Sendable' type 'EFStyleResampleImageParamsAlign' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultAlign' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |     public static let defaultTiming: EFStyleResampleImageParamsTiming = EFStyleResampleImageParamsTiming()
 37 |     public static let defaultPosition: EFStyleResampleImageParamsPosition = EFStyleResampleImageParamsPosition()
    :
 89 | }
 90 |
 91 | public class EFStyleResampleImageParamsAlign {
    |              `- note: class 'EFStyleResampleImageParamsAlign' does not conform to the 'Sendable' protocol
 92 |
 93 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleResampleImage.swift:36:23: warning: static property 'defaultTiming' is not concurrency-safe because non-'Sendable' type 'EFStyleResampleImageParamsTiming' may have shared mutable state; this is an error in the Swift 6 language mode
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultAlign: EFStyleResampleImageParamsAlign = EFStyleResampleImageParamsAlign()
 36 |     public static let defaultTiming: EFStyleResampleImageParamsTiming = EFStyleResampleImageParamsTiming()
    |                       |- warning: static property 'defaultTiming' is not concurrency-safe because non-'Sendable' type 'EFStyleResampleImageParamsTiming' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultTiming' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     public static let defaultPosition: EFStyleResampleImageParamsPosition = EFStyleResampleImageParamsPosition()
 38 |     public static let defaultDataColor: CGColor = CGColor.createWith(rgb: 0x000000)!
    :
118 | }
119 |
120 | public class EFStyleResampleImageParamsTiming {
    |              `- note: class 'EFStyleResampleImageParamsTiming' does not conform to the 'Sendable' protocol
121 |
122 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleResampleImage.swift:37:23: warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleResampleImageParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
 35 |     public static let defaultAlign: EFStyleResampleImageParamsAlign = EFStyleResampleImageParamsAlign()
 36 |     public static let defaultTiming: EFStyleResampleImageParamsTiming = EFStyleResampleImageParamsTiming()
 37 |     public static let defaultPosition: EFStyleResampleImageParamsPosition = EFStyleResampleImageParamsPosition()
    |                       |- warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleResampleImageParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultPosition' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |     public static let defaultDataColor: CGColor = CGColor.createWith(rgb: 0x000000)!
 39 |
    :
140 | }
141 |
142 | public class EFStyleResampleImageParamsPosition {
    |              `- note: class 'EFStyleResampleImageParamsPosition' does not conform to the 'Sendable' protocol
143 |
144 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleResampleImage.swift:338:24: warning: static property 'uniqueMark' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
336 |     override func writeIcon(qrcode: QRCode) throws -> [String] {
337 |         struct Anchor {
338 |             static var uniqueMark: Int = 0
    |                        |- warning: static property 'uniqueMark' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'uniqueMark' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'uniqueMark' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
339 |         }
340 |
[119/136] Compiling EFQRCode EFCorrectionLevel.swift
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleResampleImage.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleResampleImageParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultAlign: EFStyleResampleImageParamsAlign = EFStyleResampleImageParamsAlign()
 36 |     public static let defaultTiming: EFStyleResampleImageParamsTiming = EFStyleResampleImageParamsTiming()
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleResampleImage.swift:35:23: warning: static property 'defaultAlign' is not concurrency-safe because non-'Sendable' type 'EFStyleResampleImageParamsAlign' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultAlign: EFStyleResampleImageParamsAlign = EFStyleResampleImageParamsAlign()
    |                       |- warning: static property 'defaultAlign' is not concurrency-safe because non-'Sendable' type 'EFStyleResampleImageParamsAlign' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultAlign' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |     public static let defaultTiming: EFStyleResampleImageParamsTiming = EFStyleResampleImageParamsTiming()
 37 |     public static let defaultPosition: EFStyleResampleImageParamsPosition = EFStyleResampleImageParamsPosition()
    :
 89 | }
 90 |
 91 | public class EFStyleResampleImageParamsAlign {
    |              `- note: class 'EFStyleResampleImageParamsAlign' does not conform to the 'Sendable' protocol
 92 |
 93 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleResampleImage.swift:36:23: warning: static property 'defaultTiming' is not concurrency-safe because non-'Sendable' type 'EFStyleResampleImageParamsTiming' may have shared mutable state; this is an error in the Swift 6 language mode
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultAlign: EFStyleResampleImageParamsAlign = EFStyleResampleImageParamsAlign()
 36 |     public static let defaultTiming: EFStyleResampleImageParamsTiming = EFStyleResampleImageParamsTiming()
    |                       |- warning: static property 'defaultTiming' is not concurrency-safe because non-'Sendable' type 'EFStyleResampleImageParamsTiming' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultTiming' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     public static let defaultPosition: EFStyleResampleImageParamsPosition = EFStyleResampleImageParamsPosition()
 38 |     public static let defaultDataColor: CGColor = CGColor.createWith(rgb: 0x000000)!
    :
118 | }
119 |
120 | public class EFStyleResampleImageParamsTiming {
    |              `- note: class 'EFStyleResampleImageParamsTiming' does not conform to the 'Sendable' protocol
121 |
122 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleResampleImage.swift:37:23: warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleResampleImageParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
 35 |     public static let defaultAlign: EFStyleResampleImageParamsAlign = EFStyleResampleImageParamsAlign()
 36 |     public static let defaultTiming: EFStyleResampleImageParamsTiming = EFStyleResampleImageParamsTiming()
 37 |     public static let defaultPosition: EFStyleResampleImageParamsPosition = EFStyleResampleImageParamsPosition()
    |                       |- warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleResampleImageParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultPosition' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |     public static let defaultDataColor: CGColor = CGColor.createWith(rgb: 0x000000)!
 39 |
    :
140 | }
141 |
142 | public class EFStyleResampleImageParamsPosition {
    |              `- note: class 'EFStyleResampleImageParamsPosition' does not conform to the 'Sendable' protocol
143 |
144 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleResampleImage.swift:338:24: warning: static property 'uniqueMark' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
336 |     override func writeIcon(qrcode: QRCode) throws -> [String] {
337 |         struct Anchor {
338 |             static var uniqueMark: Int = 0
    |                        |- warning: static property 'uniqueMark' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'uniqueMark' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'uniqueMark' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
339 |         }
340 |
[120/136] Compiling EFQRCode EFVideoFormat.swift
[121/136] Compiling EFQRCode Utils.swift
[122/136] Compiling EFQRCode EFQRCodeStyleImageFill.swift
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleImageFill.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleImageFillParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultBackgroundColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
 36 |     public static let defaultMaskColor: CGColor = CGColor.createWith(rgb: 0x000000, alpha: 0.1)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleLine.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleLineParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultPosition: EFStyleLineParamsPosition = EFStyleLineParamsPosition()
 36 |     public static let defaultLine: EFStyleLineParamsLine = EFStyleLineParamsLine()
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleLine.swift:35:23: warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleLineParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultPosition: EFStyleLineParamsPosition = EFStyleLineParamsPosition()
    |                       |- warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleLineParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultPosition' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |     public static let defaultLine: EFStyleLineParamsLine = EFStyleLineParamsLine()
 37 |
    :
 65 | }
 66 |
 67 | public class EFStyleLineParamsPosition {
    |              `- note: class 'EFStyleLineParamsPosition' does not conform to the 'Sendable' protocol
 68 |
 69 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleLine.swift:36:23: warning: static property 'defaultLine' is not concurrency-safe because non-'Sendable' type 'EFStyleLineParamsLine' may have shared mutable state; this is an error in the Swift 6 language mode
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultPosition: EFStyleLineParamsPosition = EFStyleLineParamsPosition()
 36 |     public static let defaultLine: EFStyleLineParamsLine = EFStyleLineParamsLine()
    |                       |- warning: static property 'defaultLine' is not concurrency-safe because non-'Sendable' type 'EFStyleLineParamsLine' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultLine' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |
 38 |     let position: EFStyleLineParamsPosition
    :
 84 | }
 85 |
 86 | public class EFStyleLineParamsLine {
    |              `- note: class 'EFStyleLineParamsLine' does not conform to the 'Sendable' protocol
 87 |
 88 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleRandomRectangle.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleRandomRectangleParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x14AA3C)!
 36 |
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
[123/136] Compiling EFQRCode EFQRCodeStyleLine.swift
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleImageFill.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleImageFillParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultBackgroundColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
 36 |     public static let defaultMaskColor: CGColor = CGColor.createWith(rgb: 0x000000, alpha: 0.1)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleLine.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleLineParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultPosition: EFStyleLineParamsPosition = EFStyleLineParamsPosition()
 36 |     public static let defaultLine: EFStyleLineParamsLine = EFStyleLineParamsLine()
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleLine.swift:35:23: warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleLineParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultPosition: EFStyleLineParamsPosition = EFStyleLineParamsPosition()
    |                       |- warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleLineParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultPosition' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |     public static let defaultLine: EFStyleLineParamsLine = EFStyleLineParamsLine()
 37 |
    :
 65 | }
 66 |
 67 | public class EFStyleLineParamsPosition {
    |              `- note: class 'EFStyleLineParamsPosition' does not conform to the 'Sendable' protocol
 68 |
 69 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleLine.swift:36:23: warning: static property 'defaultLine' is not concurrency-safe because non-'Sendable' type 'EFStyleLineParamsLine' may have shared mutable state; this is an error in the Swift 6 language mode
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultPosition: EFStyleLineParamsPosition = EFStyleLineParamsPosition()
 36 |     public static let defaultLine: EFStyleLineParamsLine = EFStyleLineParamsLine()
    |                       |- warning: static property 'defaultLine' is not concurrency-safe because non-'Sendable' type 'EFStyleLineParamsLine' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultLine' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |
 38 |     let position: EFStyleLineParamsPosition
    :
 84 | }
 85 |
 86 | public class EFStyleLineParamsLine {
    |              `- note: class 'EFStyleLineParamsLine' does not conform to the 'Sendable' protocol
 87 |
 88 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleRandomRectangle.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleRandomRectangleParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x14AA3C)!
 36 |
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
[124/136] Compiling EFQRCode EFQRCodeStyleRandomRectangle.swift
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleImageFill.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleImageFillParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultBackgroundColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
 36 |     public static let defaultMaskColor: CGColor = CGColor.createWith(rgb: 0x000000, alpha: 0.1)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleLine.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleLineParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultPosition: EFStyleLineParamsPosition = EFStyleLineParamsPosition()
 36 |     public static let defaultLine: EFStyleLineParamsLine = EFStyleLineParamsLine()
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleLine.swift:35:23: warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleLineParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultPosition: EFStyleLineParamsPosition = EFStyleLineParamsPosition()
    |                       |- warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleLineParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultPosition' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |     public static let defaultLine: EFStyleLineParamsLine = EFStyleLineParamsLine()
 37 |
    :
 65 | }
 66 |
 67 | public class EFStyleLineParamsPosition {
    |              `- note: class 'EFStyleLineParamsPosition' does not conform to the 'Sendable' protocol
 68 |
 69 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleLine.swift:36:23: warning: static property 'defaultLine' is not concurrency-safe because non-'Sendable' type 'EFStyleLineParamsLine' may have shared mutable state; this is an error in the Swift 6 language mode
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultPosition: EFStyleLineParamsPosition = EFStyleLineParamsPosition()
 36 |     public static let defaultLine: EFStyleLineParamsLine = EFStyleLineParamsLine()
    |                       |- warning: static property 'defaultLine' is not concurrency-safe because non-'Sendable' type 'EFStyleLineParamsLine' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultLine' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |
 38 |     let position: EFStyleLineParamsPosition
    :
 84 | }
 85 |
 86 | public class EFStyleLineParamsLine {
    |              `- note: class 'EFStyleLineParamsLine' does not conform to the 'Sendable' protocol
 87 |
 88 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleRandomRectangle.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleRandomRectangleParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x14AA3C)!
 36 |
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
[125/136] Compiling EFQRCode EFQRCodeStyle25D.swift
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle25D.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyle25DParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultTopColor: CGColor = CGColor.createWith(rgb: 0x000000)!
 36 |     public static let defaultLeftColor: CGColor = CGColor.createWith(rgb: 0x000000, alpha: 0.2)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle25D.swift:153:24: warning: static property 'uniqueMark' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
151 |     override func writeIcon(qrcode: QRCode) throws -> [String] {
152 |         struct Anchor {
153 |             static var uniqueMark: Int = 0
    |                        |- warning: static property 'uniqueMark' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'uniqueMark' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'uniqueMark' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 |         }
155 |
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleBasic.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleBasicParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultAlign: EFStyleBasicParamsAlign = EFStyleBasicParamsAlign()
 36 |     public static let defaultTiming: EFStyleBasicParamsTiming = EFStyleBasicParamsTiming()
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleBasic.swift:35:23: warning: static property 'defaultAlign' is not concurrency-safe because non-'Sendable' type 'EFStyleBasicParamsAlign' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultAlign: EFStyleBasicParamsAlign = EFStyleBasicParamsAlign()
    |                       |- warning: static property 'defaultAlign' is not concurrency-safe because non-'Sendable' type 'EFStyleBasicParamsAlign' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultAlign' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |     public static let defaultTiming: EFStyleBasicParamsTiming = EFStyleBasicParamsTiming()
 37 |     public static let defaultData: EFStyleBasicParamsData = EFStyleBasicParamsData()
    :
 77 | }
 78 |
 79 | public class EFStyleBasicParamsAlign {
    |              `- note: class 'EFStyleBasicParamsAlign' does not conform to the 'Sendable' protocol
 80 |
 81 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleBasic.swift:36:23: warning: static property 'defaultTiming' is not concurrency-safe because non-'Sendable' type 'EFStyleBasicParamsTiming' may have shared mutable state; this is an error in the Swift 6 language mode
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultAlign: EFStyleBasicParamsAlign = EFStyleBasicParamsAlign()
 36 |     public static let defaultTiming: EFStyleBasicParamsTiming = EFStyleBasicParamsTiming()
    |                       |- warning: static property 'defaultTiming' is not concurrency-safe because non-'Sendable' type 'EFStyleBasicParamsTiming' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultTiming' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     public static let defaultData: EFStyleBasicParamsData = EFStyleBasicParamsData()
 38 |     public static let defaultPosition: EFStyleBasicParamsPosition = EFStyleBasicParamsPosition()
    :
 96 | }
 97 |
 98 | public class EFStyleBasicParamsTiming {
    |              `- note: class 'EFStyleBasicParamsTiming' does not conform to the 'Sendable' protocol
 99 |
100 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleBasic.swift:37:23: warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleBasicParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
 35 |     public static let defaultAlign: EFStyleBasicParamsAlign = EFStyleBasicParamsAlign()
 36 |     public static let defaultTiming: EFStyleBasicParamsTiming = EFStyleBasicParamsTiming()
 37 |     public static let defaultData: EFStyleBasicParamsData = EFStyleBasicParamsData()
    |                       |- warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleBasicParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultData' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |     public static let defaultPosition: EFStyleBasicParamsPosition = EFStyleBasicParamsPosition()
 39 |
    :
115 | }
116 |
117 | public class EFStyleBasicParamsData {
    |              `- note: class 'EFStyleBasicParamsData' does not conform to the 'Sendable' protocol
118 |
119 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleBasic.swift:38:23: warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleBasicParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
 36 |     public static let defaultTiming: EFStyleBasicParamsTiming = EFStyleBasicParamsTiming()
 37 |     public static let defaultData: EFStyleBasicParamsData = EFStyleBasicParamsData()
 38 |     public static let defaultPosition: EFStyleBasicParamsPosition = EFStyleBasicParamsPosition()
    |                       |- warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleBasicParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultPosition' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     let data: EFStyleBasicParamsData
    :
134 | }
135 |
136 | public class EFStyleBasicParamsPosition {
    |              `- note: class 'EFStyleBasicParamsPosition' does not conform to the 'Sendable' protocol
137 |
138 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleBubble.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleBubbleParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultDataColor: CGColor = CGColor.createWith(rgb: 0x8ED1FC)!
 36 |     public static let defaultDataCenterColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleBubble.swift:37:23: warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleBubbleParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
 35 |     public static let defaultDataColor: CGColor = CGColor.createWith(rgb: 0x8ED1FC)!
 36 |     public static let defaultDataCenterColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
 37 |     public static let defaultPosition: EFStyleBubbleParamsPosition = EFStyleBubbleParamsPosition()
    |                       |- warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleBubbleParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultPosition' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     let dataColor: CGColor
    :
 71 | }
 72 |
 73 | public class EFStyleBubbleParamsPosition {
    |              `- note: class 'EFStyleBubbleParamsPosition' does not conform to the 'Sendable' protocol
 74 |
 75 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x0693E3)!
[126/136] Compiling EFQRCode EFQRCodeStyleBasic.swift
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle25D.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyle25DParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultTopColor: CGColor = CGColor.createWith(rgb: 0x000000)!
 36 |     public static let defaultLeftColor: CGColor = CGColor.createWith(rgb: 0x000000, alpha: 0.2)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle25D.swift:153:24: warning: static property 'uniqueMark' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
151 |     override func writeIcon(qrcode: QRCode) throws -> [String] {
152 |         struct Anchor {
153 |             static var uniqueMark: Int = 0
    |                        |- warning: static property 'uniqueMark' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'uniqueMark' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'uniqueMark' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 |         }
155 |
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleBasic.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleBasicParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultAlign: EFStyleBasicParamsAlign = EFStyleBasicParamsAlign()
 36 |     public static let defaultTiming: EFStyleBasicParamsTiming = EFStyleBasicParamsTiming()
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleBasic.swift:35:23: warning: static property 'defaultAlign' is not concurrency-safe because non-'Sendable' type 'EFStyleBasicParamsAlign' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultAlign: EFStyleBasicParamsAlign = EFStyleBasicParamsAlign()
    |                       |- warning: static property 'defaultAlign' is not concurrency-safe because non-'Sendable' type 'EFStyleBasicParamsAlign' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultAlign' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |     public static let defaultTiming: EFStyleBasicParamsTiming = EFStyleBasicParamsTiming()
 37 |     public static let defaultData: EFStyleBasicParamsData = EFStyleBasicParamsData()
    :
 77 | }
 78 |
 79 | public class EFStyleBasicParamsAlign {
    |              `- note: class 'EFStyleBasicParamsAlign' does not conform to the 'Sendable' protocol
 80 |
 81 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleBasic.swift:36:23: warning: static property 'defaultTiming' is not concurrency-safe because non-'Sendable' type 'EFStyleBasicParamsTiming' may have shared mutable state; this is an error in the Swift 6 language mode
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultAlign: EFStyleBasicParamsAlign = EFStyleBasicParamsAlign()
 36 |     public static let defaultTiming: EFStyleBasicParamsTiming = EFStyleBasicParamsTiming()
    |                       |- warning: static property 'defaultTiming' is not concurrency-safe because non-'Sendable' type 'EFStyleBasicParamsTiming' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultTiming' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     public static let defaultData: EFStyleBasicParamsData = EFStyleBasicParamsData()
 38 |     public static let defaultPosition: EFStyleBasicParamsPosition = EFStyleBasicParamsPosition()
    :
 96 | }
 97 |
 98 | public class EFStyleBasicParamsTiming {
    |              `- note: class 'EFStyleBasicParamsTiming' does not conform to the 'Sendable' protocol
 99 |
100 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleBasic.swift:37:23: warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleBasicParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
 35 |     public static let defaultAlign: EFStyleBasicParamsAlign = EFStyleBasicParamsAlign()
 36 |     public static let defaultTiming: EFStyleBasicParamsTiming = EFStyleBasicParamsTiming()
 37 |     public static let defaultData: EFStyleBasicParamsData = EFStyleBasicParamsData()
    |                       |- warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleBasicParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultData' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |     public static let defaultPosition: EFStyleBasicParamsPosition = EFStyleBasicParamsPosition()
 39 |
    :
115 | }
116 |
117 | public class EFStyleBasicParamsData {
    |              `- note: class 'EFStyleBasicParamsData' does not conform to the 'Sendable' protocol
118 |
119 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleBasic.swift:38:23: warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleBasicParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
 36 |     public static let defaultTiming: EFStyleBasicParamsTiming = EFStyleBasicParamsTiming()
 37 |     public static let defaultData: EFStyleBasicParamsData = EFStyleBasicParamsData()
 38 |     public static let defaultPosition: EFStyleBasicParamsPosition = EFStyleBasicParamsPosition()
    |                       |- warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleBasicParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultPosition' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     let data: EFStyleBasicParamsData
    :
134 | }
135 |
136 | public class EFStyleBasicParamsPosition {
    |              `- note: class 'EFStyleBasicParamsPosition' does not conform to the 'Sendable' protocol
137 |
138 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleBubble.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleBubbleParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultDataColor: CGColor = CGColor.createWith(rgb: 0x8ED1FC)!
 36 |     public static let defaultDataCenterColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleBubble.swift:37:23: warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleBubbleParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
 35 |     public static let defaultDataColor: CGColor = CGColor.createWith(rgb: 0x8ED1FC)!
 36 |     public static let defaultDataCenterColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
 37 |     public static let defaultPosition: EFStyleBubbleParamsPosition = EFStyleBubbleParamsPosition()
    |                       |- warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleBubbleParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultPosition' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     let dataColor: CGColor
    :
 71 | }
 72 |
 73 | public class EFStyleBubbleParamsPosition {
    |              `- note: class 'EFStyleBubbleParamsPosition' does not conform to the 'Sendable' protocol
 74 |
 75 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x0693E3)!
[127/136] Compiling EFQRCode EFQRCodeStyleBubble.swift
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle25D.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyle25DParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultTopColor: CGColor = CGColor.createWith(rgb: 0x000000)!
 36 |     public static let defaultLeftColor: CGColor = CGColor.createWith(rgb: 0x000000, alpha: 0.2)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle25D.swift:153:24: warning: static property 'uniqueMark' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
151 |     override func writeIcon(qrcode: QRCode) throws -> [String] {
152 |         struct Anchor {
153 |             static var uniqueMark: Int = 0
    |                        |- warning: static property 'uniqueMark' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'uniqueMark' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'uniqueMark' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 |         }
155 |
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleBasic.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleBasicParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultAlign: EFStyleBasicParamsAlign = EFStyleBasicParamsAlign()
 36 |     public static let defaultTiming: EFStyleBasicParamsTiming = EFStyleBasicParamsTiming()
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleBasic.swift:35:23: warning: static property 'defaultAlign' is not concurrency-safe because non-'Sendable' type 'EFStyleBasicParamsAlign' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultAlign: EFStyleBasicParamsAlign = EFStyleBasicParamsAlign()
    |                       |- warning: static property 'defaultAlign' is not concurrency-safe because non-'Sendable' type 'EFStyleBasicParamsAlign' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultAlign' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |     public static let defaultTiming: EFStyleBasicParamsTiming = EFStyleBasicParamsTiming()
 37 |     public static let defaultData: EFStyleBasicParamsData = EFStyleBasicParamsData()
    :
 77 | }
 78 |
 79 | public class EFStyleBasicParamsAlign {
    |              `- note: class 'EFStyleBasicParamsAlign' does not conform to the 'Sendable' protocol
 80 |
 81 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleBasic.swift:36:23: warning: static property 'defaultTiming' is not concurrency-safe because non-'Sendable' type 'EFStyleBasicParamsTiming' may have shared mutable state; this is an error in the Swift 6 language mode
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultAlign: EFStyleBasicParamsAlign = EFStyleBasicParamsAlign()
 36 |     public static let defaultTiming: EFStyleBasicParamsTiming = EFStyleBasicParamsTiming()
    |                       |- warning: static property 'defaultTiming' is not concurrency-safe because non-'Sendable' type 'EFStyleBasicParamsTiming' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultTiming' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     public static let defaultData: EFStyleBasicParamsData = EFStyleBasicParamsData()
 38 |     public static let defaultPosition: EFStyleBasicParamsPosition = EFStyleBasicParamsPosition()
    :
 96 | }
 97 |
 98 | public class EFStyleBasicParamsTiming {
    |              `- note: class 'EFStyleBasicParamsTiming' does not conform to the 'Sendable' protocol
 99 |
100 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleBasic.swift:37:23: warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleBasicParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
 35 |     public static let defaultAlign: EFStyleBasicParamsAlign = EFStyleBasicParamsAlign()
 36 |     public static let defaultTiming: EFStyleBasicParamsTiming = EFStyleBasicParamsTiming()
 37 |     public static let defaultData: EFStyleBasicParamsData = EFStyleBasicParamsData()
    |                       |- warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleBasicParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultData' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |     public static let defaultPosition: EFStyleBasicParamsPosition = EFStyleBasicParamsPosition()
 39 |
    :
115 | }
116 |
117 | public class EFStyleBasicParamsData {
    |              `- note: class 'EFStyleBasicParamsData' does not conform to the 'Sendable' protocol
118 |
119 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleBasic.swift:38:23: warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleBasicParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
 36 |     public static let defaultTiming: EFStyleBasicParamsTiming = EFStyleBasicParamsTiming()
 37 |     public static let defaultData: EFStyleBasicParamsData = EFStyleBasicParamsData()
 38 |     public static let defaultPosition: EFStyleBasicParamsPosition = EFStyleBasicParamsPosition()
    |                       |- warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleBasicParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultPosition' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     let data: EFStyleBasicParamsData
    :
134 | }
135 |
136 | public class EFStyleBasicParamsPosition {
    |              `- note: class 'EFStyleBasicParamsPosition' does not conform to the 'Sendable' protocol
137 |
138 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleBubble.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleBubbleParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultDataColor: CGColor = CGColor.createWith(rgb: 0x8ED1FC)!
 36 |     public static let defaultDataCenterColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleBubble.swift:37:23: warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleBubbleParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
 35 |     public static let defaultDataColor: CGColor = CGColor.createWith(rgb: 0x8ED1FC)!
 36 |     public static let defaultDataCenterColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
 37 |     public static let defaultPosition: EFStyleBubbleParamsPosition = EFStyleBubbleParamsPosition()
    |                       |- warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleBubbleParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultPosition' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     let dataColor: CGColor
    :
 71 | }
 72 |
 73 | public class EFStyleBubbleParamsPosition {
    |              `- note: class 'EFStyleBubbleParamsPosition' does not conform to the 'Sendable' protocol
 74 |
 75 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x0693E3)!
[128/136] Compiling EFQRCode CGImage+EFQRCode.swift
[129/136] Compiling EFQRCode CIImage+EFQRCode.swift
[130/136] Compiling EFQRCode NSImage+EFQRCode.swift
[131/136] Compiling EFQRCode EFQRCode+Generator.swift
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:409:61: warning: capture of 'style' with non-sendable type 'EFQRCodeStyleBase' in a '@Sendable' closure
407 |                         let iconImage: EFStyleParamImage? = iconFrames.isEmpty ? nil : EFStyleParamImage.static(image: iconFrames[index])
408 |                         let watermarkImage: EFStyleParamImage? = watermarkFrames.isEmpty ? nil : EFStyleParamImage.static(image: watermarkFrames[index])
409 |                         let frameStyle: EFQRCodeStyleBase = style.copyWith(iconImage: iconImage, watermarkImage: watermarkImage)
    |                                                             `- warning: capture of 'style' with non-sendable type 'EFQRCodeStyleBase' in a '@Sendable' closure
410 |                         let tempGenerator: EFQRCode.Generator = EFQRCode.Generator(self.qrcode, styleImplementation: frameStyle)
411 |                         let qrFrame = try tempGenerator.toImage(size: size)
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:282:14: note: class 'EFQRCodeStyleBase' does not conform to the 'Sendable' protocol
280 | }
281 |
282 | public class EFQRCodeStyleBase {
    |              `- note: class 'EFQRCodeStyleBase' does not conform to the 'Sendable' protocol
283 |
284 |     func writeQRCode(qrcode: QRCode) throws -> [String] {
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:410:84: warning: capture of 'self' with non-sendable type 'EFQRCode.Generator' in a '@Sendable' closure
 49 | public extension EFQRCode {
 50 |
 51 |     class Generator {
    |           `- note: class 'Generator' does not conform to the 'Sendable' protocol
 52 |         public let qrcode: QRCode
 53 |         public let style: EFQRCodeStyleBase
    :
408 |                         let watermarkImage: EFStyleParamImage? = watermarkFrames.isEmpty ? nil : EFStyleParamImage.static(image: watermarkFrames[index])
409 |                         let frameStyle: EFQRCodeStyleBase = style.copyWith(iconImage: iconImage, watermarkImage: watermarkImage)
410 |                         let tempGenerator: EFQRCode.Generator = EFQRCode.Generator(self.qrcode, styleImplementation: frameStyle)
    |                                                                                    `- warning: capture of 'self' with non-sendable type 'EFQRCode.Generator' in a '@Sendable' closure
411 |                         let qrFrame = try tempGenerator.toImage(size: size)
412 |                         guard let qrFrameCGImage = qrFrame.cgImage() else {
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:409:61: warning: capture of 'style' with non-sendable type 'EFQRCodeStyleBase' in an isolated closure; this is an error in the Swift 6 language mode
407 |                         let iconImage: EFStyleParamImage? = iconFrames.isEmpty ? nil : EFStyleParamImage.static(image: iconFrames[index])
408 |                         let watermarkImage: EFStyleParamImage? = watermarkFrames.isEmpty ? nil : EFStyleParamImage.static(image: watermarkFrames[index])
409 |                         let frameStyle: EFQRCodeStyleBase = style.copyWith(iconImage: iconImage, watermarkImage: watermarkImage)
    |                                                             `- warning: capture of 'style' with non-sendable type 'EFQRCodeStyleBase' in an isolated closure; this is an error in the Swift 6 language mode
410 |                         let tempGenerator: EFQRCode.Generator = EFQRCode.Generator(self.qrcode, styleImplementation: frameStyle)
411 |                         let qrFrame = try tempGenerator.toImage(size: size)
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:282:14: note: class 'EFQRCodeStyleBase' does not conform to the 'Sendable' protocol
280 | }
281 |
282 | public class EFQRCodeStyleBase {
    |              `- note: class 'EFQRCodeStyleBase' does not conform to the 'Sendable' protocol
283 |
284 |     func writeQRCode(qrcode: QRCode) throws -> [String] {
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:410:84: warning: capture of 'self' with non-sendable type 'EFQRCode.Generator' in an isolated closure; this is an error in the Swift 6 language mode
 49 | public extension EFQRCode {
 50 |
 51 |     class Generator {
    |           `- note: class 'Generator' does not conform to the 'Sendable' protocol
 52 |         public let qrcode: QRCode
 53 |         public let style: EFQRCodeStyleBase
    :
408 |                         let watermarkImage: EFStyleParamImage? = watermarkFrames.isEmpty ? nil : EFStyleParamImage.static(image: watermarkFrames[index])
409 |                         let frameStyle: EFQRCodeStyleBase = style.copyWith(iconImage: iconImage, watermarkImage: watermarkImage)
410 |                         let tempGenerator: EFQRCode.Generator = EFQRCode.Generator(self.qrcode, styleImplementation: frameStyle)
    |                                                                                    `- warning: capture of 'self' with non-sendable type 'EFQRCode.Generator' in an isolated closure; this is an error in the Swift 6 language mode
411 |                         let qrFrame = try tempGenerator.toImage(size: size)
412 |                         guard let qrFrameCGImage = qrFrame.cgImage() else {
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:415:25: warning: mutation of captured var 'qrFrames' in concurrently-executing code; this is an error in the Swift 6 language mode
413 |                             throw EFQRCodeError.cannotCreateCGImage
414 |                         }
415 |                         qrFrames[index] = qrFrameCGImage
    |                         `- warning: mutation of captured var 'qrFrames' in concurrently-executing code; this is an error in the Swift 6 language mode
416 |                     } catch {
417 |                         errorLock.lock()
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:418:28: warning: reference to captured var 'encounteredError' in concurrently-executing code; this is an error in the Swift 6 language mode
416 |                     } catch {
417 |                         errorLock.lock()
418 |                         if encounteredError == nil {
    |                            `- warning: reference to captured var 'encounteredError' in concurrently-executing code; this is an error in the Swift 6 language mode
419 |                             encounteredError = error
420 |                             queue.cancelAllOperations()
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:419:29: warning: mutation of captured var 'encounteredError' in concurrently-executing code; this is an error in the Swift 6 language mode
417 |                         errorLock.lock()
418 |                         if encounteredError == nil {
419 |                             encounteredError = error
    |                             `- warning: mutation of captured var 'encounteredError' in concurrently-executing code; this is an error in the Swift 6 language mode
420 |                             queue.cancelAllOperations()
421 |                         }
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:737:77: warning: capture of 'pool' with non-sendable type 'CVPixelBufferPool' in a '@Sendable' closure
735 |                 while accumulatedTime < targetTime {
736 |                     var pixelBuffer: CVPixelBuffer?
737 |                     CVPixelBufferPoolCreatePixelBuffer(kCFAllocatorDefault, pool, &pixelBuffer)
    |                                                                             `- warning: capture of 'pool' with non-sendable type 'CVPixelBufferPool' in a '@Sendable' closure
738 |
739 |                     guard let buffer = pixelBuffer else { return }
CoreVideo.CVPixelBufferPool:1:14: note: class 'CVPixelBufferPool' does not conform to the 'Sendable' protocol
1 | public class CVPixelBufferPool : _CFObject {
  |              `- note: class 'CVPixelBufferPool' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:772:28: warning: capture of 'writerInput' with non-sendable type 'AVAssetWriterInput' in a '@Sendable' closure
770 |                     )
771 |
772 |                     while !writerInput.isReadyForMoreMediaData {
    |                            `- warning: capture of 'writerInput' with non-sendable type 'AVAssetWriterInput' in a '@Sendable' closure
773 |                         Thread.sleep(forTimeInterval: 0.1)
774 |                     }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVAssetWriterInput.h:43:12: note: class 'AVAssetWriterInput' does not conform to the 'Sendable' protocol
  41 |  */
  42 | API_AVAILABLE(macos(10.7), ios(4.1), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos)
  43 | @interface AVAssetWriterInput : NSObject
     |            `- note: class 'AVAssetWriterInput' does not conform to the 'Sendable' protocol
  44 | {
  45 | @private
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:42:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AVFoundation'
 40 | #endif
 41 | #if canImport(AVFoundation) && !os(watchOS)
 42 | import AVFoundation
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AVFoundation'
 43 | import CoreVideo
 44 | #endif
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:776:21: warning: capture of 'adaptor' with non-sendable type 'AVAssetWriterInputPixelBufferAdaptor' in a '@Sendable' closure
774 |                     }
775 |
776 |                     adaptor.append(buffer, withPresentationTime: presentationTime)
    |                     `- warning: capture of 'adaptor' with non-sendable type 'AVAssetWriterInputPixelBufferAdaptor' in a '@Sendable' closure
777 |                     accumulatedTime += frameDuration
778 |                 }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVAssetWriterInput.h:715:12: note: class 'AVAssetWriterInputPixelBufferAdaptor' does not conform to the 'Sendable' protocol
 713 |  */
 714 | API_AVAILABLE(macos(10.7), ios(4.1), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos)
 715 | @interface AVAssetWriterInputPixelBufferAdaptor : NSObject
     |            `- note: class 'AVAssetWriterInputPixelBufferAdaptor' does not conform to the 'Sendable' protocol
 716 | {
 717 | @private
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:782:13: warning: capture of 'assetWriter' with non-sendable type 'AVAssetWriter' in a '@Sendable' closure
780 |
781 |             writerInput.markAsFinished()
782 |             assetWriter.finishWriting {
    |             `- warning: capture of 'assetWriter' with non-sendable type 'AVAssetWriter' in a '@Sendable' closure
783 |                 semaphore.signal()
784 |             }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVAssetWriter.h:65:12: note: class 'AVAssetWriter' does not conform to the 'Sendable' protocol
 63 |  */
 64 | API_AVAILABLE(macos(10.7), ios(4.1), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos)
 65 | @interface AVAssetWriter : NSObject
    |            `- note: class 'AVAssetWriter' does not conform to the 'Sendable' protocol
 66 | {
 67 | @private
[132/136] Compiling EFQRCode EFQRCode+Recognizer.swift
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:409:61: warning: capture of 'style' with non-sendable type 'EFQRCodeStyleBase' in a '@Sendable' closure
407 |                         let iconImage: EFStyleParamImage? = iconFrames.isEmpty ? nil : EFStyleParamImage.static(image: iconFrames[index])
408 |                         let watermarkImage: EFStyleParamImage? = watermarkFrames.isEmpty ? nil : EFStyleParamImage.static(image: watermarkFrames[index])
409 |                         let frameStyle: EFQRCodeStyleBase = style.copyWith(iconImage: iconImage, watermarkImage: watermarkImage)
    |                                                             `- warning: capture of 'style' with non-sendable type 'EFQRCodeStyleBase' in a '@Sendable' closure
410 |                         let tempGenerator: EFQRCode.Generator = EFQRCode.Generator(self.qrcode, styleImplementation: frameStyle)
411 |                         let qrFrame = try tempGenerator.toImage(size: size)
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:282:14: note: class 'EFQRCodeStyleBase' does not conform to the 'Sendable' protocol
280 | }
281 |
282 | public class EFQRCodeStyleBase {
    |              `- note: class 'EFQRCodeStyleBase' does not conform to the 'Sendable' protocol
283 |
284 |     func writeQRCode(qrcode: QRCode) throws -> [String] {
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:410:84: warning: capture of 'self' with non-sendable type 'EFQRCode.Generator' in a '@Sendable' closure
 49 | public extension EFQRCode {
 50 |
 51 |     class Generator {
    |           `- note: class 'Generator' does not conform to the 'Sendable' protocol
 52 |         public let qrcode: QRCode
 53 |         public let style: EFQRCodeStyleBase
    :
408 |                         let watermarkImage: EFStyleParamImage? = watermarkFrames.isEmpty ? nil : EFStyleParamImage.static(image: watermarkFrames[index])
409 |                         let frameStyle: EFQRCodeStyleBase = style.copyWith(iconImage: iconImage, watermarkImage: watermarkImage)
410 |                         let tempGenerator: EFQRCode.Generator = EFQRCode.Generator(self.qrcode, styleImplementation: frameStyle)
    |                                                                                    `- warning: capture of 'self' with non-sendable type 'EFQRCode.Generator' in a '@Sendable' closure
411 |                         let qrFrame = try tempGenerator.toImage(size: size)
412 |                         guard let qrFrameCGImage = qrFrame.cgImage() else {
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:409:61: warning: capture of 'style' with non-sendable type 'EFQRCodeStyleBase' in an isolated closure; this is an error in the Swift 6 language mode
407 |                         let iconImage: EFStyleParamImage? = iconFrames.isEmpty ? nil : EFStyleParamImage.static(image: iconFrames[index])
408 |                         let watermarkImage: EFStyleParamImage? = watermarkFrames.isEmpty ? nil : EFStyleParamImage.static(image: watermarkFrames[index])
409 |                         let frameStyle: EFQRCodeStyleBase = style.copyWith(iconImage: iconImage, watermarkImage: watermarkImage)
    |                                                             `- warning: capture of 'style' with non-sendable type 'EFQRCodeStyleBase' in an isolated closure; this is an error in the Swift 6 language mode
410 |                         let tempGenerator: EFQRCode.Generator = EFQRCode.Generator(self.qrcode, styleImplementation: frameStyle)
411 |                         let qrFrame = try tempGenerator.toImage(size: size)
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:282:14: note: class 'EFQRCodeStyleBase' does not conform to the 'Sendable' protocol
280 | }
281 |
282 | public class EFQRCodeStyleBase {
    |              `- note: class 'EFQRCodeStyleBase' does not conform to the 'Sendable' protocol
283 |
284 |     func writeQRCode(qrcode: QRCode) throws -> [String] {
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:410:84: warning: capture of 'self' with non-sendable type 'EFQRCode.Generator' in an isolated closure; this is an error in the Swift 6 language mode
 49 | public extension EFQRCode {
 50 |
 51 |     class Generator {
    |           `- note: class 'Generator' does not conform to the 'Sendable' protocol
 52 |         public let qrcode: QRCode
 53 |         public let style: EFQRCodeStyleBase
    :
408 |                         let watermarkImage: EFStyleParamImage? = watermarkFrames.isEmpty ? nil : EFStyleParamImage.static(image: watermarkFrames[index])
409 |                         let frameStyle: EFQRCodeStyleBase = style.copyWith(iconImage: iconImage, watermarkImage: watermarkImage)
410 |                         let tempGenerator: EFQRCode.Generator = EFQRCode.Generator(self.qrcode, styleImplementation: frameStyle)
    |                                                                                    `- warning: capture of 'self' with non-sendable type 'EFQRCode.Generator' in an isolated closure; this is an error in the Swift 6 language mode
411 |                         let qrFrame = try tempGenerator.toImage(size: size)
412 |                         guard let qrFrameCGImage = qrFrame.cgImage() else {
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:415:25: warning: mutation of captured var 'qrFrames' in concurrently-executing code; this is an error in the Swift 6 language mode
413 |                             throw EFQRCodeError.cannotCreateCGImage
414 |                         }
415 |                         qrFrames[index] = qrFrameCGImage
    |                         `- warning: mutation of captured var 'qrFrames' in concurrently-executing code; this is an error in the Swift 6 language mode
416 |                     } catch {
417 |                         errorLock.lock()
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:418:28: warning: reference to captured var 'encounteredError' in concurrently-executing code; this is an error in the Swift 6 language mode
416 |                     } catch {
417 |                         errorLock.lock()
418 |                         if encounteredError == nil {
    |                            `- warning: reference to captured var 'encounteredError' in concurrently-executing code; this is an error in the Swift 6 language mode
419 |                             encounteredError = error
420 |                             queue.cancelAllOperations()
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:419:29: warning: mutation of captured var 'encounteredError' in concurrently-executing code; this is an error in the Swift 6 language mode
417 |                         errorLock.lock()
418 |                         if encounteredError == nil {
419 |                             encounteredError = error
    |                             `- warning: mutation of captured var 'encounteredError' in concurrently-executing code; this is an error in the Swift 6 language mode
420 |                             queue.cancelAllOperations()
421 |                         }
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:737:77: warning: capture of 'pool' with non-sendable type 'CVPixelBufferPool' in a '@Sendable' closure
735 |                 while accumulatedTime < targetTime {
736 |                     var pixelBuffer: CVPixelBuffer?
737 |                     CVPixelBufferPoolCreatePixelBuffer(kCFAllocatorDefault, pool, &pixelBuffer)
    |                                                                             `- warning: capture of 'pool' with non-sendable type 'CVPixelBufferPool' in a '@Sendable' closure
738 |
739 |                     guard let buffer = pixelBuffer else { return }
CoreVideo.CVPixelBufferPool:1:14: note: class 'CVPixelBufferPool' does not conform to the 'Sendable' protocol
1 | public class CVPixelBufferPool : _CFObject {
  |              `- note: class 'CVPixelBufferPool' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:772:28: warning: capture of 'writerInput' with non-sendable type 'AVAssetWriterInput' in a '@Sendable' closure
770 |                     )
771 |
772 |                     while !writerInput.isReadyForMoreMediaData {
    |                            `- warning: capture of 'writerInput' with non-sendable type 'AVAssetWriterInput' in a '@Sendable' closure
773 |                         Thread.sleep(forTimeInterval: 0.1)
774 |                     }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVAssetWriterInput.h:43:12: note: class 'AVAssetWriterInput' does not conform to the 'Sendable' protocol
  41 |  */
  42 | API_AVAILABLE(macos(10.7), ios(4.1), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos)
  43 | @interface AVAssetWriterInput : NSObject
     |            `- note: class 'AVAssetWriterInput' does not conform to the 'Sendable' protocol
  44 | {
  45 | @private
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:42:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AVFoundation'
 40 | #endif
 41 | #if canImport(AVFoundation) && !os(watchOS)
 42 | import AVFoundation
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AVFoundation'
 43 | import CoreVideo
 44 | #endif
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:776:21: warning: capture of 'adaptor' with non-sendable type 'AVAssetWriterInputPixelBufferAdaptor' in a '@Sendable' closure
774 |                     }
775 |
776 |                     adaptor.append(buffer, withPresentationTime: presentationTime)
    |                     `- warning: capture of 'adaptor' with non-sendable type 'AVAssetWriterInputPixelBufferAdaptor' in a '@Sendable' closure
777 |                     accumulatedTime += frameDuration
778 |                 }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVAssetWriterInput.h:715:12: note: class 'AVAssetWriterInputPixelBufferAdaptor' does not conform to the 'Sendable' protocol
 713 |  */
 714 | API_AVAILABLE(macos(10.7), ios(4.1), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos)
 715 | @interface AVAssetWriterInputPixelBufferAdaptor : NSObject
     |            `- note: class 'AVAssetWriterInputPixelBufferAdaptor' does not conform to the 'Sendable' protocol
 716 | {
 717 | @private
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:782:13: warning: capture of 'assetWriter' with non-sendable type 'AVAssetWriter' in a '@Sendable' closure
780 |
781 |             writerInput.markAsFinished()
782 |             assetWriter.finishWriting {
    |             `- warning: capture of 'assetWriter' with non-sendable type 'AVAssetWriter' in a '@Sendable' closure
783 |                 semaphore.signal()
784 |             }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVAssetWriter.h:65:12: note: class 'AVAssetWriter' does not conform to the 'Sendable' protocol
 63 |  */
 64 | API_AVAILABLE(macos(10.7), ios(4.1), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos)
 65 | @interface AVAssetWriter : NSObject
    |            `- note: class 'AVAssetWriter' does not conform to the 'Sendable' protocol
 66 | {
 67 | @private
[133/136] Compiling EFQRCode EFQRCode.swift
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:409:61: warning: capture of 'style' with non-sendable type 'EFQRCodeStyleBase' in a '@Sendable' closure
407 |                         let iconImage: EFStyleParamImage? = iconFrames.isEmpty ? nil : EFStyleParamImage.static(image: iconFrames[index])
408 |                         let watermarkImage: EFStyleParamImage? = watermarkFrames.isEmpty ? nil : EFStyleParamImage.static(image: watermarkFrames[index])
409 |                         let frameStyle: EFQRCodeStyleBase = style.copyWith(iconImage: iconImage, watermarkImage: watermarkImage)
    |                                                             `- warning: capture of 'style' with non-sendable type 'EFQRCodeStyleBase' in a '@Sendable' closure
410 |                         let tempGenerator: EFQRCode.Generator = EFQRCode.Generator(self.qrcode, styleImplementation: frameStyle)
411 |                         let qrFrame = try tempGenerator.toImage(size: size)
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:282:14: note: class 'EFQRCodeStyleBase' does not conform to the 'Sendable' protocol
280 | }
281 |
282 | public class EFQRCodeStyleBase {
    |              `- note: class 'EFQRCodeStyleBase' does not conform to the 'Sendable' protocol
283 |
284 |     func writeQRCode(qrcode: QRCode) throws -> [String] {
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:410:84: warning: capture of 'self' with non-sendable type 'EFQRCode.Generator' in a '@Sendable' closure
 49 | public extension EFQRCode {
 50 |
 51 |     class Generator {
    |           `- note: class 'Generator' does not conform to the 'Sendable' protocol
 52 |         public let qrcode: QRCode
 53 |         public let style: EFQRCodeStyleBase
    :
408 |                         let watermarkImage: EFStyleParamImage? = watermarkFrames.isEmpty ? nil : EFStyleParamImage.static(image: watermarkFrames[index])
409 |                         let frameStyle: EFQRCodeStyleBase = style.copyWith(iconImage: iconImage, watermarkImage: watermarkImage)
410 |                         let tempGenerator: EFQRCode.Generator = EFQRCode.Generator(self.qrcode, styleImplementation: frameStyle)
    |                                                                                    `- warning: capture of 'self' with non-sendable type 'EFQRCode.Generator' in a '@Sendable' closure
411 |                         let qrFrame = try tempGenerator.toImage(size: size)
412 |                         guard let qrFrameCGImage = qrFrame.cgImage() else {
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:409:61: warning: capture of 'style' with non-sendable type 'EFQRCodeStyleBase' in an isolated closure; this is an error in the Swift 6 language mode
407 |                         let iconImage: EFStyleParamImage? = iconFrames.isEmpty ? nil : EFStyleParamImage.static(image: iconFrames[index])
408 |                         let watermarkImage: EFStyleParamImage? = watermarkFrames.isEmpty ? nil : EFStyleParamImage.static(image: watermarkFrames[index])
409 |                         let frameStyle: EFQRCodeStyleBase = style.copyWith(iconImage: iconImage, watermarkImage: watermarkImage)
    |                                                             `- warning: capture of 'style' with non-sendable type 'EFQRCodeStyleBase' in an isolated closure; this is an error in the Swift 6 language mode
410 |                         let tempGenerator: EFQRCode.Generator = EFQRCode.Generator(self.qrcode, styleImplementation: frameStyle)
411 |                         let qrFrame = try tempGenerator.toImage(size: size)
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:282:14: note: class 'EFQRCodeStyleBase' does not conform to the 'Sendable' protocol
280 | }
281 |
282 | public class EFQRCodeStyleBase {
    |              `- note: class 'EFQRCodeStyleBase' does not conform to the 'Sendable' protocol
283 |
284 |     func writeQRCode(qrcode: QRCode) throws -> [String] {
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:410:84: warning: capture of 'self' with non-sendable type 'EFQRCode.Generator' in an isolated closure; this is an error in the Swift 6 language mode
 49 | public extension EFQRCode {
 50 |
 51 |     class Generator {
    |           `- note: class 'Generator' does not conform to the 'Sendable' protocol
 52 |         public let qrcode: QRCode
 53 |         public let style: EFQRCodeStyleBase
    :
408 |                         let watermarkImage: EFStyleParamImage? = watermarkFrames.isEmpty ? nil : EFStyleParamImage.static(image: watermarkFrames[index])
409 |                         let frameStyle: EFQRCodeStyleBase = style.copyWith(iconImage: iconImage, watermarkImage: watermarkImage)
410 |                         let tempGenerator: EFQRCode.Generator = EFQRCode.Generator(self.qrcode, styleImplementation: frameStyle)
    |                                                                                    `- warning: capture of 'self' with non-sendable type 'EFQRCode.Generator' in an isolated closure; this is an error in the Swift 6 language mode
411 |                         let qrFrame = try tempGenerator.toImage(size: size)
412 |                         guard let qrFrameCGImage = qrFrame.cgImage() else {
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:415:25: warning: mutation of captured var 'qrFrames' in concurrently-executing code; this is an error in the Swift 6 language mode
413 |                             throw EFQRCodeError.cannotCreateCGImage
414 |                         }
415 |                         qrFrames[index] = qrFrameCGImage
    |                         `- warning: mutation of captured var 'qrFrames' in concurrently-executing code; this is an error in the Swift 6 language mode
416 |                     } catch {
417 |                         errorLock.lock()
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:418:28: warning: reference to captured var 'encounteredError' in concurrently-executing code; this is an error in the Swift 6 language mode
416 |                     } catch {
417 |                         errorLock.lock()
418 |                         if encounteredError == nil {
    |                            `- warning: reference to captured var 'encounteredError' in concurrently-executing code; this is an error in the Swift 6 language mode
419 |                             encounteredError = error
420 |                             queue.cancelAllOperations()
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:419:29: warning: mutation of captured var 'encounteredError' in concurrently-executing code; this is an error in the Swift 6 language mode
417 |                         errorLock.lock()
418 |                         if encounteredError == nil {
419 |                             encounteredError = error
    |                             `- warning: mutation of captured var 'encounteredError' in concurrently-executing code; this is an error in the Swift 6 language mode
420 |                             queue.cancelAllOperations()
421 |                         }
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:737:77: warning: capture of 'pool' with non-sendable type 'CVPixelBufferPool' in a '@Sendable' closure
735 |                 while accumulatedTime < targetTime {
736 |                     var pixelBuffer: CVPixelBuffer?
737 |                     CVPixelBufferPoolCreatePixelBuffer(kCFAllocatorDefault, pool, &pixelBuffer)
    |                                                                             `- warning: capture of 'pool' with non-sendable type 'CVPixelBufferPool' in a '@Sendable' closure
738 |
739 |                     guard let buffer = pixelBuffer else { return }
CoreVideo.CVPixelBufferPool:1:14: note: class 'CVPixelBufferPool' does not conform to the 'Sendable' protocol
1 | public class CVPixelBufferPool : _CFObject {
  |              `- note: class 'CVPixelBufferPool' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:772:28: warning: capture of 'writerInput' with non-sendable type 'AVAssetWriterInput' in a '@Sendable' closure
770 |                     )
771 |
772 |                     while !writerInput.isReadyForMoreMediaData {
    |                            `- warning: capture of 'writerInput' with non-sendable type 'AVAssetWriterInput' in a '@Sendable' closure
773 |                         Thread.sleep(forTimeInterval: 0.1)
774 |                     }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVAssetWriterInput.h:43:12: note: class 'AVAssetWriterInput' does not conform to the 'Sendable' protocol
  41 |  */
  42 | API_AVAILABLE(macos(10.7), ios(4.1), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos)
  43 | @interface AVAssetWriterInput : NSObject
     |            `- note: class 'AVAssetWriterInput' does not conform to the 'Sendable' protocol
  44 | {
  45 | @private
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:42:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AVFoundation'
 40 | #endif
 41 | #if canImport(AVFoundation) && !os(watchOS)
 42 | import AVFoundation
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AVFoundation'
 43 | import CoreVideo
 44 | #endif
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:776:21: warning: capture of 'adaptor' with non-sendable type 'AVAssetWriterInputPixelBufferAdaptor' in a '@Sendable' closure
774 |                     }
775 |
776 |                     adaptor.append(buffer, withPresentationTime: presentationTime)
    |                     `- warning: capture of 'adaptor' with non-sendable type 'AVAssetWriterInputPixelBufferAdaptor' in a '@Sendable' closure
777 |                     accumulatedTime += frameDuration
778 |                 }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVAssetWriterInput.h:715:12: note: class 'AVAssetWriterInputPixelBufferAdaptor' does not conform to the 'Sendable' protocol
 713 |  */
 714 | API_AVAILABLE(macos(10.7), ios(4.1), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos)
 715 | @interface AVAssetWriterInputPixelBufferAdaptor : NSObject
     |            `- note: class 'AVAssetWriterInputPixelBufferAdaptor' does not conform to the 'Sendable' protocol
 716 | {
 717 | @private
/Users/admin/builder/spi-builder-workspace/Source/EFQRCode+Generator.swift:782:13: warning: capture of 'assetWriter' with non-sendable type 'AVAssetWriter' in a '@Sendable' closure
780 |
781 |             writerInput.markAsFinished()
782 |             assetWriter.finishWriting {
    |             `- warning: capture of 'assetWriter' with non-sendable type 'AVAssetWriter' in a '@Sendable' closure
783 |                 semaphore.signal()
784 |             }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVAssetWriter.h:65:12: note: class 'AVAssetWriter' does not conform to the 'Sendable' protocol
 63 |  */
 64 | API_AVAILABLE(macos(10.7), ios(4.1), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos)
 65 | @interface AVAssetWriter : NSObject
    |            `- note: class 'AVAssetWriter' does not conform to the 'Sendable' protocol
 66 | {
 67 | @private
[134/136] Compiling EFQRCode EFQRCodeStyleDSJ.swift
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleDSJ.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleDSJParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultPosition: EFStyleDSJParamsPosition = EFStyleDSJParamsPosition()
 36 |     public static let defaultData: EFStyleDSJParamsData = EFStyleDSJParamsData()
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleDSJ.swift:35:23: warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleDSJParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultPosition: EFStyleDSJParamsPosition = EFStyleDSJParamsPosition()
    |                       |- warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleDSJParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultPosition' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |     public static let defaultData: EFStyleDSJParamsData = EFStyleDSJParamsData()
 37 |
    :
 65 | }
 66 |
 67 | public class EFStyleDSJParamsPosition {
    |              `- note: class 'EFStyleDSJParamsPosition' does not conform to the 'Sendable' protocol
 68 |
 69 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x0B2D97)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleDSJ.swift:36:23: warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleDSJParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultPosition: EFStyleDSJParamsPosition = EFStyleDSJParamsPosition()
 36 |     public static let defaultData: EFStyleDSJParamsData = EFStyleDSJParamsData()
    |                       |- warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleDSJParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultData' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |
 38 |     let position: EFStyleDSJParamsPosition
    :
 84 | }
 85 |
 86 | public class EFStyleDSJParamsData {
    |              `- note: class 'EFStyleDSJParamsData' does not conform to the 'Sendable' protocol
 87 |
 88 |     public static let defaultHorizontalLineColor: CGColor = CGColor.createWith(rgb: 0xF6B506)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleFunction.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleFunctionParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultPosition: EFStyleFunctionParamsPosition = EFStyleFunctionParamsPosition()
 36 |     public static let defaultData: EFStyleFunctionParamsData = EFStyleFunctionParamsData()
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleFunction.swift:35:23: warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleFunctionParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultPosition: EFStyleFunctionParamsPosition = EFStyleFunctionParamsPosition()
    |                       |- warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleFunctionParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultPosition' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |     public static let defaultData: EFStyleFunctionParamsData = EFStyleFunctionParamsData()
 37 |
    :
 65 | }
 66 |
 67 | public class EFStyleFunctionParamsPosition {
    |              `- note: class 'EFStyleFunctionParamsPosition' does not conform to the 'Sendable' protocol
 68 |
 69 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleFunction.swift:36:23: warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleFunctionParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultPosition: EFStyleFunctionParamsPosition = EFStyleFunctionParamsPosition()
 36 |     public static let defaultData: EFStyleFunctionParamsData = EFStyleFunctionParamsData()
    |                       |- warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleFunctionParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultData' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |
 38 |     let position: EFStyleFunctionParamsPosition
    :
 84 | }
 85 |
 86 | public class EFStyleFunctionParamsData {
    |              `- note: class 'EFStyleFunctionParamsData' does not conform to the 'Sendable' protocol
 87 |
 88 |     let function: EFStyleFunctionParamsDataFunction
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleImage.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleImageParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultAlign: EFStyleImageParamsAlign = EFStyleImageParamsAlign()
 36 |     public static let defaultTiming: EFStyleImageParamsTiming = EFStyleImageParamsTiming()
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleImage.swift:35:23: warning: static property 'defaultAlign' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsAlign' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultAlign: EFStyleImageParamsAlign = EFStyleImageParamsAlign()
    |                       |- warning: static property 'defaultAlign' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsAlign' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultAlign' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |     public static let defaultTiming: EFStyleImageParamsTiming = EFStyleImageParamsTiming()
 37 |     public static let defaultData: EFStyleImageParamsData = EFStyleImageParamsData()
    :
 89 | }
 90 |
 91 | public class EFStyleImageParamsAlign {
    |              `- note: class 'EFStyleImageParamsAlign' does not conform to the 'Sendable' protocol
 92 |
 93 |     public static let defaultColorDark: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleImage.swift:36:23: warning: static property 'defaultTiming' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsTiming' may have shared mutable state; this is an error in the Swift 6 language mode
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultAlign: EFStyleImageParamsAlign = EFStyleImageParamsAlign()
 36 |     public static let defaultTiming: EFStyleImageParamsTiming = EFStyleImageParamsTiming()
    |                       |- warning: static property 'defaultTiming' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsTiming' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultTiming' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     public static let defaultData: EFStyleImageParamsData = EFStyleImageParamsData()
 38 |     public static let defaultPosition: EFStyleImageParamsPosition = EFStyleImageParamsPosition()
    :
119 | }
120 |
121 | public class EFStyleImageParamsTiming {
    |              `- note: class 'EFStyleImageParamsTiming' does not conform to the 'Sendable' protocol
122 |
123 |     public static let defaultColorDark: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleImage.swift:37:23: warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
 35 |     public static let defaultAlign: EFStyleImageParamsAlign = EFStyleImageParamsAlign()
 36 |     public static let defaultTiming: EFStyleImageParamsTiming = EFStyleImageParamsTiming()
 37 |     public static let defaultData: EFStyleImageParamsData = EFStyleImageParamsData()
    |                       |- warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultData' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |     public static let defaultPosition: EFStyleImageParamsPosition = EFStyleImageParamsPosition()
 39 |
    :
199 | }
200 |
201 | public class EFStyleImageParamsData {
    |              `- note: class 'EFStyleImageParamsData' does not conform to the 'Sendable' protocol
202 |
203 |     public static let defaultColorDark: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleImage.swift:38:23: warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
 36 |     public static let defaultTiming: EFStyleImageParamsTiming = EFStyleImageParamsTiming()
 37 |     public static let defaultData: EFStyleImageParamsData = EFStyleImageParamsData()
 38 |     public static let defaultPosition: EFStyleImageParamsPosition = EFStyleImageParamsPosition()
    |                       |- warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultPosition' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     let align: EFStyleImageParamsAlign
    :
176 | }
177 |
178 | public class EFStyleImageParamsPosition {
    |              `- note: class 'EFStyleImageParamsPosition' does not conform to the 'Sendable' protocol
179 |
180 |     public static let defaultColorDark: CGColor = CGColor.createWith(rgb: 0x000000)!
[135/136] Compiling EFQRCode EFQRCodeStyleFunction.swift
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleDSJ.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleDSJParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultPosition: EFStyleDSJParamsPosition = EFStyleDSJParamsPosition()
 36 |     public static let defaultData: EFStyleDSJParamsData = EFStyleDSJParamsData()
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleDSJ.swift:35:23: warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleDSJParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultPosition: EFStyleDSJParamsPosition = EFStyleDSJParamsPosition()
    |                       |- warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleDSJParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultPosition' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |     public static let defaultData: EFStyleDSJParamsData = EFStyleDSJParamsData()
 37 |
    :
 65 | }
 66 |
 67 | public class EFStyleDSJParamsPosition {
    |              `- note: class 'EFStyleDSJParamsPosition' does not conform to the 'Sendable' protocol
 68 |
 69 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x0B2D97)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleDSJ.swift:36:23: warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleDSJParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultPosition: EFStyleDSJParamsPosition = EFStyleDSJParamsPosition()
 36 |     public static let defaultData: EFStyleDSJParamsData = EFStyleDSJParamsData()
    |                       |- warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleDSJParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultData' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |
 38 |     let position: EFStyleDSJParamsPosition
    :
 84 | }
 85 |
 86 | public class EFStyleDSJParamsData {
    |              `- note: class 'EFStyleDSJParamsData' does not conform to the 'Sendable' protocol
 87 |
 88 |     public static let defaultHorizontalLineColor: CGColor = CGColor.createWith(rgb: 0xF6B506)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleFunction.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleFunctionParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultPosition: EFStyleFunctionParamsPosition = EFStyleFunctionParamsPosition()
 36 |     public static let defaultData: EFStyleFunctionParamsData = EFStyleFunctionParamsData()
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleFunction.swift:35:23: warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleFunctionParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultPosition: EFStyleFunctionParamsPosition = EFStyleFunctionParamsPosition()
    |                       |- warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleFunctionParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultPosition' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |     public static let defaultData: EFStyleFunctionParamsData = EFStyleFunctionParamsData()
 37 |
    :
 65 | }
 66 |
 67 | public class EFStyleFunctionParamsPosition {
    |              `- note: class 'EFStyleFunctionParamsPosition' does not conform to the 'Sendable' protocol
 68 |
 69 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleFunction.swift:36:23: warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleFunctionParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultPosition: EFStyleFunctionParamsPosition = EFStyleFunctionParamsPosition()
 36 |     public static let defaultData: EFStyleFunctionParamsData = EFStyleFunctionParamsData()
    |                       |- warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleFunctionParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultData' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |
 38 |     let position: EFStyleFunctionParamsPosition
    :
 84 | }
 85 |
 86 | public class EFStyleFunctionParamsData {
    |              `- note: class 'EFStyleFunctionParamsData' does not conform to the 'Sendable' protocol
 87 |
 88 |     let function: EFStyleFunctionParamsDataFunction
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleImage.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleImageParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultAlign: EFStyleImageParamsAlign = EFStyleImageParamsAlign()
 36 |     public static let defaultTiming: EFStyleImageParamsTiming = EFStyleImageParamsTiming()
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleImage.swift:35:23: warning: static property 'defaultAlign' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsAlign' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultAlign: EFStyleImageParamsAlign = EFStyleImageParamsAlign()
    |                       |- warning: static property 'defaultAlign' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsAlign' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultAlign' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |     public static let defaultTiming: EFStyleImageParamsTiming = EFStyleImageParamsTiming()
 37 |     public static let defaultData: EFStyleImageParamsData = EFStyleImageParamsData()
    :
 89 | }
 90 |
 91 | public class EFStyleImageParamsAlign {
    |              `- note: class 'EFStyleImageParamsAlign' does not conform to the 'Sendable' protocol
 92 |
 93 |     public static let defaultColorDark: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleImage.swift:36:23: warning: static property 'defaultTiming' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsTiming' may have shared mutable state; this is an error in the Swift 6 language mode
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultAlign: EFStyleImageParamsAlign = EFStyleImageParamsAlign()
 36 |     public static let defaultTiming: EFStyleImageParamsTiming = EFStyleImageParamsTiming()
    |                       |- warning: static property 'defaultTiming' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsTiming' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultTiming' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     public static let defaultData: EFStyleImageParamsData = EFStyleImageParamsData()
 38 |     public static let defaultPosition: EFStyleImageParamsPosition = EFStyleImageParamsPosition()
    :
119 | }
120 |
121 | public class EFStyleImageParamsTiming {
    |              `- note: class 'EFStyleImageParamsTiming' does not conform to the 'Sendable' protocol
122 |
123 |     public static let defaultColorDark: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleImage.swift:37:23: warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
 35 |     public static let defaultAlign: EFStyleImageParamsAlign = EFStyleImageParamsAlign()
 36 |     public static let defaultTiming: EFStyleImageParamsTiming = EFStyleImageParamsTiming()
 37 |     public static let defaultData: EFStyleImageParamsData = EFStyleImageParamsData()
    |                       |- warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultData' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |     public static let defaultPosition: EFStyleImageParamsPosition = EFStyleImageParamsPosition()
 39 |
    :
199 | }
200 |
201 | public class EFStyleImageParamsData {
    |              `- note: class 'EFStyleImageParamsData' does not conform to the 'Sendable' protocol
202 |
203 |     public static let defaultColorDark: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleImage.swift:38:23: warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
 36 |     public static let defaultTiming: EFStyleImageParamsTiming = EFStyleImageParamsTiming()
 37 |     public static let defaultData: EFStyleImageParamsData = EFStyleImageParamsData()
 38 |     public static let defaultPosition: EFStyleImageParamsPosition = EFStyleImageParamsPosition()
    |                       |- warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultPosition' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     let align: EFStyleImageParamsAlign
    :
176 | }
177 |
178 | public class EFStyleImageParamsPosition {
    |              `- note: class 'EFStyleImageParamsPosition' does not conform to the 'Sendable' protocol
179 |
180 |     public static let defaultColorDark: CGColor = CGColor.createWith(rgb: 0x000000)!
[136/136] Compiling EFQRCode EFQRCodeStyleImage.swift
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleDSJ.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleDSJParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultPosition: EFStyleDSJParamsPosition = EFStyleDSJParamsPosition()
 36 |     public static let defaultData: EFStyleDSJParamsData = EFStyleDSJParamsData()
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleDSJ.swift:35:23: warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleDSJParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultPosition: EFStyleDSJParamsPosition = EFStyleDSJParamsPosition()
    |                       |- warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleDSJParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultPosition' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |     public static let defaultData: EFStyleDSJParamsData = EFStyleDSJParamsData()
 37 |
    :
 65 | }
 66 |
 67 | public class EFStyleDSJParamsPosition {
    |              `- note: class 'EFStyleDSJParamsPosition' does not conform to the 'Sendable' protocol
 68 |
 69 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x0B2D97)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleDSJ.swift:36:23: warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleDSJParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultPosition: EFStyleDSJParamsPosition = EFStyleDSJParamsPosition()
 36 |     public static let defaultData: EFStyleDSJParamsData = EFStyleDSJParamsData()
    |                       |- warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleDSJParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultData' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |
 38 |     let position: EFStyleDSJParamsPosition
    :
 84 | }
 85 |
 86 | public class EFStyleDSJParamsData {
    |              `- note: class 'EFStyleDSJParamsData' does not conform to the 'Sendable' protocol
 87 |
 88 |     public static let defaultHorizontalLineColor: CGColor = CGColor.createWith(rgb: 0xF6B506)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleFunction.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleFunctionParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultPosition: EFStyleFunctionParamsPosition = EFStyleFunctionParamsPosition()
 36 |     public static let defaultData: EFStyleFunctionParamsData = EFStyleFunctionParamsData()
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleFunction.swift:35:23: warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleFunctionParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultPosition: EFStyleFunctionParamsPosition = EFStyleFunctionParamsPosition()
    |                       |- warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleFunctionParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultPosition' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |     public static let defaultData: EFStyleFunctionParamsData = EFStyleFunctionParamsData()
 37 |
    :
 65 | }
 66 |
 67 | public class EFStyleFunctionParamsPosition {
    |              `- note: class 'EFStyleFunctionParamsPosition' does not conform to the 'Sendable' protocol
 68 |
 69 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleFunction.swift:36:23: warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleFunctionParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultPosition: EFStyleFunctionParamsPosition = EFStyleFunctionParamsPosition()
 36 |     public static let defaultData: EFStyleFunctionParamsData = EFStyleFunctionParamsData()
    |                       |- warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleFunctionParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultData' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |
 38 |     let position: EFStyleFunctionParamsPosition
    :
 84 | }
 85 |
 86 | public class EFStyleFunctionParamsData {
    |              `- note: class 'EFStyleFunctionParamsData' does not conform to the 'Sendable' protocol
 87 |
 88 |     let function: EFStyleFunctionParamsDataFunction
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleImage.swift:34:23: warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | public class EFStyleImageParams: EFStyleParams {
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
    |                       |- warning: static property 'defaultBackdrop' is not concurrency-safe because non-'Sendable' type 'EFStyleParamBackdrop' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultBackdrop' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static let defaultAlign: EFStyleImageParamsAlign = EFStyleImageParamsAlign()
 36 |     public static let defaultTiming: EFStyleImageParamsTiming = EFStyleImageParamsTiming()
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyle.swift:202:14: note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
200 | }
201 |
202 | public class EFStyleParamBackdrop {
    |              `- note: class 'EFStyleParamBackdrop' does not conform to the 'Sendable' protocol
203 |
204 |     public static let defaultColor: CGColor = CGColor.createWith(rgb: 0xffffff)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleImage.swift:35:23: warning: static property 'defaultAlign' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsAlign' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultAlign: EFStyleImageParamsAlign = EFStyleImageParamsAlign()
    |                       |- warning: static property 'defaultAlign' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsAlign' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultAlign' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |     public static let defaultTiming: EFStyleImageParamsTiming = EFStyleImageParamsTiming()
 37 |     public static let defaultData: EFStyleImageParamsData = EFStyleImageParamsData()
    :
 89 | }
 90 |
 91 | public class EFStyleImageParamsAlign {
    |              `- note: class 'EFStyleImageParamsAlign' does not conform to the 'Sendable' protocol
 92 |
 93 |     public static let defaultColorDark: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleImage.swift:36:23: warning: static property 'defaultTiming' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsTiming' may have shared mutable state; this is an error in the Swift 6 language mode
 34 |     public static let defaultBackdrop: EFStyleParamBackdrop = EFStyleParamBackdrop()
 35 |     public static let defaultAlign: EFStyleImageParamsAlign = EFStyleImageParamsAlign()
 36 |     public static let defaultTiming: EFStyleImageParamsTiming = EFStyleImageParamsTiming()
    |                       |- warning: static property 'defaultTiming' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsTiming' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultTiming' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     public static let defaultData: EFStyleImageParamsData = EFStyleImageParamsData()
 38 |     public static let defaultPosition: EFStyleImageParamsPosition = EFStyleImageParamsPosition()
    :
119 | }
120 |
121 | public class EFStyleImageParamsTiming {
    |              `- note: class 'EFStyleImageParamsTiming' does not conform to the 'Sendable' protocol
122 |
123 |     public static let defaultColorDark: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleImage.swift:37:23: warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
 35 |     public static let defaultAlign: EFStyleImageParamsAlign = EFStyleImageParamsAlign()
 36 |     public static let defaultTiming: EFStyleImageParamsTiming = EFStyleImageParamsTiming()
 37 |     public static let defaultData: EFStyleImageParamsData = EFStyleImageParamsData()
    |                       |- warning: static property 'defaultData' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsData' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultData' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |     public static let defaultPosition: EFStyleImageParamsPosition = EFStyleImageParamsPosition()
 39 |
    :
199 | }
200 |
201 | public class EFStyleImageParamsData {
    |              `- note: class 'EFStyleImageParamsData' does not conform to the 'Sendable' protocol
202 |
203 |     public static let defaultColorDark: CGColor = CGColor.createWith(rgb: 0x000000)!
/Users/admin/builder/spi-builder-workspace/Source/Styles/EFQRCodeStyleImage.swift:38:23: warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
 36 |     public static let defaultTiming: EFStyleImageParamsTiming = EFStyleImageParamsTiming()
 37 |     public static let defaultData: EFStyleImageParamsData = EFStyleImageParamsData()
 38 |     public static let defaultPosition: EFStyleImageParamsPosition = EFStyleImageParamsPosition()
    |                       |- warning: static property 'defaultPosition' is not concurrency-safe because non-'Sendable' type 'EFStyleImageParamsPosition' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'defaultPosition' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     let align: EFStyleImageParamsAlign
    :
176 | }
177 |
178 | public class EFStyleImageParamsPosition {
    |              `- note: class 'EFStyleImageParamsPosition' does not conform to the 'Sendable' protocol
179 |
180 |     public static let defaultColorDark: CGColor = CGColor.createWith(rgb: 0x000000)!
Build complete! (14.40s)
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/Source/PrivacyInfo.xcprivacy
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift_qrcodejs",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.3.1",
            "upper_bound" : "2.4.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/EFPrefix/swift_qrcodejs.git"
    },
    {
      "identity" : "swiftdraw",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.20.1",
            "upper_bound" : "0.21.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swhitty/SwiftDraw.git"
    }
  ],
  "manifest_display_name" : "EFQRCode",
  "name" : "EFQRCode",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "EFQRCode",
      "targets" : [
        "EFQRCode"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "EFQRCodeSwiftTests",
      "module_type" : "SwiftTarget",
      "name" : "EFQRCodeSwiftTests",
      "path" : "Tests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/Resources/eyrefree.png",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "Tests.swift"
      ],
      "target_dependencies" : [
        "EFQRCode"
      ],
      "type" : "test"
    },
    {
      "c99name" : "EFQRCodeObjCTests",
      "module_type" : "ClangTarget",
      "name" : "EFQRCodeObjCTests",
      "path" : "Tests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/Resources/eyrefree.png",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
      ],
      "target_dependencies" : [
        "EFQRCode"
      ],
      "type" : "test"
    },
    {
      "c99name" : "EFQRCode",
      "module_type" : "SwiftTarget",
      "name" : "EFQRCode",
      "path" : "Source",
      "product_dependencies" : [
        "QRCodeSwift",
        "SwiftDraw"
      ],
      "product_memberships" : [
        "EFQRCode"
      ],
      "sources" : [
        "EFQRCode+Generator.swift",
        "EFQRCode+Recognizer.swift",
        "EFQRCode.swift",
        "Extension/BinaryFloatingPoint+EFQRCode.swift",
        "Extension/BinaryInteger+EFQRCode.swift",
        "Extension/CGColor+EFQRCode.swift",
        "Extension/CGImage+EFQRCode.swift",
        "Extension/CIImage+EFQRCode.swift",
        "Extension/NSImage+EFQRCode.swift",
        "Extension/String+EFQRCode.swift",
        "Extension/UIImage+EFQRCode.swift",
        "Styles/EFQRCodeStyle.swift",
        "Styles/EFQRCodeStyle25D.swift",
        "Styles/EFQRCodeStyleBasic.swift",
        "Styles/EFQRCodeStyleBubble.swift",
        "Styles/EFQRCodeStyleDSJ.swift",
        "Styles/EFQRCodeStyleFunction.swift",
        "Styles/EFQRCodeStyleImage.swift",
        "Styles/EFQRCodeStyleImageFill.swift",
        "Styles/EFQRCodeStyleLine.swift",
        "Styles/EFQRCodeStyleRandomRectangle.swift",
        "Styles/EFQRCodeStyleResampleImage.swift",
        "Type/EFAnimatedImageFormat.swift",
        "Type/EFCorrectionLevel.swift",
        "Type/EFEdgeInsets.swift",
        "Type/EFImageMode.swift",
        "Type/EFQRCodeError.swift",
        "Type/EFVideoFormat.swift",
        "Utils/Utils.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.