Build Information
Successful build of QRCode, reference main (49fec8), with Swift 6.1 for macOS (SPM) on 3 Mar 2026 11:02:44 UTC.
Swift 6 data race errors: 186
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 InferSendableFromCapturesBuild Log
29 | /// The generator title
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsVertical.swift:86:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsVertical' may have shared mutable state; this is an error in the Swift 6 language mode
84 | }
85 |
86 | private static let _defaultPupil = QRCode.PupilShape.BarsVertical()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsVertical' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public func defaultPupil() -> any QRCodePupilShapeGenerator {
88 | Self._defaultPupil
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeBarsVertical.swift:27:44: note: class 'BarsVertical' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A vertical bars style pupil design
27 | @objc(QRCodePupilShapeBarsVertical) class BarsVertical: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'BarsVertical' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "barsVertical" }
29 | /// The generator title
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeCRT.swift:44:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.CRT' may have shared mutable state; this is an error in the Swift 6 language mode
42 | @objc public func reset() { }
43 |
44 | private static let _defaultPupil = QRCode.PupilShape.CRT()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.CRT' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
46 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeCRT.swift:25:42: note: class 'CRT' does not conform to the 'Sendable' protocol
23 | extension QRCode.PupilShape {
24 | /// A pinch leaf pupil design
25 | @objc(QRCodePupilShapeCRT) public class CRT: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'CRT' does not conform to the 'Sendable' protocol
26 | /// Generator name
27 | @objc public static var Name: String { "crt" }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeCircle.swift:68:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Circle' may have shared mutable state; this is an error in the Swift 6 language mode
66 | }
67 |
68 | private static let _defaultPupil = QRCode.PupilShape.Circle()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Circle' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
70 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeCircle.swift:27:38: note: class 'Circle' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A circle style pupil design
27 | @objc(QRCodePupilShapeCircle) class Circle: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'Circle' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "circle" }
29 | /// The generator title
[294/310] Compiling QRCode QRCodePixelShapeRotation+Generator.swift
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStitch.swift:86:13: warning: static property 'pixelShape_' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
84 | internal extension QRCode.PixelShape.Stitch {
85 | // A 10x10 'pixel' representation
86 | static let pixelShape_ = CGPath.make { a in
| `- warning: static property 'pixelShape_' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
87 | a.move(to: CGPoint(x: 5, y: 4.77))
88 | a.curve(to: CGPoint(x: 5, y: 0.9), controlPoint1: CGPoint(x: 5, y: 4.77), controlPoint2: CGPoint(x: 5, y: 1.3))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStitch.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
84 | internal extension QRCode.PixelShape.Stitch {
85 | // A 10x10 'pixel' representation
86 | static let pixelShape_ = CGPath.make { a in
| |- note: add '@MainActor' to make static property 'pixelShape_' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | a.move(to: CGPoint(x: 5, y: 4.77))
88 | a.curve(to: CGPoint(x: 5, y: 0.9), controlPoint1: CGPoint(x: 5, y: 4.77), controlPoint2: CGPoint(x: 5, y: 1.3))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWave.swift:127:13: warning: let 'generatedPixelPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
125 | }
126 |
127 | private let generatedPixelPath__: CGPath = CGPath.make { wavePath in
| `- warning: let 'generatedPixelPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
128 | wavePath.move(to: CGPoint(x: 0, y: 2))
129 | wavePath.curve(to: CGPoint(x: 2.5, y: 1), controlPoint1: CGPoint(x: 0, y: 2), controlPoint2: CGPoint(x: 1, y: 2))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWave.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
125 | }
126 |
127 | private let generatedPixelPath__: CGPath = CGPath.make { wavePath in
| |- note: add '@MainActor' to make let 'generatedPixelPath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | wavePath.move(to: CGPoint(x: 0, y: 2))
129 | wavePath.curve(to: CGPoint(x: 2.5, y: 1), controlPoint1: CGPoint(x: 0, y: 2), controlPoint2: CGPoint(x: 1, y: 2))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWex.swift:117:14: warning: static property 'WexPixel10x10' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
115 |
116 | // A 10x10 'pixel' representation of a wex
117 | static let WexPixel10x10 = CGPath.make { wexshapePath in
| `- warning: static property 'WexPixel10x10' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
118 | wexshapePath.move(to: CGPoint(x: 0, y: 2))
119 | wexshapePath.line(to: CGPoint(x: 1, y: 5))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWex.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
115 |
116 | // A 10x10 'pixel' representation of a wex
117 | static let WexPixel10x10 = CGPath.make { wexshapePath in
| |- note: add '@MainActor' to make static property 'WexPixel10x10' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 | wexshapePath.move(to: CGPoint(x: 0, y: 2))
119 | wexshapePath.line(to: CGPoint(x: 1, y: 5))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/private/QRCodePixelShapePixel.swift:51:15: warning: static property 'availableTypes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
49 | case roundedTriangle
50 | case leaf
51 | static var availableTypes: [String] = Self.allCases.map { $0.rawValue }
| |- warning: static property 'availableTypes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'availableTypes' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'availableTypes' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 | }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:44:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Arc' may have shared mutable state; this is an error in the Swift 6 language mode
42 | @objc public func reset() { }
43 |
44 | private static let _defaultPupil = QRCode.PupilShape.Arc()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Arc' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
46 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeArc.swift:25:42: note: class 'Arc' does not conform to the 'Sendable' protocol
23 | extension QRCode.PupilShape {
24 | /// An arc pupil design
25 | @objc(QRCodePupilShapeArc) public class Arc: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'Arc' does not conform to the 'Sendable' protocol
26 | /// Generator name
27 | @objc public static var Name: String { "arc" }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:62:13: warning: let 'eyePath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
60 | // MARK: - Paths
61 |
62 | private let eyePath__: CGPath =
| `- warning: let 'eyePath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
63 | CGPath.make { arcouterPath in
64 | arcouterPath.move(to: CGPoint(x: 51.07, y: 79.96))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
60 | // MARK: - Paths
61 |
62 | private let eyePath__: CGPath =
| |- note: add '@MainActor' to make let 'eyePath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
63 | CGPath.make { arcouterPath in
64 | arcouterPath.move(to: CGPoint(x: 51.07, y: 79.96))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:171:13: warning: let 'eyeBackgroudPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
169 | .flippedVertically(height: 90)
170 |
171 | private let eyeBackgroudPath__: CGPath =
| |- warning: let 'eyeBackgroudPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'eyeBackgroudPath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
172 | CGPath.make { arcbackgroundPath in
173 | arcbackgroundPath.move(to: CGPoint(x: 0.01, y: 40.6))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsHorizontal.swift:86:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsHorizontal' may have shared mutable state; this is an error in the Swift 6 language mode
84 | }
85 |
86 | private static let _defaultPupil = QRCode.PupilShape.BarsHorizontal()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsHorizontal' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public func defaultPupil() -> any QRCodePupilShapeGenerator {
88 | Self._defaultPupil
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeBarsHorizontal.swift:27:46: note: class 'BarsHorizontal' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A horizontal bars style pupil design
27 | @objc(QRCodePupilShapeBarsHorizontal) class BarsHorizontal: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'BarsHorizontal' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "barsHorizontal" }
29 | /// The generator title
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsVertical.swift:86:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsVertical' may have shared mutable state; this is an error in the Swift 6 language mode
84 | }
85 |
86 | private static let _defaultPupil = QRCode.PupilShape.BarsVertical()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsVertical' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public func defaultPupil() -> any QRCodePupilShapeGenerator {
88 | Self._defaultPupil
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeBarsVertical.swift:27:44: note: class 'BarsVertical' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A vertical bars style pupil design
27 | @objc(QRCodePupilShapeBarsVertical) class BarsVertical: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'BarsVertical' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "barsVertical" }
29 | /// The generator title
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeCRT.swift:44:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.CRT' may have shared mutable state; this is an error in the Swift 6 language mode
42 | @objc public func reset() { }
43 |
44 | private static let _defaultPupil = QRCode.PupilShape.CRT()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.CRT' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
46 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeCRT.swift:25:42: note: class 'CRT' does not conform to the 'Sendable' protocol
23 | extension QRCode.PupilShape {
24 | /// A pinch leaf pupil design
25 | @objc(QRCodePupilShapeCRT) public class CRT: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'CRT' does not conform to the 'Sendable' protocol
26 | /// Generator name
27 | @objc public static var Name: String { "crt" }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeCircle.swift:68:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Circle' may have shared mutable state; this is an error in the Swift 6 language mode
66 | }
67 |
68 | private static let _defaultPupil = QRCode.PupilShape.Circle()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Circle' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
70 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeCircle.swift:27:38: note: class 'Circle' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A circle style pupil design
27 | @objc(QRCodePupilShapeCircle) class Circle: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'Circle' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "circle" }
29 | /// The generator title
[295/310] Compiling QRCode QRCodePixelShapeRotation+HWave.swift
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStitch.swift:86:13: warning: static property 'pixelShape_' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
84 | internal extension QRCode.PixelShape.Stitch {
85 | // A 10x10 'pixel' representation
86 | static let pixelShape_ = CGPath.make { a in
| `- warning: static property 'pixelShape_' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
87 | a.move(to: CGPoint(x: 5, y: 4.77))
88 | a.curve(to: CGPoint(x: 5, y: 0.9), controlPoint1: CGPoint(x: 5, y: 4.77), controlPoint2: CGPoint(x: 5, y: 1.3))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStitch.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
84 | internal extension QRCode.PixelShape.Stitch {
85 | // A 10x10 'pixel' representation
86 | static let pixelShape_ = CGPath.make { a in
| |- note: add '@MainActor' to make static property 'pixelShape_' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | a.move(to: CGPoint(x: 5, y: 4.77))
88 | a.curve(to: CGPoint(x: 5, y: 0.9), controlPoint1: CGPoint(x: 5, y: 4.77), controlPoint2: CGPoint(x: 5, y: 1.3))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWave.swift:127:13: warning: let 'generatedPixelPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
125 | }
126 |
127 | private let generatedPixelPath__: CGPath = CGPath.make { wavePath in
| `- warning: let 'generatedPixelPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
128 | wavePath.move(to: CGPoint(x: 0, y: 2))
129 | wavePath.curve(to: CGPoint(x: 2.5, y: 1), controlPoint1: CGPoint(x: 0, y: 2), controlPoint2: CGPoint(x: 1, y: 2))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWave.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
125 | }
126 |
127 | private let generatedPixelPath__: CGPath = CGPath.make { wavePath in
| |- note: add '@MainActor' to make let 'generatedPixelPath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | wavePath.move(to: CGPoint(x: 0, y: 2))
129 | wavePath.curve(to: CGPoint(x: 2.5, y: 1), controlPoint1: CGPoint(x: 0, y: 2), controlPoint2: CGPoint(x: 1, y: 2))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWex.swift:117:14: warning: static property 'WexPixel10x10' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
115 |
116 | // A 10x10 'pixel' representation of a wex
117 | static let WexPixel10x10 = CGPath.make { wexshapePath in
| `- warning: static property 'WexPixel10x10' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
118 | wexshapePath.move(to: CGPoint(x: 0, y: 2))
119 | wexshapePath.line(to: CGPoint(x: 1, y: 5))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWex.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
115 |
116 | // A 10x10 'pixel' representation of a wex
117 | static let WexPixel10x10 = CGPath.make { wexshapePath in
| |- note: add '@MainActor' to make static property 'WexPixel10x10' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 | wexshapePath.move(to: CGPoint(x: 0, y: 2))
119 | wexshapePath.line(to: CGPoint(x: 1, y: 5))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/private/QRCodePixelShapePixel.swift:51:15: warning: static property 'availableTypes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
49 | case roundedTriangle
50 | case leaf
51 | static var availableTypes: [String] = Self.allCases.map { $0.rawValue }
| |- warning: static property 'availableTypes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'availableTypes' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'availableTypes' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 | }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:44:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Arc' may have shared mutable state; this is an error in the Swift 6 language mode
42 | @objc public func reset() { }
43 |
44 | private static let _defaultPupil = QRCode.PupilShape.Arc()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Arc' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
46 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeArc.swift:25:42: note: class 'Arc' does not conform to the 'Sendable' protocol
23 | extension QRCode.PupilShape {
24 | /// An arc pupil design
25 | @objc(QRCodePupilShapeArc) public class Arc: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'Arc' does not conform to the 'Sendable' protocol
26 | /// Generator name
27 | @objc public static var Name: String { "arc" }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:62:13: warning: let 'eyePath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
60 | // MARK: - Paths
61 |
62 | private let eyePath__: CGPath =
| `- warning: let 'eyePath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
63 | CGPath.make { arcouterPath in
64 | arcouterPath.move(to: CGPoint(x: 51.07, y: 79.96))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
60 | // MARK: - Paths
61 |
62 | private let eyePath__: CGPath =
| |- note: add '@MainActor' to make let 'eyePath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
63 | CGPath.make { arcouterPath in
64 | arcouterPath.move(to: CGPoint(x: 51.07, y: 79.96))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:171:13: warning: let 'eyeBackgroudPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
169 | .flippedVertically(height: 90)
170 |
171 | private let eyeBackgroudPath__: CGPath =
| |- warning: let 'eyeBackgroudPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'eyeBackgroudPath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
172 | CGPath.make { arcbackgroundPath in
173 | arcbackgroundPath.move(to: CGPoint(x: 0.01, y: 40.6))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsHorizontal.swift:86:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsHorizontal' may have shared mutable state; this is an error in the Swift 6 language mode
84 | }
85 |
86 | private static let _defaultPupil = QRCode.PupilShape.BarsHorizontal()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsHorizontal' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public func defaultPupil() -> any QRCodePupilShapeGenerator {
88 | Self._defaultPupil
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeBarsHorizontal.swift:27:46: note: class 'BarsHorizontal' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A horizontal bars style pupil design
27 | @objc(QRCodePupilShapeBarsHorizontal) class BarsHorizontal: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'BarsHorizontal' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "barsHorizontal" }
29 | /// The generator title
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsVertical.swift:86:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsVertical' may have shared mutable state; this is an error in the Swift 6 language mode
84 | }
85 |
86 | private static let _defaultPupil = QRCode.PupilShape.BarsVertical()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsVertical' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public func defaultPupil() -> any QRCodePupilShapeGenerator {
88 | Self._defaultPupil
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeBarsVertical.swift:27:44: note: class 'BarsVertical' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A vertical bars style pupil design
27 | @objc(QRCodePupilShapeBarsVertical) class BarsVertical: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'BarsVertical' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "barsVertical" }
29 | /// The generator title
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeCRT.swift:44:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.CRT' may have shared mutable state; this is an error in the Swift 6 language mode
42 | @objc public func reset() { }
43 |
44 | private static let _defaultPupil = QRCode.PupilShape.CRT()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.CRT' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
46 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeCRT.swift:25:42: note: class 'CRT' does not conform to the 'Sendable' protocol
23 | extension QRCode.PupilShape {
24 | /// A pinch leaf pupil design
25 | @objc(QRCodePupilShapeCRT) public class CRT: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'CRT' does not conform to the 'Sendable' protocol
26 | /// Generator name
27 | @objc public static var Name: String { "crt" }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeCircle.swift:68:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Circle' may have shared mutable state; this is an error in the Swift 6 language mode
66 | }
67 |
68 | private static let _defaultPupil = QRCode.PupilShape.Circle()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Circle' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
70 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeCircle.swift:27:38: note: class 'Circle' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A circle style pupil design
27 | @objc(QRCodePupilShapeCircle) class Circle: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'Circle' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "circle" }
29 | /// The generator title
[296/310] Compiling QRCode QRCodePixelShapeRotation+Random.swift
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStitch.swift:86:13: warning: static property 'pixelShape_' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
84 | internal extension QRCode.PixelShape.Stitch {
85 | // A 10x10 'pixel' representation
86 | static let pixelShape_ = CGPath.make { a in
| `- warning: static property 'pixelShape_' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
87 | a.move(to: CGPoint(x: 5, y: 4.77))
88 | a.curve(to: CGPoint(x: 5, y: 0.9), controlPoint1: CGPoint(x: 5, y: 4.77), controlPoint2: CGPoint(x: 5, y: 1.3))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStitch.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
84 | internal extension QRCode.PixelShape.Stitch {
85 | // A 10x10 'pixel' representation
86 | static let pixelShape_ = CGPath.make { a in
| |- note: add '@MainActor' to make static property 'pixelShape_' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | a.move(to: CGPoint(x: 5, y: 4.77))
88 | a.curve(to: CGPoint(x: 5, y: 0.9), controlPoint1: CGPoint(x: 5, y: 4.77), controlPoint2: CGPoint(x: 5, y: 1.3))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWave.swift:127:13: warning: let 'generatedPixelPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
125 | }
126 |
127 | private let generatedPixelPath__: CGPath = CGPath.make { wavePath in
| `- warning: let 'generatedPixelPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
128 | wavePath.move(to: CGPoint(x: 0, y: 2))
129 | wavePath.curve(to: CGPoint(x: 2.5, y: 1), controlPoint1: CGPoint(x: 0, y: 2), controlPoint2: CGPoint(x: 1, y: 2))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWave.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
125 | }
126 |
127 | private let generatedPixelPath__: CGPath = CGPath.make { wavePath in
| |- note: add '@MainActor' to make let 'generatedPixelPath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | wavePath.move(to: CGPoint(x: 0, y: 2))
129 | wavePath.curve(to: CGPoint(x: 2.5, y: 1), controlPoint1: CGPoint(x: 0, y: 2), controlPoint2: CGPoint(x: 1, y: 2))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWex.swift:117:14: warning: static property 'WexPixel10x10' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
115 |
116 | // A 10x10 'pixel' representation of a wex
117 | static let WexPixel10x10 = CGPath.make { wexshapePath in
| `- warning: static property 'WexPixel10x10' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
118 | wexshapePath.move(to: CGPoint(x: 0, y: 2))
119 | wexshapePath.line(to: CGPoint(x: 1, y: 5))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWex.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
115 |
116 | // A 10x10 'pixel' representation of a wex
117 | static let WexPixel10x10 = CGPath.make { wexshapePath in
| |- note: add '@MainActor' to make static property 'WexPixel10x10' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 | wexshapePath.move(to: CGPoint(x: 0, y: 2))
119 | wexshapePath.line(to: CGPoint(x: 1, y: 5))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/private/QRCodePixelShapePixel.swift:51:15: warning: static property 'availableTypes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
49 | case roundedTriangle
50 | case leaf
51 | static var availableTypes: [String] = Self.allCases.map { $0.rawValue }
| |- warning: static property 'availableTypes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'availableTypes' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'availableTypes' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 | }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:44:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Arc' may have shared mutable state; this is an error in the Swift 6 language mode
42 | @objc public func reset() { }
43 |
44 | private static let _defaultPupil = QRCode.PupilShape.Arc()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Arc' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
46 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeArc.swift:25:42: note: class 'Arc' does not conform to the 'Sendable' protocol
23 | extension QRCode.PupilShape {
24 | /// An arc pupil design
25 | @objc(QRCodePupilShapeArc) public class Arc: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'Arc' does not conform to the 'Sendable' protocol
26 | /// Generator name
27 | @objc public static var Name: String { "arc" }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:62:13: warning: let 'eyePath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
60 | // MARK: - Paths
61 |
62 | private let eyePath__: CGPath =
| `- warning: let 'eyePath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
63 | CGPath.make { arcouterPath in
64 | arcouterPath.move(to: CGPoint(x: 51.07, y: 79.96))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
60 | // MARK: - Paths
61 |
62 | private let eyePath__: CGPath =
| |- note: add '@MainActor' to make let 'eyePath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
63 | CGPath.make { arcouterPath in
64 | arcouterPath.move(to: CGPoint(x: 51.07, y: 79.96))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:171:13: warning: let 'eyeBackgroudPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
169 | .flippedVertically(height: 90)
170 |
171 | private let eyeBackgroudPath__: CGPath =
| |- warning: let 'eyeBackgroudPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'eyeBackgroudPath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
172 | CGPath.make { arcbackgroundPath in
173 | arcbackgroundPath.move(to: CGPoint(x: 0.01, y: 40.6))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsHorizontal.swift:86:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsHorizontal' may have shared mutable state; this is an error in the Swift 6 language mode
84 | }
85 |
86 | private static let _defaultPupil = QRCode.PupilShape.BarsHorizontal()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsHorizontal' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public func defaultPupil() -> any QRCodePupilShapeGenerator {
88 | Self._defaultPupil
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeBarsHorizontal.swift:27:46: note: class 'BarsHorizontal' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A horizontal bars style pupil design
27 | @objc(QRCodePupilShapeBarsHorizontal) class BarsHorizontal: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'BarsHorizontal' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "barsHorizontal" }
29 | /// The generator title
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsVertical.swift:86:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsVertical' may have shared mutable state; this is an error in the Swift 6 language mode
84 | }
85 |
86 | private static let _defaultPupil = QRCode.PupilShape.BarsVertical()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsVertical' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public func defaultPupil() -> any QRCodePupilShapeGenerator {
88 | Self._defaultPupil
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeBarsVertical.swift:27:44: note: class 'BarsVertical' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A vertical bars style pupil design
27 | @objc(QRCodePupilShapeBarsVertical) class BarsVertical: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'BarsVertical' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "barsVertical" }
29 | /// The generator title
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeCRT.swift:44:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.CRT' may have shared mutable state; this is an error in the Swift 6 language mode
42 | @objc public func reset() { }
43 |
44 | private static let _defaultPupil = QRCode.PupilShape.CRT()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.CRT' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
46 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeCRT.swift:25:42: note: class 'CRT' does not conform to the 'Sendable' protocol
23 | extension QRCode.PupilShape {
24 | /// A pinch leaf pupil design
25 | @objc(QRCodePupilShapeCRT) public class CRT: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'CRT' does not conform to the 'Sendable' protocol
26 | /// Generator name
27 | @objc public static var Name: String { "crt" }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeCircle.swift:68:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Circle' may have shared mutable state; this is an error in the Swift 6 language mode
66 | }
67 |
68 | private static let _defaultPupil = QRCode.PupilShape.Circle()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Circle' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
70 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeCircle.swift:27:38: note: class 'Circle' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A circle style pupil design
27 | @objc(QRCodePupilShapeCircle) class Circle: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'Circle' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "circle" }
29 | /// The generator title
[297/310] Compiling QRCode QRCodePixelShapeRotation+VWave.swift
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStitch.swift:86:13: warning: static property 'pixelShape_' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
84 | internal extension QRCode.PixelShape.Stitch {
85 | // A 10x10 'pixel' representation
86 | static let pixelShape_ = CGPath.make { a in
| `- warning: static property 'pixelShape_' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
87 | a.move(to: CGPoint(x: 5, y: 4.77))
88 | a.curve(to: CGPoint(x: 5, y: 0.9), controlPoint1: CGPoint(x: 5, y: 4.77), controlPoint2: CGPoint(x: 5, y: 1.3))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStitch.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
84 | internal extension QRCode.PixelShape.Stitch {
85 | // A 10x10 'pixel' representation
86 | static let pixelShape_ = CGPath.make { a in
| |- note: add '@MainActor' to make static property 'pixelShape_' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | a.move(to: CGPoint(x: 5, y: 4.77))
88 | a.curve(to: CGPoint(x: 5, y: 0.9), controlPoint1: CGPoint(x: 5, y: 4.77), controlPoint2: CGPoint(x: 5, y: 1.3))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWave.swift:127:13: warning: let 'generatedPixelPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
125 | }
126 |
127 | private let generatedPixelPath__: CGPath = CGPath.make { wavePath in
| `- warning: let 'generatedPixelPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
128 | wavePath.move(to: CGPoint(x: 0, y: 2))
129 | wavePath.curve(to: CGPoint(x: 2.5, y: 1), controlPoint1: CGPoint(x: 0, y: 2), controlPoint2: CGPoint(x: 1, y: 2))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWave.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
125 | }
126 |
127 | private let generatedPixelPath__: CGPath = CGPath.make { wavePath in
| |- note: add '@MainActor' to make let 'generatedPixelPath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | wavePath.move(to: CGPoint(x: 0, y: 2))
129 | wavePath.curve(to: CGPoint(x: 2.5, y: 1), controlPoint1: CGPoint(x: 0, y: 2), controlPoint2: CGPoint(x: 1, y: 2))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWex.swift:117:14: warning: static property 'WexPixel10x10' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
115 |
116 | // A 10x10 'pixel' representation of a wex
117 | static let WexPixel10x10 = CGPath.make { wexshapePath in
| `- warning: static property 'WexPixel10x10' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
118 | wexshapePath.move(to: CGPoint(x: 0, y: 2))
119 | wexshapePath.line(to: CGPoint(x: 1, y: 5))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWex.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
115 |
116 | // A 10x10 'pixel' representation of a wex
117 | static let WexPixel10x10 = CGPath.make { wexshapePath in
| |- note: add '@MainActor' to make static property 'WexPixel10x10' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 | wexshapePath.move(to: CGPoint(x: 0, y: 2))
119 | wexshapePath.line(to: CGPoint(x: 1, y: 5))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/private/QRCodePixelShapePixel.swift:51:15: warning: static property 'availableTypes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
49 | case roundedTriangle
50 | case leaf
51 | static var availableTypes: [String] = Self.allCases.map { $0.rawValue }
| |- warning: static property 'availableTypes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'availableTypes' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'availableTypes' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 | }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:44:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Arc' may have shared mutable state; this is an error in the Swift 6 language mode
42 | @objc public func reset() { }
43 |
44 | private static let _defaultPupil = QRCode.PupilShape.Arc()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Arc' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
46 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeArc.swift:25:42: note: class 'Arc' does not conform to the 'Sendable' protocol
23 | extension QRCode.PupilShape {
24 | /// An arc pupil design
25 | @objc(QRCodePupilShapeArc) public class Arc: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'Arc' does not conform to the 'Sendable' protocol
26 | /// Generator name
27 | @objc public static var Name: String { "arc" }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:62:13: warning: let 'eyePath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
60 | // MARK: - Paths
61 |
62 | private let eyePath__: CGPath =
| `- warning: let 'eyePath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
63 | CGPath.make { arcouterPath in
64 | arcouterPath.move(to: CGPoint(x: 51.07, y: 79.96))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
60 | // MARK: - Paths
61 |
62 | private let eyePath__: CGPath =
| |- note: add '@MainActor' to make let 'eyePath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
63 | CGPath.make { arcouterPath in
64 | arcouterPath.move(to: CGPoint(x: 51.07, y: 79.96))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:171:13: warning: let 'eyeBackgroudPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
169 | .flippedVertically(height: 90)
170 |
171 | private let eyeBackgroudPath__: CGPath =
| |- warning: let 'eyeBackgroudPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'eyeBackgroudPath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
172 | CGPath.make { arcbackgroundPath in
173 | arcbackgroundPath.move(to: CGPoint(x: 0.01, y: 40.6))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsHorizontal.swift:86:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsHorizontal' may have shared mutable state; this is an error in the Swift 6 language mode
84 | }
85 |
86 | private static let _defaultPupil = QRCode.PupilShape.BarsHorizontal()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsHorizontal' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public func defaultPupil() -> any QRCodePupilShapeGenerator {
88 | Self._defaultPupil
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeBarsHorizontal.swift:27:46: note: class 'BarsHorizontal' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A horizontal bars style pupil design
27 | @objc(QRCodePupilShapeBarsHorizontal) class BarsHorizontal: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'BarsHorizontal' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "barsHorizontal" }
29 | /// The generator title
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsVertical.swift:86:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsVertical' may have shared mutable state; this is an error in the Swift 6 language mode
84 | }
85 |
86 | private static let _defaultPupil = QRCode.PupilShape.BarsVertical()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsVertical' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public func defaultPupil() -> any QRCodePupilShapeGenerator {
88 | Self._defaultPupil
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeBarsVertical.swift:27:44: note: class 'BarsVertical' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A vertical bars style pupil design
27 | @objc(QRCodePupilShapeBarsVertical) class BarsVertical: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'BarsVertical' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "barsVertical" }
29 | /// The generator title
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeCRT.swift:44:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.CRT' may have shared mutable state; this is an error in the Swift 6 language mode
42 | @objc public func reset() { }
43 |
44 | private static let _defaultPupil = QRCode.PupilShape.CRT()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.CRT' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
46 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeCRT.swift:25:42: note: class 'CRT' does not conform to the 'Sendable' protocol
23 | extension QRCode.PupilShape {
24 | /// A pinch leaf pupil design
25 | @objc(QRCodePupilShapeCRT) public class CRT: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'CRT' does not conform to the 'Sendable' protocol
26 | /// Generator name
27 | @objc public static var Name: String { "crt" }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeCircle.swift:68:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Circle' may have shared mutable state; this is an error in the Swift 6 language mode
66 | }
67 |
68 | private static let _defaultPupil = QRCode.PupilShape.Circle()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Circle' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
70 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeCircle.swift:27:38: note: class 'Circle' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A circle style pupil design
27 | @objc(QRCodePupilShapeCircle) class Circle: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'Circle' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "circle" }
29 | /// The generator title
[298/310] Compiling QRCode QRCodeEyeShape.swift
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStitch.swift:86:13: warning: static property 'pixelShape_' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
84 | internal extension QRCode.PixelShape.Stitch {
85 | // A 10x10 'pixel' representation
86 | static let pixelShape_ = CGPath.make { a in
| `- warning: static property 'pixelShape_' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
87 | a.move(to: CGPoint(x: 5, y: 4.77))
88 | a.curve(to: CGPoint(x: 5, y: 0.9), controlPoint1: CGPoint(x: 5, y: 4.77), controlPoint2: CGPoint(x: 5, y: 1.3))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStitch.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
84 | internal extension QRCode.PixelShape.Stitch {
85 | // A 10x10 'pixel' representation
86 | static let pixelShape_ = CGPath.make { a in
| |- note: add '@MainActor' to make static property 'pixelShape_' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | a.move(to: CGPoint(x: 5, y: 4.77))
88 | a.curve(to: CGPoint(x: 5, y: 0.9), controlPoint1: CGPoint(x: 5, y: 4.77), controlPoint2: CGPoint(x: 5, y: 1.3))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWave.swift:127:13: warning: let 'generatedPixelPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
125 | }
126 |
127 | private let generatedPixelPath__: CGPath = CGPath.make { wavePath in
| `- warning: let 'generatedPixelPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
128 | wavePath.move(to: CGPoint(x: 0, y: 2))
129 | wavePath.curve(to: CGPoint(x: 2.5, y: 1), controlPoint1: CGPoint(x: 0, y: 2), controlPoint2: CGPoint(x: 1, y: 2))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWave.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
125 | }
126 |
127 | private let generatedPixelPath__: CGPath = CGPath.make { wavePath in
| |- note: add '@MainActor' to make let 'generatedPixelPath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | wavePath.move(to: CGPoint(x: 0, y: 2))
129 | wavePath.curve(to: CGPoint(x: 2.5, y: 1), controlPoint1: CGPoint(x: 0, y: 2), controlPoint2: CGPoint(x: 1, y: 2))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWex.swift:117:14: warning: static property 'WexPixel10x10' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
115 |
116 | // A 10x10 'pixel' representation of a wex
117 | static let WexPixel10x10 = CGPath.make { wexshapePath in
| `- warning: static property 'WexPixel10x10' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
118 | wexshapePath.move(to: CGPoint(x: 0, y: 2))
119 | wexshapePath.line(to: CGPoint(x: 1, y: 5))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWex.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
115 |
116 | // A 10x10 'pixel' representation of a wex
117 | static let WexPixel10x10 = CGPath.make { wexshapePath in
| |- note: add '@MainActor' to make static property 'WexPixel10x10' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 | wexshapePath.move(to: CGPoint(x: 0, y: 2))
119 | wexshapePath.line(to: CGPoint(x: 1, y: 5))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/private/QRCodePixelShapePixel.swift:51:15: warning: static property 'availableTypes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
49 | case roundedTriangle
50 | case leaf
51 | static var availableTypes: [String] = Self.allCases.map { $0.rawValue }
| |- warning: static property 'availableTypes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'availableTypes' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'availableTypes' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 | }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:44:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Arc' may have shared mutable state; this is an error in the Swift 6 language mode
42 | @objc public func reset() { }
43 |
44 | private static let _defaultPupil = QRCode.PupilShape.Arc()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Arc' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
46 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeArc.swift:25:42: note: class 'Arc' does not conform to the 'Sendable' protocol
23 | extension QRCode.PupilShape {
24 | /// An arc pupil design
25 | @objc(QRCodePupilShapeArc) public class Arc: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'Arc' does not conform to the 'Sendable' protocol
26 | /// Generator name
27 | @objc public static var Name: String { "arc" }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:62:13: warning: let 'eyePath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
60 | // MARK: - Paths
61 |
62 | private let eyePath__: CGPath =
| `- warning: let 'eyePath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
63 | CGPath.make { arcouterPath in
64 | arcouterPath.move(to: CGPoint(x: 51.07, y: 79.96))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
60 | // MARK: - Paths
61 |
62 | private let eyePath__: CGPath =
| |- note: add '@MainActor' to make let 'eyePath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
63 | CGPath.make { arcouterPath in
64 | arcouterPath.move(to: CGPoint(x: 51.07, y: 79.96))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:171:13: warning: let 'eyeBackgroudPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
169 | .flippedVertically(height: 90)
170 |
171 | private let eyeBackgroudPath__: CGPath =
| |- warning: let 'eyeBackgroudPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'eyeBackgroudPath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
172 | CGPath.make { arcbackgroundPath in
173 | arcbackgroundPath.move(to: CGPoint(x: 0.01, y: 40.6))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsHorizontal.swift:86:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsHorizontal' may have shared mutable state; this is an error in the Swift 6 language mode
84 | }
85 |
86 | private static let _defaultPupil = QRCode.PupilShape.BarsHorizontal()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsHorizontal' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public func defaultPupil() -> any QRCodePupilShapeGenerator {
88 | Self._defaultPupil
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeBarsHorizontal.swift:27:46: note: class 'BarsHorizontal' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A horizontal bars style pupil design
27 | @objc(QRCodePupilShapeBarsHorizontal) class BarsHorizontal: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'BarsHorizontal' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "barsHorizontal" }
29 | /// The generator title
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsVertical.swift:86:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsVertical' may have shared mutable state; this is an error in the Swift 6 language mode
84 | }
85 |
86 | private static let _defaultPupil = QRCode.PupilShape.BarsVertical()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsVertical' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public func defaultPupil() -> any QRCodePupilShapeGenerator {
88 | Self._defaultPupil
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeBarsVertical.swift:27:44: note: class 'BarsVertical' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A vertical bars style pupil design
27 | @objc(QRCodePupilShapeBarsVertical) class BarsVertical: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'BarsVertical' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "barsVertical" }
29 | /// The generator title
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeCRT.swift:44:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.CRT' may have shared mutable state; this is an error in the Swift 6 language mode
42 | @objc public func reset() { }
43 |
44 | private static let _defaultPupil = QRCode.PupilShape.CRT()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.CRT' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
46 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeCRT.swift:25:42: note: class 'CRT' does not conform to the 'Sendable' protocol
23 | extension QRCode.PupilShape {
24 | /// A pinch leaf pupil design
25 | @objc(QRCodePupilShapeCRT) public class CRT: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'CRT' does not conform to the 'Sendable' protocol
26 | /// Generator name
27 | @objc public static var Name: String { "crt" }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeCircle.swift:68:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Circle' may have shared mutable state; this is an error in the Swift 6 language mode
66 | }
67 |
68 | private static let _defaultPupil = QRCode.PupilShape.Circle()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Circle' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
70 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeCircle.swift:27:38: note: class 'Circle' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A circle style pupil design
27 | @objc(QRCodePupilShapeCircle) class Circle: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'Circle' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "circle" }
29 | /// The generator title
[299/310] Compiling QRCode QRCodeEyeShapeArc.swift
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStitch.swift:86:13: warning: static property 'pixelShape_' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
84 | internal extension QRCode.PixelShape.Stitch {
85 | // A 10x10 'pixel' representation
86 | static let pixelShape_ = CGPath.make { a in
| `- warning: static property 'pixelShape_' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
87 | a.move(to: CGPoint(x: 5, y: 4.77))
88 | a.curve(to: CGPoint(x: 5, y: 0.9), controlPoint1: CGPoint(x: 5, y: 4.77), controlPoint2: CGPoint(x: 5, y: 1.3))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStitch.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
84 | internal extension QRCode.PixelShape.Stitch {
85 | // A 10x10 'pixel' representation
86 | static let pixelShape_ = CGPath.make { a in
| |- note: add '@MainActor' to make static property 'pixelShape_' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | a.move(to: CGPoint(x: 5, y: 4.77))
88 | a.curve(to: CGPoint(x: 5, y: 0.9), controlPoint1: CGPoint(x: 5, y: 4.77), controlPoint2: CGPoint(x: 5, y: 1.3))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWave.swift:127:13: warning: let 'generatedPixelPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
125 | }
126 |
127 | private let generatedPixelPath__: CGPath = CGPath.make { wavePath in
| `- warning: let 'generatedPixelPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
128 | wavePath.move(to: CGPoint(x: 0, y: 2))
129 | wavePath.curve(to: CGPoint(x: 2.5, y: 1), controlPoint1: CGPoint(x: 0, y: 2), controlPoint2: CGPoint(x: 1, y: 2))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWave.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
125 | }
126 |
127 | private let generatedPixelPath__: CGPath = CGPath.make { wavePath in
| |- note: add '@MainActor' to make let 'generatedPixelPath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | wavePath.move(to: CGPoint(x: 0, y: 2))
129 | wavePath.curve(to: CGPoint(x: 2.5, y: 1), controlPoint1: CGPoint(x: 0, y: 2), controlPoint2: CGPoint(x: 1, y: 2))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWex.swift:117:14: warning: static property 'WexPixel10x10' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
115 |
116 | // A 10x10 'pixel' representation of a wex
117 | static let WexPixel10x10 = CGPath.make { wexshapePath in
| `- warning: static property 'WexPixel10x10' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
118 | wexshapePath.move(to: CGPoint(x: 0, y: 2))
119 | wexshapePath.line(to: CGPoint(x: 1, y: 5))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWex.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
115 |
116 | // A 10x10 'pixel' representation of a wex
117 | static let WexPixel10x10 = CGPath.make { wexshapePath in
| |- note: add '@MainActor' to make static property 'WexPixel10x10' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 | wexshapePath.move(to: CGPoint(x: 0, y: 2))
119 | wexshapePath.line(to: CGPoint(x: 1, y: 5))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/private/QRCodePixelShapePixel.swift:51:15: warning: static property 'availableTypes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
49 | case roundedTriangle
50 | case leaf
51 | static var availableTypes: [String] = Self.allCases.map { $0.rawValue }
| |- warning: static property 'availableTypes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'availableTypes' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'availableTypes' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 | }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:44:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Arc' may have shared mutable state; this is an error in the Swift 6 language mode
42 | @objc public func reset() { }
43 |
44 | private static let _defaultPupil = QRCode.PupilShape.Arc()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Arc' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
46 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeArc.swift:25:42: note: class 'Arc' does not conform to the 'Sendable' protocol
23 | extension QRCode.PupilShape {
24 | /// An arc pupil design
25 | @objc(QRCodePupilShapeArc) public class Arc: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'Arc' does not conform to the 'Sendable' protocol
26 | /// Generator name
27 | @objc public static var Name: String { "arc" }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:62:13: warning: let 'eyePath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
60 | // MARK: - Paths
61 |
62 | private let eyePath__: CGPath =
| `- warning: let 'eyePath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
63 | CGPath.make { arcouterPath in
64 | arcouterPath.move(to: CGPoint(x: 51.07, y: 79.96))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
60 | // MARK: - Paths
61 |
62 | private let eyePath__: CGPath =
| |- note: add '@MainActor' to make let 'eyePath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
63 | CGPath.make { arcouterPath in
64 | arcouterPath.move(to: CGPoint(x: 51.07, y: 79.96))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:171:13: warning: let 'eyeBackgroudPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
169 | .flippedVertically(height: 90)
170 |
171 | private let eyeBackgroudPath__: CGPath =
| |- warning: let 'eyeBackgroudPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'eyeBackgroudPath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
172 | CGPath.make { arcbackgroundPath in
173 | arcbackgroundPath.move(to: CGPoint(x: 0.01, y: 40.6))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsHorizontal.swift:86:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsHorizontal' may have shared mutable state; this is an error in the Swift 6 language mode
84 | }
85 |
86 | private static let _defaultPupil = QRCode.PupilShape.BarsHorizontal()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsHorizontal' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public func defaultPupil() -> any QRCodePupilShapeGenerator {
88 | Self._defaultPupil
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeBarsHorizontal.swift:27:46: note: class 'BarsHorizontal' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A horizontal bars style pupil design
27 | @objc(QRCodePupilShapeBarsHorizontal) class BarsHorizontal: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'BarsHorizontal' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "barsHorizontal" }
29 | /// The generator title
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsVertical.swift:86:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsVertical' may have shared mutable state; this is an error in the Swift 6 language mode
84 | }
85 |
86 | private static let _defaultPupil = QRCode.PupilShape.BarsVertical()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsVertical' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public func defaultPupil() -> any QRCodePupilShapeGenerator {
88 | Self._defaultPupil
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeBarsVertical.swift:27:44: note: class 'BarsVertical' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A vertical bars style pupil design
27 | @objc(QRCodePupilShapeBarsVertical) class BarsVertical: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'BarsVertical' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "barsVertical" }
29 | /// The generator title
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeCRT.swift:44:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.CRT' may have shared mutable state; this is an error in the Swift 6 language mode
42 | @objc public func reset() { }
43 |
44 | private static let _defaultPupil = QRCode.PupilShape.CRT()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.CRT' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
46 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeCRT.swift:25:42: note: class 'CRT' does not conform to the 'Sendable' protocol
23 | extension QRCode.PupilShape {
24 | /// A pinch leaf pupil design
25 | @objc(QRCodePupilShapeCRT) public class CRT: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'CRT' does not conform to the 'Sendable' protocol
26 | /// Generator name
27 | @objc public static var Name: String { "crt" }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeCircle.swift:68:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Circle' may have shared mutable state; this is an error in the Swift 6 language mode
66 | }
67 |
68 | private static let _defaultPupil = QRCode.PupilShape.Circle()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Circle' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
70 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeCircle.swift:27:38: note: class 'Circle' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A circle style pupil design
27 | @objc(QRCodePupilShapeCircle) class Circle: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'Circle' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "circle" }
29 | /// The generator title
[300/310] Compiling QRCode QRCodeEyeShapeBarsHorizontal.swift
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStitch.swift:86:13: warning: static property 'pixelShape_' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
84 | internal extension QRCode.PixelShape.Stitch {
85 | // A 10x10 'pixel' representation
86 | static let pixelShape_ = CGPath.make { a in
| `- warning: static property 'pixelShape_' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
87 | a.move(to: CGPoint(x: 5, y: 4.77))
88 | a.curve(to: CGPoint(x: 5, y: 0.9), controlPoint1: CGPoint(x: 5, y: 4.77), controlPoint2: CGPoint(x: 5, y: 1.3))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStitch.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
84 | internal extension QRCode.PixelShape.Stitch {
85 | // A 10x10 'pixel' representation
86 | static let pixelShape_ = CGPath.make { a in
| |- note: add '@MainActor' to make static property 'pixelShape_' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | a.move(to: CGPoint(x: 5, y: 4.77))
88 | a.curve(to: CGPoint(x: 5, y: 0.9), controlPoint1: CGPoint(x: 5, y: 4.77), controlPoint2: CGPoint(x: 5, y: 1.3))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWave.swift:127:13: warning: let 'generatedPixelPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
125 | }
126 |
127 | private let generatedPixelPath__: CGPath = CGPath.make { wavePath in
| `- warning: let 'generatedPixelPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
128 | wavePath.move(to: CGPoint(x: 0, y: 2))
129 | wavePath.curve(to: CGPoint(x: 2.5, y: 1), controlPoint1: CGPoint(x: 0, y: 2), controlPoint2: CGPoint(x: 1, y: 2))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWave.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
125 | }
126 |
127 | private let generatedPixelPath__: CGPath = CGPath.make { wavePath in
| |- note: add '@MainActor' to make let 'generatedPixelPath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | wavePath.move(to: CGPoint(x: 0, y: 2))
129 | wavePath.curve(to: CGPoint(x: 2.5, y: 1), controlPoint1: CGPoint(x: 0, y: 2), controlPoint2: CGPoint(x: 1, y: 2))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWex.swift:117:14: warning: static property 'WexPixel10x10' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
115 |
116 | // A 10x10 'pixel' representation of a wex
117 | static let WexPixel10x10 = CGPath.make { wexshapePath in
| `- warning: static property 'WexPixel10x10' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
118 | wexshapePath.move(to: CGPoint(x: 0, y: 2))
119 | wexshapePath.line(to: CGPoint(x: 1, y: 5))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWex.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
115 |
116 | // A 10x10 'pixel' representation of a wex
117 | static let WexPixel10x10 = CGPath.make { wexshapePath in
| |- note: add '@MainActor' to make static property 'WexPixel10x10' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 | wexshapePath.move(to: CGPoint(x: 0, y: 2))
119 | wexshapePath.line(to: CGPoint(x: 1, y: 5))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/private/QRCodePixelShapePixel.swift:51:15: warning: static property 'availableTypes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
49 | case roundedTriangle
50 | case leaf
51 | static var availableTypes: [String] = Self.allCases.map { $0.rawValue }
| |- warning: static property 'availableTypes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'availableTypes' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'availableTypes' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 | }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:44:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Arc' may have shared mutable state; this is an error in the Swift 6 language mode
42 | @objc public func reset() { }
43 |
44 | private static let _defaultPupil = QRCode.PupilShape.Arc()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Arc' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
46 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeArc.swift:25:42: note: class 'Arc' does not conform to the 'Sendable' protocol
23 | extension QRCode.PupilShape {
24 | /// An arc pupil design
25 | @objc(QRCodePupilShapeArc) public class Arc: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'Arc' does not conform to the 'Sendable' protocol
26 | /// Generator name
27 | @objc public static var Name: String { "arc" }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:62:13: warning: let 'eyePath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
60 | // MARK: - Paths
61 |
62 | private let eyePath__: CGPath =
| `- warning: let 'eyePath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
63 | CGPath.make { arcouterPath in
64 | arcouterPath.move(to: CGPoint(x: 51.07, y: 79.96))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
60 | // MARK: - Paths
61 |
62 | private let eyePath__: CGPath =
| |- note: add '@MainActor' to make let 'eyePath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
63 | CGPath.make { arcouterPath in
64 | arcouterPath.move(to: CGPoint(x: 51.07, y: 79.96))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:171:13: warning: let 'eyeBackgroudPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
169 | .flippedVertically(height: 90)
170 |
171 | private let eyeBackgroudPath__: CGPath =
| |- warning: let 'eyeBackgroudPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'eyeBackgroudPath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
172 | CGPath.make { arcbackgroundPath in
173 | arcbackgroundPath.move(to: CGPoint(x: 0.01, y: 40.6))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsHorizontal.swift:86:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsHorizontal' may have shared mutable state; this is an error in the Swift 6 language mode
84 | }
85 |
86 | private static let _defaultPupil = QRCode.PupilShape.BarsHorizontal()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsHorizontal' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public func defaultPupil() -> any QRCodePupilShapeGenerator {
88 | Self._defaultPupil
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeBarsHorizontal.swift:27:46: note: class 'BarsHorizontal' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A horizontal bars style pupil design
27 | @objc(QRCodePupilShapeBarsHorizontal) class BarsHorizontal: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'BarsHorizontal' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "barsHorizontal" }
29 | /// The generator title
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsVertical.swift:86:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsVertical' may have shared mutable state; this is an error in the Swift 6 language mode
84 | }
85 |
86 | private static let _defaultPupil = QRCode.PupilShape.BarsVertical()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsVertical' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public func defaultPupil() -> any QRCodePupilShapeGenerator {
88 | Self._defaultPupil
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeBarsVertical.swift:27:44: note: class 'BarsVertical' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A vertical bars style pupil design
27 | @objc(QRCodePupilShapeBarsVertical) class BarsVertical: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'BarsVertical' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "barsVertical" }
29 | /// The generator title
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeCRT.swift:44:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.CRT' may have shared mutable state; this is an error in the Swift 6 language mode
42 | @objc public func reset() { }
43 |
44 | private static let _defaultPupil = QRCode.PupilShape.CRT()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.CRT' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
46 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeCRT.swift:25:42: note: class 'CRT' does not conform to the 'Sendable' protocol
23 | extension QRCode.PupilShape {
24 | /// A pinch leaf pupil design
25 | @objc(QRCodePupilShapeCRT) public class CRT: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'CRT' does not conform to the 'Sendable' protocol
26 | /// Generator name
27 | @objc public static var Name: String { "crt" }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeCircle.swift:68:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Circle' may have shared mutable state; this is an error in the Swift 6 language mode
66 | }
67 |
68 | private static let _defaultPupil = QRCode.PupilShape.Circle()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Circle' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
70 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeCircle.swift:27:38: note: class 'Circle' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A circle style pupil design
27 | @objc(QRCodePupilShapeCircle) class Circle: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'Circle' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "circle" }
29 | /// The generator title
[301/310] Compiling QRCode QRCodeEyeShapeBarsVertical.swift
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStitch.swift:86:13: warning: static property 'pixelShape_' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
84 | internal extension QRCode.PixelShape.Stitch {
85 | // A 10x10 'pixel' representation
86 | static let pixelShape_ = CGPath.make { a in
| `- warning: static property 'pixelShape_' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
87 | a.move(to: CGPoint(x: 5, y: 4.77))
88 | a.curve(to: CGPoint(x: 5, y: 0.9), controlPoint1: CGPoint(x: 5, y: 4.77), controlPoint2: CGPoint(x: 5, y: 1.3))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStitch.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
84 | internal extension QRCode.PixelShape.Stitch {
85 | // A 10x10 'pixel' representation
86 | static let pixelShape_ = CGPath.make { a in
| |- note: add '@MainActor' to make static property 'pixelShape_' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | a.move(to: CGPoint(x: 5, y: 4.77))
88 | a.curve(to: CGPoint(x: 5, y: 0.9), controlPoint1: CGPoint(x: 5, y: 4.77), controlPoint2: CGPoint(x: 5, y: 1.3))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWave.swift:127:13: warning: let 'generatedPixelPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
125 | }
126 |
127 | private let generatedPixelPath__: CGPath = CGPath.make { wavePath in
| `- warning: let 'generatedPixelPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
128 | wavePath.move(to: CGPoint(x: 0, y: 2))
129 | wavePath.curve(to: CGPoint(x: 2.5, y: 1), controlPoint1: CGPoint(x: 0, y: 2), controlPoint2: CGPoint(x: 1, y: 2))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWave.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
125 | }
126 |
127 | private let generatedPixelPath__: CGPath = CGPath.make { wavePath in
| |- note: add '@MainActor' to make let 'generatedPixelPath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | wavePath.move(to: CGPoint(x: 0, y: 2))
129 | wavePath.curve(to: CGPoint(x: 2.5, y: 1), controlPoint1: CGPoint(x: 0, y: 2), controlPoint2: CGPoint(x: 1, y: 2))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWex.swift:117:14: warning: static property 'WexPixel10x10' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
115 |
116 | // A 10x10 'pixel' representation of a wex
117 | static let WexPixel10x10 = CGPath.make { wexshapePath in
| `- warning: static property 'WexPixel10x10' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
118 | wexshapePath.move(to: CGPoint(x: 0, y: 2))
119 | wexshapePath.line(to: CGPoint(x: 1, y: 5))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWex.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
115 |
116 | // A 10x10 'pixel' representation of a wex
117 | static let WexPixel10x10 = CGPath.make { wexshapePath in
| |- note: add '@MainActor' to make static property 'WexPixel10x10' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 | wexshapePath.move(to: CGPoint(x: 0, y: 2))
119 | wexshapePath.line(to: CGPoint(x: 1, y: 5))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/private/QRCodePixelShapePixel.swift:51:15: warning: static property 'availableTypes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
49 | case roundedTriangle
50 | case leaf
51 | static var availableTypes: [String] = Self.allCases.map { $0.rawValue }
| |- warning: static property 'availableTypes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'availableTypes' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'availableTypes' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 | }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:44:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Arc' may have shared mutable state; this is an error in the Swift 6 language mode
42 | @objc public func reset() { }
43 |
44 | private static let _defaultPupil = QRCode.PupilShape.Arc()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Arc' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
46 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeArc.swift:25:42: note: class 'Arc' does not conform to the 'Sendable' protocol
23 | extension QRCode.PupilShape {
24 | /// An arc pupil design
25 | @objc(QRCodePupilShapeArc) public class Arc: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'Arc' does not conform to the 'Sendable' protocol
26 | /// Generator name
27 | @objc public static var Name: String { "arc" }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:62:13: warning: let 'eyePath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
60 | // MARK: - Paths
61 |
62 | private let eyePath__: CGPath =
| `- warning: let 'eyePath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
63 | CGPath.make { arcouterPath in
64 | arcouterPath.move(to: CGPoint(x: 51.07, y: 79.96))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
60 | // MARK: - Paths
61 |
62 | private let eyePath__: CGPath =
| |- note: add '@MainActor' to make let 'eyePath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
63 | CGPath.make { arcouterPath in
64 | arcouterPath.move(to: CGPoint(x: 51.07, y: 79.96))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:171:13: warning: let 'eyeBackgroudPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
169 | .flippedVertically(height: 90)
170 |
171 | private let eyeBackgroudPath__: CGPath =
| |- warning: let 'eyeBackgroudPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'eyeBackgroudPath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
172 | CGPath.make { arcbackgroundPath in
173 | arcbackgroundPath.move(to: CGPoint(x: 0.01, y: 40.6))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsHorizontal.swift:86:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsHorizontal' may have shared mutable state; this is an error in the Swift 6 language mode
84 | }
85 |
86 | private static let _defaultPupil = QRCode.PupilShape.BarsHorizontal()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsHorizontal' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public func defaultPupil() -> any QRCodePupilShapeGenerator {
88 | Self._defaultPupil
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeBarsHorizontal.swift:27:46: note: class 'BarsHorizontal' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A horizontal bars style pupil design
27 | @objc(QRCodePupilShapeBarsHorizontal) class BarsHorizontal: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'BarsHorizontal' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "barsHorizontal" }
29 | /// The generator title
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsVertical.swift:86:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsVertical' may have shared mutable state; this is an error in the Swift 6 language mode
84 | }
85 |
86 | private static let _defaultPupil = QRCode.PupilShape.BarsVertical()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsVertical' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public func defaultPupil() -> any QRCodePupilShapeGenerator {
88 | Self._defaultPupil
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeBarsVertical.swift:27:44: note: class 'BarsVertical' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A vertical bars style pupil design
27 | @objc(QRCodePupilShapeBarsVertical) class BarsVertical: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'BarsVertical' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "barsVertical" }
29 | /// The generator title
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeCRT.swift:44:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.CRT' may have shared mutable state; this is an error in the Swift 6 language mode
42 | @objc public func reset() { }
43 |
44 | private static let _defaultPupil = QRCode.PupilShape.CRT()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.CRT' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
46 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeCRT.swift:25:42: note: class 'CRT' does not conform to the 'Sendable' protocol
23 | extension QRCode.PupilShape {
24 | /// A pinch leaf pupil design
25 | @objc(QRCodePupilShapeCRT) public class CRT: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'CRT' does not conform to the 'Sendable' protocol
26 | /// Generator name
27 | @objc public static var Name: String { "crt" }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeCircle.swift:68:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Circle' may have shared mutable state; this is an error in the Swift 6 language mode
66 | }
67 |
68 | private static let _defaultPupil = QRCode.PupilShape.Circle()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Circle' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
70 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeCircle.swift:27:38: note: class 'Circle' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A circle style pupil design
27 | @objc(QRCodePupilShapeCircle) class Circle: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'Circle' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "circle" }
29 | /// The generator title
[302/310] Compiling QRCode QRCodeEyeShapeCRT.swift
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStitch.swift:86:13: warning: static property 'pixelShape_' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
84 | internal extension QRCode.PixelShape.Stitch {
85 | // A 10x10 'pixel' representation
86 | static let pixelShape_ = CGPath.make { a in
| `- warning: static property 'pixelShape_' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
87 | a.move(to: CGPoint(x: 5, y: 4.77))
88 | a.curve(to: CGPoint(x: 5, y: 0.9), controlPoint1: CGPoint(x: 5, y: 4.77), controlPoint2: CGPoint(x: 5, y: 1.3))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStitch.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
84 | internal extension QRCode.PixelShape.Stitch {
85 | // A 10x10 'pixel' representation
86 | static let pixelShape_ = CGPath.make { a in
| |- note: add '@MainActor' to make static property 'pixelShape_' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | a.move(to: CGPoint(x: 5, y: 4.77))
88 | a.curve(to: CGPoint(x: 5, y: 0.9), controlPoint1: CGPoint(x: 5, y: 4.77), controlPoint2: CGPoint(x: 5, y: 1.3))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWave.swift:127:13: warning: let 'generatedPixelPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
125 | }
126 |
127 | private let generatedPixelPath__: CGPath = CGPath.make { wavePath in
| `- warning: let 'generatedPixelPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
128 | wavePath.move(to: CGPoint(x: 0, y: 2))
129 | wavePath.curve(to: CGPoint(x: 2.5, y: 1), controlPoint1: CGPoint(x: 0, y: 2), controlPoint2: CGPoint(x: 1, y: 2))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWave.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
125 | }
126 |
127 | private let generatedPixelPath__: CGPath = CGPath.make { wavePath in
| |- note: add '@MainActor' to make let 'generatedPixelPath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | wavePath.move(to: CGPoint(x: 0, y: 2))
129 | wavePath.curve(to: CGPoint(x: 2.5, y: 1), controlPoint1: CGPoint(x: 0, y: 2), controlPoint2: CGPoint(x: 1, y: 2))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWex.swift:117:14: warning: static property 'WexPixel10x10' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
115 |
116 | // A 10x10 'pixel' representation of a wex
117 | static let WexPixel10x10 = CGPath.make { wexshapePath in
| `- warning: static property 'WexPixel10x10' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
118 | wexshapePath.move(to: CGPoint(x: 0, y: 2))
119 | wexshapePath.line(to: CGPoint(x: 1, y: 5))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWex.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
115 |
116 | // A 10x10 'pixel' representation of a wex
117 | static let WexPixel10x10 = CGPath.make { wexshapePath in
| |- note: add '@MainActor' to make static property 'WexPixel10x10' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 | wexshapePath.move(to: CGPoint(x: 0, y: 2))
119 | wexshapePath.line(to: CGPoint(x: 1, y: 5))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/private/QRCodePixelShapePixel.swift:51:15: warning: static property 'availableTypes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
49 | case roundedTriangle
50 | case leaf
51 | static var availableTypes: [String] = Self.allCases.map { $0.rawValue }
| |- warning: static property 'availableTypes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'availableTypes' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'availableTypes' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 | }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:44:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Arc' may have shared mutable state; this is an error in the Swift 6 language mode
42 | @objc public func reset() { }
43 |
44 | private static let _defaultPupil = QRCode.PupilShape.Arc()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Arc' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
46 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeArc.swift:25:42: note: class 'Arc' does not conform to the 'Sendable' protocol
23 | extension QRCode.PupilShape {
24 | /// An arc pupil design
25 | @objc(QRCodePupilShapeArc) public class Arc: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'Arc' does not conform to the 'Sendable' protocol
26 | /// Generator name
27 | @objc public static var Name: String { "arc" }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:62:13: warning: let 'eyePath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
60 | // MARK: - Paths
61 |
62 | private let eyePath__: CGPath =
| `- warning: let 'eyePath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
63 | CGPath.make { arcouterPath in
64 | arcouterPath.move(to: CGPoint(x: 51.07, y: 79.96))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
60 | // MARK: - Paths
61 |
62 | private let eyePath__: CGPath =
| |- note: add '@MainActor' to make let 'eyePath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
63 | CGPath.make { arcouterPath in
64 | arcouterPath.move(to: CGPoint(x: 51.07, y: 79.96))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:171:13: warning: let 'eyeBackgroudPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
169 | .flippedVertically(height: 90)
170 |
171 | private let eyeBackgroudPath__: CGPath =
| |- warning: let 'eyeBackgroudPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'eyeBackgroudPath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
172 | CGPath.make { arcbackgroundPath in
173 | arcbackgroundPath.move(to: CGPoint(x: 0.01, y: 40.6))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsHorizontal.swift:86:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsHorizontal' may have shared mutable state; this is an error in the Swift 6 language mode
84 | }
85 |
86 | private static let _defaultPupil = QRCode.PupilShape.BarsHorizontal()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsHorizontal' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public func defaultPupil() -> any QRCodePupilShapeGenerator {
88 | Self._defaultPupil
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeBarsHorizontal.swift:27:46: note: class 'BarsHorizontal' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A horizontal bars style pupil design
27 | @objc(QRCodePupilShapeBarsHorizontal) class BarsHorizontal: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'BarsHorizontal' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "barsHorizontal" }
29 | /// The generator title
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsVertical.swift:86:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsVertical' may have shared mutable state; this is an error in the Swift 6 language mode
84 | }
85 |
86 | private static let _defaultPupil = QRCode.PupilShape.BarsVertical()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsVertical' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public func defaultPupil() -> any QRCodePupilShapeGenerator {
88 | Self._defaultPupil
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeBarsVertical.swift:27:44: note: class 'BarsVertical' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A vertical bars style pupil design
27 | @objc(QRCodePupilShapeBarsVertical) class BarsVertical: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'BarsVertical' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "barsVertical" }
29 | /// The generator title
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeCRT.swift:44:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.CRT' may have shared mutable state; this is an error in the Swift 6 language mode
42 | @objc public func reset() { }
43 |
44 | private static let _defaultPupil = QRCode.PupilShape.CRT()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.CRT' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
46 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeCRT.swift:25:42: note: class 'CRT' does not conform to the 'Sendable' protocol
23 | extension QRCode.PupilShape {
24 | /// A pinch leaf pupil design
25 | @objc(QRCodePupilShapeCRT) public class CRT: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'CRT' does not conform to the 'Sendable' protocol
26 | /// Generator name
27 | @objc public static var Name: String { "crt" }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeCircle.swift:68:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Circle' may have shared mutable state; this is an error in the Swift 6 language mode
66 | }
67 |
68 | private static let _defaultPupil = QRCode.PupilShape.Circle()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Circle' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
70 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeCircle.swift:27:38: note: class 'Circle' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A circle style pupil design
27 | @objc(QRCodePupilShapeCircle) class Circle: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'Circle' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "circle" }
29 | /// The generator title
[303/310] Compiling QRCode QRCodeEyeShapeCircle.swift
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStitch.swift:86:13: warning: static property 'pixelShape_' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
84 | internal extension QRCode.PixelShape.Stitch {
85 | // A 10x10 'pixel' representation
86 | static let pixelShape_ = CGPath.make { a in
| `- warning: static property 'pixelShape_' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
87 | a.move(to: CGPoint(x: 5, y: 4.77))
88 | a.curve(to: CGPoint(x: 5, y: 0.9), controlPoint1: CGPoint(x: 5, y: 4.77), controlPoint2: CGPoint(x: 5, y: 1.3))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeStitch.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
84 | internal extension QRCode.PixelShape.Stitch {
85 | // A 10x10 'pixel' representation
86 | static let pixelShape_ = CGPath.make { a in
| |- note: add '@MainActor' to make static property 'pixelShape_' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | a.move(to: CGPoint(x: 5, y: 4.77))
88 | a.curve(to: CGPoint(x: 5, y: 0.9), controlPoint1: CGPoint(x: 5, y: 4.77), controlPoint2: CGPoint(x: 5, y: 1.3))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWave.swift:127:13: warning: let 'generatedPixelPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
125 | }
126 |
127 | private let generatedPixelPath__: CGPath = CGPath.make { wavePath in
| `- warning: let 'generatedPixelPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
128 | wavePath.move(to: CGPoint(x: 0, y: 2))
129 | wavePath.curve(to: CGPoint(x: 2.5, y: 1), controlPoint1: CGPoint(x: 0, y: 2), controlPoint2: CGPoint(x: 1, y: 2))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWave.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
125 | }
126 |
127 | private let generatedPixelPath__: CGPath = CGPath.make { wavePath in
| |- note: add '@MainActor' to make let 'generatedPixelPath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | wavePath.move(to: CGPoint(x: 0, y: 2))
129 | wavePath.curve(to: CGPoint(x: 2.5, y: 1), controlPoint1: CGPoint(x: 0, y: 2), controlPoint2: CGPoint(x: 1, y: 2))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWex.swift:117:14: warning: static property 'WexPixel10x10' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
115 |
116 | // A 10x10 'pixel' representation of a wex
117 | static let WexPixel10x10 = CGPath.make { wexshapePath in
| `- warning: static property 'WexPixel10x10' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
118 | wexshapePath.move(to: CGPoint(x: 0, y: 2))
119 | wexshapePath.line(to: CGPoint(x: 1, y: 5))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/QRCodePixelShapeWex.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
115 |
116 | // A 10x10 'pixel' representation of a wex
117 | static let WexPixel10x10 = CGPath.make { wexshapePath in
| |- note: add '@MainActor' to make static property 'WexPixel10x10' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 | wexshapePath.move(to: CGPoint(x: 0, y: 2))
119 | wexshapePath.line(to: CGPoint(x: 1, y: 5))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/data/pixel/private/QRCodePixelShapePixel.swift:51:15: warning: static property 'availableTypes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
49 | case roundedTriangle
50 | case leaf
51 | static var availableTypes: [String] = Self.allCases.map { $0.rawValue }
| |- warning: static property 'availableTypes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'availableTypes' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'availableTypes' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 | }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:44:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Arc' may have shared mutable state; this is an error in the Swift 6 language mode
42 | @objc public func reset() { }
43 |
44 | private static let _defaultPupil = QRCode.PupilShape.Arc()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Arc' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
46 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeArc.swift:25:42: note: class 'Arc' does not conform to the 'Sendable' protocol
23 | extension QRCode.PupilShape {
24 | /// An arc pupil design
25 | @objc(QRCodePupilShapeArc) public class Arc: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'Arc' does not conform to the 'Sendable' protocol
26 | /// Generator name
27 | @objc public static var Name: String { "arc" }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:62:13: warning: let 'eyePath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
60 | // MARK: - Paths
61 |
62 | private let eyePath__: CGPath =
| `- warning: let 'eyePath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
63 | CGPath.make { arcouterPath in
64 | arcouterPath.move(to: CGPoint(x: 51.07, y: 79.96))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
18 | //
19 |
20 | import CoreGraphics
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreGraphics'
21 | import Foundation
22 |
:
60 | // MARK: - Paths
61 |
62 | private let eyePath__: CGPath =
| |- note: add '@MainActor' to make let 'eyePath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
63 | CGPath.make { arcouterPath in
64 | arcouterPath.move(to: CGPoint(x: 51.07, y: 79.96))
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeArc.swift:171:13: warning: let 'eyeBackgroudPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
169 | .flippedVertically(height: 90)
170 |
171 | private let eyeBackgroudPath__: CGPath =
| |- warning: let 'eyeBackgroudPath__' is not concurrency-safe because non-'Sendable' type 'CGPath' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'eyeBackgroudPath__' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
172 | CGPath.make { arcbackgroundPath in
173 | arcbackgroundPath.move(to: CGPoint(x: 0.01, y: 40.6))
CoreGraphics.CGPath:1:14: note: class 'CGPath' does not conform to the 'Sendable' protocol
1 | public class CGPath : _CFObject {
| `- note: class 'CGPath' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsHorizontal.swift:86:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsHorizontal' may have shared mutable state; this is an error in the Swift 6 language mode
84 | }
85 |
86 | private static let _defaultPupil = QRCode.PupilShape.BarsHorizontal()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsHorizontal' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public func defaultPupil() -> any QRCodePupilShapeGenerator {
88 | Self._defaultPupil
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeBarsHorizontal.swift:27:46: note: class 'BarsHorizontal' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A horizontal bars style pupil design
27 | @objc(QRCodePupilShapeBarsHorizontal) class BarsHorizontal: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'BarsHorizontal' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "barsHorizontal" }
29 | /// The generator title
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeBarsVertical.swift:86:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsVertical' may have shared mutable state; this is an error in the Swift 6 language mode
84 | }
85 |
86 | private static let _defaultPupil = QRCode.PupilShape.BarsVertical()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.BarsVertical' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public func defaultPupil() -> any QRCodePupilShapeGenerator {
88 | Self._defaultPupil
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeBarsVertical.swift:27:44: note: class 'BarsVertical' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A vertical bars style pupil design
27 | @objc(QRCodePupilShapeBarsVertical) class BarsVertical: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'BarsVertical' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "barsVertical" }
29 | /// The generator title
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeCRT.swift:44:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.CRT' may have shared mutable state; this is an error in the Swift 6 language mode
42 | @objc public func reset() { }
43 |
44 | private static let _defaultPupil = QRCode.PupilShape.CRT()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.CRT' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
46 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeCRT.swift:25:42: note: class 'CRT' does not conform to the 'Sendable' protocol
23 | extension QRCode.PupilShape {
24 | /// A pinch leaf pupil design
25 | @objc(QRCodePupilShapeCRT) public class CRT: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'CRT' does not conform to the 'Sendable' protocol
26 | /// Generator name
27 | @objc public static var Name: String { "crt" }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/eye/QRCodeEyeShapeCircle.swift:68:22: warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Circle' may have shared mutable state; this is an error in the Swift 6 language mode
66 | }
67 |
68 | private static let _defaultPupil = QRCode.PupilShape.Circle()
| |- warning: static property '_defaultPupil' is not concurrency-safe because non-'Sendable' type 'QRCode.PupilShape.Circle' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property '_defaultPupil' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 | public func defaultPupil() -> any QRCodePupilShapeGenerator { Self._defaultPupil }
70 | }
/Users/admin/builder/spi-builder-workspace/Sources/QRCode/styles/pupil/QRCodePupilShapeCircle.swift:27:38: note: class 'Circle' does not conform to the 'Sendable' protocol
25 | public extension QRCode.PupilShape {
26 | /// A circle style pupil design
27 | @objc(QRCodePupilShapeCircle) class Circle: NSObject, QRCodePupilShapeGenerator {
| `- note: class 'Circle' does not conform to the 'Sendable' protocol
28 | @objc public static var Name: String { "circle" }
29 | /// The generator title
[303/310] Write Objects.LinkFileList
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning duplicate member name 'CGImage+extensions.swift.o' from '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/QRCode.build/CGImage+extensions.swift.o(CGImage+extensions.swift.o)' and '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/SwiftImageReadWrite.build/CGImage+extensions.swift.o(CGImage+extensions.swift.o)'
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning duplicate member name 'QRCode.swift.o' from '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/QRCodeGenerator.build/QRCode.swift.o(QRCode.swift.o)' and '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/QRCode.build/QRCode.swift.o(QRCode.swift.o)'
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning duplicate member name 'Utils.swift.o' from '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/QRCode.build/Utils.swift.o(Utils.swift.o)' and '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/SwiftImageReadWrite.build/Utils.swift.o(Utils.swift.o)'
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning duplicate member name 'resource_bundle_accessor.swift.o' from '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/QRCode.build/resource_bundle_accessor.swift.o(resource_bundle_accessor.swift.o)' and '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/SwiftImageReadWrite.build/resource_bundle_accessor.swift.o(resource_bundle_accessor.swift.o)'
[305/310] Archiving libQRCodeStatic.a
[307/314] Compiling qrcodegen resource_bundle_accessor.swift
[308/314] Compiling qrcodegen utils.swift
[308/314] Linking libQRCodeDynamic.dylib
[310/314] Compiling qrcodegen main.swift
[311/314] Emitting module qrcodegen
[311/314] Write Objects.LinkFileList
[312/314] Linking qrcodegen
[313/314] Applying qrcodegen
Build complete! (22.64s)
Fetching https://github.com/dagronf/SwiftImageReadWrite
Fetching https://github.com/dagronf/swift-qrcode-generator
Fetching https://github.com/apple/swift-argument-parser from cache
[1/378] Fetching swiftimagereadwrite
[28/723] Fetching swiftimagereadwrite, swift-qrcode-generator
Fetched https://github.com/dagronf/SwiftImageReadWrite from cache (0.83s)
Fetched https://github.com/dagronf/swift-qrcode-generator from cache (0.83s)
Fetched https://github.com/apple/swift-argument-parser from cache (1.37s)
Computing version for https://github.com/dagronf/swift-qrcode-generator
Computed https://github.com/dagronf/swift-qrcode-generator at 2.0.2 (1.97s)
Computing version for https://github.com/dagronf/SwiftImageReadWrite
Computed https://github.com/dagronf/SwiftImageReadWrite at 1.9.2 (0.58s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 0.4.4 (0.58s)
Creating working copy for https://github.com/dagronf/swift-qrcode-generator
Working copy of https://github.com/dagronf/swift-qrcode-generator resolved at 2.0.2
Creating working copy for https://github.com/dagronf/SwiftImageReadWrite
Working copy of https://github.com/dagronf/SwiftImageReadWrite resolved at 1.9.2
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 0.4.4
Build complete.
{
"dependencies" : [
{
"identity" : "swift-argument-parser",
"requirement" : {
"range" : [
{
"lower_bound" : "0.4.3",
"upper_bound" : "0.5.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-argument-parser"
},
{
"identity" : "swift-qrcode-generator",
"requirement" : {
"range" : [
{
"lower_bound" : "2.0.2",
"upper_bound" : "2.1.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/dagronf/swift-qrcode-generator"
},
{
"identity" : "swiftimagereadwrite",
"requirement" : {
"range" : [
{
"lower_bound" : "1.9.1",
"upper_bound" : "1.10.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/dagronf/SwiftImageReadWrite"
}
],
"manifest_display_name" : "QRCode",
"name" : "QRCode",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.13"
},
{
"name" : "ios",
"version" : "11.0"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "6.0"
}
],
"products" : [
{
"name" : "QRCode",
"targets" : [
"QRCode"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "QRCodeStatic",
"targets" : [
"QRCode"
],
"type" : {
"library" : [
"static"
]
}
},
{
"name" : "QRCodeDynamic",
"targets" : [
"QRCode"
],
"type" : {
"library" : [
"dynamic"
]
}
},
{
"name" : "QRCodeDetector",
"targets" : [
"QRCodeDetector"
],
"type" : {
"library" : [
"dynamic"
]
}
},
{
"name" : "qrcodegen",
"targets" : [
"qrcodegen"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "qrcodegen",
"module_type" : "SwiftTarget",
"name" : "qrcodegen",
"path" : "Sources/qrcodegen",
"product_dependencies" : [
"ArgumentParser"
],
"product_memberships" : [
"qrcodegen"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/qrcodegen/PrivacyInfo.xcprivacy",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"main.swift",
"utils.swift"
],
"target_dependencies" : [
"QRCode"
],
"type" : "executable"
},
{
"c99name" : "QRCodeTests",
"module_type" : "SwiftTarget",
"name" : "QRCodeTests",
"path" : "Tests/QRCodeTests",
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/apple.png",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/b-image.jpg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/beach-square.jpg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/colored-fill-bw.jpg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/colored-fill-invert.jpg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/colored-fill.jpg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/corner-heart.png",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/example-com.jpg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/instagram-icon.png",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/lego.jpeg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/logo-mask.png",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/logo-scan.png",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/logo.png",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/nsw-health.jpg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/photo-logo.jpg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/qrcodes-image.jpg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/square-logo.png",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/svg/Issue19Generated.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/swift-logo.png",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/wiki-logo.png",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/wombles.jpeg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/QRCodeTests/Resources/wwf.jpeg",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"CGPathCoderTests.swift",
"ComponentsTests.swift",
"DocumentationImageTests.swift",
"QRCodeBugFixTests.swift",
"QRCodeBuilderTests.swift",
"QRCodeDetectionTests.swift",
"QRCodeDocGenerator.swift",
"QRCodeEncodeDecodeTests.swift",
"QRCodeExternalGenerationTests.swift",
"QRCodeEyeShapeTests.swift",
"QRCodeFillTests.swift",
"QRCodeImageFillTests.swift",
"QRCodeMaskingTests.swift",
"QRCodeMessageFormattingTests.swift",
"QRCodePathTests.swift",
"QRCodePixelInsetDocumentTests.swift",
"QRCodePixelInsetTests.swift",
"QRCodePixelRotationDocumentTests.swift",
"QRCodePixelRotationTests.swift",
"QRCodeSVGExportTests.swift",
"QRCodeTests.swift",
"QRCodeWatchOSTests.swift",
"QRLoadSaveTests.swift",
"ShadowTests.swift",
"TestFilesContainer.swift",
"Utils.swift"
],
"target_dependencies" : [
"QRCode"
],
"type" : "test"
},
{
"c99name" : "QRCodeDetector",
"module_type" : "SwiftTarget",
"name" : "QRCodeDetector",
"path" : "Sources/QRCodeDetector",
"product_memberships" : [
"QRCodeDetector"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/QRCodeDetector/PrivacyInfo.xcprivacy",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"QRCodeDetector+VideoDetector.swift"
],
"type" : "library"
},
{
"c99name" : "QRCode",
"module_type" : "SwiftTarget",
"name" : "QRCode",
"path" : "Sources/QRCode",
"product_dependencies" : [
"SwiftImageReadWrite",
"QRCodeGenerator"
],
"product_memberships" : [
"QRCode",
"QRCodeStatic",
"QRCodeDynamic",
"qrcodegen"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/QRCode/PrivacyInfo.xcprivacy",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"QRCode+ASCII.swift",
"QRCode+Builder.swift",
"QRCode+Combine.swift",
"QRCode+Content.swift",
"QRCode+Conveniences.swift",
"QRCode+Design.swift",
"QRCode+Detection.swift",
"QRCode+Document+Export.swift",
"QRCode+Document+LoadSave.swift",
"QRCode+Document.swift",
"QRCode+Drawing.swift",
"QRCode+Error.swift",
"QRCode+ErrorCorrection.swift",
"QRCode+FormattedContent.swift",
"QRCode+Image.swift",
"QRCode+Keys.swift",
"QRCode+LogoTemplate.swift",
"QRCode+Message.swift",
"QRCode+Pasteboard.swift",
"QRCode+Path.swift",
"QRCode+SVG.swift",
"QRCode+Shadow.swift",
"QRCode+Templating.swift",
"QRCode+Types.swift",
"QRCode+UTI.swift",
"QRCode.swift",
"generator/QRCodeEngine+CoreImage.swift",
"generator/QRCodeEngine.swift",
"generator/external/QRCodeEngine+External+Wrapper.swift",
"generator/external/QRCodeEngine+External.swift",
"message/QRCode+Message+Contact.swift",
"message/QRCode+Message+Data.swift",
"message/QRCode+Message+Event.swift",
"message/QRCode+Message+Link.swift",
"message/QRCode+Message+Location.swift",
"message/QRCode+Message+Mail.swift",
"message/QRCode+Message+Phone.swift",
"message/QRCode+Message+SMS.swift",
"message/QRCode+Message+Text.swift",
"private/Array2D.swift",
"private/BinaryFloatingPoint+extensions.swift",
"private/BoolMatrix.swift",
"private/CGColor+BackwardsCompatibility.swift",
"private/CGColor+extensions.swift",
"private/CGColor+hex.swift",
"private/CGContext+extensions.swift",
"private/CGFloat+extensions.swift",
"private/CGImage+diff.swift",
"private/CGImage+extensions.swift",
"private/CGMutablePath+PaintCodeHelpers.swift",
"private/CGPath+RoundedRectExtensions.swift",
"private/CGPath+SVG.swift",
"private/CGPath+codable.swift",
"private/CGPath+extensions.swift",
"private/CGPath+hexagon.swift",
"private/CGSize+extensions.swift",
"private/Clamp.swift",
"private/DSFGradient.swift",
"private/Debounce.swift",
"private/FileManager+extensions.swift",
"private/FixedWidthInteger+extensions.swift",
"private/NSBezierPath+extensions.swift",
"private/NSImage+extensions.swift",
"private/Neighbours.swift",
"private/Optional+extensions.swift",
"private/QRCode+Platform.swift",
"private/RandomNumberWithSeed.swift",
"private/String+extensions.swift",
"private/Utils.swift",
"styles/QRCode+Shape.swift",
"styles/QRCode+Style.swift",
"styles/data/QRCodePixelShape.swift",
"styles/data/QRCodePixelShapeAbstract.swift",
"styles/data/QRCodePixelShapeBlob.swift",
"styles/data/QRCodePixelShapeCircuit.swift",
"styles/data/QRCodePixelShapeCrosshatch.swift",
"styles/data/QRCodePixelShapeCurvePixel.swift",
"styles/data/QRCodePixelShapeDiagonalStripes.swift",
"styles/data/QRCodePixelShapeDonut.swift",
"styles/data/QRCodePixelShapeDripHorizontal.swift",
"styles/data/QRCodePixelShapeDripVertical.swift",
"styles/data/QRCodePixelShapeFactory.swift",
"styles/data/QRCodePixelShapeGrid.swift",
"styles/data/QRCodePixelShapeHorizontal.swift",
"styles/data/QRCodePixelShapePointy.swift",
"styles/data/QRCodePixelShapeRazor.swift",
"styles/data/QRCodePixelShapeRoundedEndIndent.swift",
"styles/data/QRCodePixelShapeRoundedPath.swift",
"styles/data/QRCodePixelShapeVertical.swift",
"styles/data/QRCodePixelShapeVortex.swift",
"styles/data/pixel/QRCodePixelShapeArrow.swift",
"styles/data/pixel/QRCodePixelShapeCRT.swift",
"styles/data/pixel/QRCodePixelShapeCircle.swift",
"styles/data/pixel/QRCodePixelShapeDiagonal.swift",
"styles/data/pixel/QRCodePixelShapeDiamond.swift",
"styles/data/pixel/QRCodePixelShapeFlame.swift",
"styles/data/pixel/QRCodePixelShapeFlower.swift",
"styles/data/pixel/QRCodePixelShapeGear.swift",
"styles/data/pixel/QRCodePixelShapeHeart.swift",
"styles/data/pixel/QRCodePixelShapeHexa.swift",
"styles/data/pixel/QRCodePixelShapeHexagon.swift",
"styles/data/pixel/QRCodePixelShapeKoala.swift",
"styles/data/pixel/QRCodePixelShapeLeaf.swift",
"styles/data/pixel/QRCodePixelShapeRoundedRect.swift",
"styles/data/pixel/QRCodePixelShapeRoundedTriangle.swift",
"styles/data/pixel/QRCodePixelShapeSharp.swift",
"styles/data/pixel/QRCodePixelShapeShiny.swift",
"styles/data/pixel/QRCodePixelShapeSpikyCircle.swift",
"styles/data/pixel/QRCodePixelShapeSquare.swift",
"styles/data/pixel/QRCodePixelShapeSquircle.swift",
"styles/data/pixel/QRCodePixelShapeStar.swift",
"styles/data/pixel/QRCodePixelShapeStitch.swift",
"styles/data/pixel/QRCodePixelShapeWave.swift",
"styles/data/pixel/QRCodePixelShapeWex.swift",
"styles/data/pixel/inset-generator/QRCodePixelShapeInset+Fixed.swift",
"styles/data/pixel/inset-generator/QRCodePixelShapeInset+Generator.swift",
"styles/data/pixel/inset-generator/QRCodePixelShapeInset+HorizontalWave.swift",
"styles/data/pixel/inset-generator/QRCodePixelShapeInset+Pinch.swift",
"styles/data/pixel/inset-generator/QRCodePixelShapeInset+Punch.swift",
"styles/data/pixel/inset-generator/QRCodePixelShapeInset+Random.swift",
"styles/data/pixel/inset-generator/QRCodePixelShapeInset+VerticalWave.swift",
"styles/data/pixel/private/QRCodePixelShapePixel.swift",
"styles/data/pixel/rotation-generator/QRCodePixelShapeRotation+Fixed.swift",
"styles/data/pixel/rotation-generator/QRCodePixelShapeRotation+Generator.swift",
"styles/data/pixel/rotation-generator/QRCodePixelShapeRotation+HWave.swift",
"styles/data/pixel/rotation-generator/QRCodePixelShapeRotation+Random.swift",
"styles/data/pixel/rotation-generator/QRCodePixelShapeRotation+VWave.swift",
"styles/eye/QRCodeEyeShape.swift",
"styles/eye/QRCodeEyeShapeArc.swift",
"styles/eye/QRCodeEyeShapeBarsHorizontal.swift",
"styles/eye/QRCodeEyeShapeBarsVertical.swift",
"styles/eye/QRCodeEyeShapeCRT.swift",
"styles/eye/QRCodeEyeShapeCircle.swift",
"styles/eye/QRCodeEyeShapeCloud.swift",
"styles/eye/QRCodeEyeShapeCloudCircle.swift",
"styles/eye/QRCodeEyeShapeCorneredPixels.swift",
"styles/eye/QRCodeEyeShapeDiagonalStripes.swift",
"styles/eye/QRCodeEyeShapeDotDrag.swift",
"styles/eye/QRCodeEyeShapeEdges.swift",
"styles/eye/QRCodeEyeShapeExplode.swift",
"styles/eye/QRCodeEyeShapeEye.swift",
"styles/eye/QRCodeEyeShapeFabricScissors.swift",
"styles/eye/QRCodeEyeShapeFactory.swift",
"styles/eye/QRCodeEyeShapeFireball.swift",
"styles/eye/QRCodeEyeShapeFlame.swift",
"styles/eye/QRCodeEyeShapeHeadlight.swift",
"styles/eye/QRCodeEyeShapeHolePunch.swift",
"styles/eye/QRCodeEyeShapeLeaf.swift",
"styles/eye/QRCodeEyeShapePeacock.swift",
"styles/eye/QRCodeEyeShapePinch.swift",
"styles/eye/QRCodeEyeShapePixels.swift",
"styles/eye/QRCodeEyeShapeRoundedOuter.swift",
"styles/eye/QRCodeEyeShapeRoundedPointingIn.swift",
"styles/eye/QRCodeEyeShapeRoundedPointingOut.swift",
"styles/eye/QRCodeEyeShapeRoundedRect.swift",
"styles/eye/QRCodeEyeShapeShield.swift",
"styles/eye/QRCodeEyeShapeSpikyCircle.swift",
"styles/eye/QRCodeEyeShapeSquare.swift",
"styles/eye/QRCodeEyeShapeSquarePeg.swift",
"styles/eye/QRCodeEyeShapeSquircle.swift",
"styles/eye/QRCodeEyeShapeSurroundingBars.swift",
"styles/eye/QRCodeEyeShapeTeardrop.swift",
"styles/eye/QRCodeEyeShapeUFO.swift",
"styles/eye/QRCodeEyeShapeUFORounded.swift",
"styles/eye/QRCodeEyeShapeUsePixelShape.swift",
"styles/fill/QRCodeFillStyle.swift",
"styles/fill/QRCodeFillStyleFactory.swift",
"styles/fill/QRCodeFillStyleImage.swift",
"styles/fill/QRCodeFillStyleLinearGradient.swift",
"styles/fill/QRCodeFillStyleRadialGradient.swift",
"styles/fill/QRCodeFillStyleSolid.swift",
"styles/pupil/QRCodePupilShape.swift",
"styles/pupil/QRCodePupilShapeArc.swift",
"styles/pupil/QRCodePupilShapeArrow.swift",
"styles/pupil/QRCodePupilShapeBarsHorizontal.swift",
"styles/pupil/QRCodePupilShapeBarsVertical.swift",
"styles/pupil/QRCodePupilShapeBlade.swift",
"styles/pupil/QRCodePupilShapeBlobby.swift",
"styles/pupil/QRCodePupilShapeCRT.swift",
"styles/pupil/QRCodePupilShapeCircle.swift",
"styles/pupil/QRCodePupilShapeCloud.swift",
"styles/pupil/QRCodePupilShapeCloudCircle.swift",
"styles/pupil/QRCodePupilShapeCorneredPixels.swift",
"styles/pupil/QRCodePupilShapeCross.swift",
"styles/pupil/QRCodePupilShapeCrossCurved.swift",
"styles/pupil/QRCodePupilShapeDiagonalStripes.swift",
"styles/pupil/QRCodePupilShapeDotDrag.swift",
"styles/pupil/QRCodePupilShapeEdges.swift",
"styles/pupil/QRCodePupilShapeExplode.swift",
"styles/pupil/QRCodePupilShapeFabricScissors.swift",
"styles/pupil/QRCodePupilShapeFactory.swift",
"styles/pupil/QRCodePupilShapeFlame.swift",
"styles/pupil/QRCodePupilShapeForest.swift",
"styles/pupil/QRCodePupilShapeGear.swift",
"styles/pupil/QRCodePupilShapeHeart.swift",
"styles/pupil/QRCodePupilShapeHexagonLeaf.swift",
"styles/pupil/QRCodePupilShapeKoala.swift",
"styles/pupil/QRCodePupilShapeLeaf.swift",
"styles/pupil/QRCodePupilShapeOrbits.swift",
"styles/pupil/QRCodePupilShapePinch.swift",
"styles/pupil/QRCodePupilShapePixels.swift",
"styles/pupil/QRCodePupilShapeRoundedOuter.swift",
"styles/pupil/QRCodePupilShapeRoundedPointingIn.swift",
"styles/pupil/QRCodePupilShapeRoundedPointingOut.swift",
"styles/pupil/QRCodePupilShapeRoundedRect.swift",
"styles/pupil/QRCodePupilShapeSeal.swift",
"styles/pupil/QRCodePupilShapeShield.swift",
"styles/pupil/QRCodePupilShapeSpikyCircle.swift",
"styles/pupil/QRCodePupilShapeSquare.swift",
"styles/pupil/QRCodePupilShapeSquircle.swift",
"styles/pupil/QRCodePupilShapeTeardrop.swift",
"styles/pupil/QRCodePupilShapeUFO.swift",
"styles/pupil/QRCodePupilShapeUFORounded.swift",
"styles/pupil/QRCodePupilShapeUsePixelShape.swift",
"views/QRCodeDocumentView+AppKit.swift",
"views/QRCodeDocumentView+UIKit.swift",
"views/QRCodeView.swift",
"views/SwiftUI/QRCodeDocumentUIView.swift",
"views/SwiftUI/QRCodeShape.swift",
"views/SwiftUI/QRCodeViewUI.swift"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
Done.