The Swift Package Index logo.Swift Package Index

Build Information

Successful build of LCARSDisplayKit, reference 3.0.0-beta.3 (c30da6), with Swift 6.1 for macOS (SPM) on 7 Dec 2025 23:51:39 UTC.

Swift 6 data race errors: 21

Build Command

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

Build Log

43 |     public static let arc19: Self = Radial(start: 333.5, end: 350.5)
44 |     public static let arc20: Self = Radial(start: 351.5, end: 8.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:43:23: warning: static property 'arc19' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
41 |     public static let arc17: Self = Radial(start: 297.5, end: 314.5)
42 |     public static let arc18: Self = Radial(start: 315.5, end: 332.5)
43 |     public static let arc19: Self = Radial(start: 333.5, end: 350.5)
   |                       |- warning: static property 'arc19' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc19' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     public static let arc20: Self = Radial(start: 351.5, end: 8.5)
45 | }
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:44:23: warning: static property 'arc20' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
42 |     public static let arc18: Self = Radial(start: 315.5, end: 332.5)
43 |     public static let arc19: Self = Radial(start: 333.5, end: 350.5)
44 |     public static let arc20: Self = Radial(start: 351.5, end: 8.5)
   |                       |- warning: static property 'arc20' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc20' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | }
46 |
[63/93] Compiling LCARSDisplayKit Pigment+LCARSDisplayKit.swift
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:25:23: warning: static property 'arc01' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
23 |     }
24 |
25 |     public static let arc01: Self = Radial(start: 9.5, end: 26.5)
   |                       |- warning: static property 'arc01' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc01' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let arc02: Self = Radial(start: 27.5, end: 44.5)
27 |     public static let arc03: Self = Radial(start: 45.5, end: 62.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:26:23: warning: static property 'arc02' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
24 |
25 |     public static let arc01: Self = Radial(start: 9.5, end: 26.5)
26 |     public static let arc02: Self = Radial(start: 27.5, end: 44.5)
   |                       |- warning: static property 'arc02' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc02' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let arc03: Self = Radial(start: 45.5, end: 62.5)
28 |     public static let arc04: Self = Radial(start: 63.5, end: 80.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:27:23: warning: static property 'arc03' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
25 |     public static let arc01: Self = Radial(start: 9.5, end: 26.5)
26 |     public static let arc02: Self = Radial(start: 27.5, end: 44.5)
27 |     public static let arc03: Self = Radial(start: 45.5, end: 62.5)
   |                       |- warning: static property 'arc03' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc03' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let arc04: Self = Radial(start: 63.5, end: 80.5)
29 |     public static let arc05: Self = Radial(start: 81.5, end: 98.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:28:23: warning: static property 'arc04' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
26 |     public static let arc02: Self = Radial(start: 27.5, end: 44.5)
27 |     public static let arc03: Self = Radial(start: 45.5, end: 62.5)
28 |     public static let arc04: Self = Radial(start: 63.5, end: 80.5)
   |                       |- warning: static property 'arc04' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc04' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     public static let arc05: Self = Radial(start: 81.5, end: 98.5)
30 |     public static let arc06: Self = Radial(start: 99.5, end: 116.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:29:23: warning: static property 'arc05' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
27 |     public static let arc03: Self = Radial(start: 45.5, end: 62.5)
28 |     public static let arc04: Self = Radial(start: 63.5, end: 80.5)
29 |     public static let arc05: Self = Radial(start: 81.5, end: 98.5)
   |                       |- warning: static property 'arc05' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc05' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |     public static let arc06: Self = Radial(start: 99.5, end: 116.5)
31 |     public static let arc07: Self = Radial(start: 117.5, end: 134.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:30:23: warning: static property 'arc06' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
28 |     public static let arc04: Self = Radial(start: 63.5, end: 80.5)
29 |     public static let arc05: Self = Radial(start: 81.5, end: 98.5)
30 |     public static let arc06: Self = Radial(start: 99.5, end: 116.5)
   |                       |- warning: static property 'arc06' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc06' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |     public static let arc07: Self = Radial(start: 117.5, end: 134.5)
32 |     public static let arc08: Self = Radial(start: 135.5, end: 152.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:31:23: warning: static property 'arc07' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
29 |     public static let arc05: Self = Radial(start: 81.5, end: 98.5)
30 |     public static let arc06: Self = Radial(start: 99.5, end: 116.5)
31 |     public static let arc07: Self = Radial(start: 117.5, end: 134.5)
   |                       |- warning: static property 'arc07' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc07' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     public static let arc08: Self = Radial(start: 135.5, end: 152.5)
33 |     public static let arc09: Self = Radial(start: 153.5, end: 170.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:32:23: warning: static property 'arc08' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
30 |     public static let arc06: Self = Radial(start: 99.5, end: 116.5)
31 |     public static let arc07: Self = Radial(start: 117.5, end: 134.5)
32 |     public static let arc08: Self = Radial(start: 135.5, end: 152.5)
   |                       |- warning: static property 'arc08' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc08' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     public static let arc09: Self = Radial(start: 153.5, end: 170.5)
34 |     public static let arc10: Self = Radial(start: 171.5, end: 188.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:33:23: warning: static property 'arc09' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
31 |     public static let arc07: Self = Radial(start: 117.5, end: 134.5)
32 |     public static let arc08: Self = Radial(start: 135.5, end: 152.5)
33 |     public static let arc09: Self = Radial(start: 153.5, end: 170.5)
   |                       |- warning: static property 'arc09' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc09' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     public static let arc10: Self = Radial(start: 171.5, end: 188.5)
35 |     public static let arc11: Self = Radial(start: 189.5, end: 206.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:34:23: warning: static property 'arc10' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
32 |     public static let arc08: Self = Radial(start: 135.5, end: 152.5)
33 |     public static let arc09: Self = Radial(start: 153.5, end: 170.5)
34 |     public static let arc10: Self = Radial(start: 171.5, end: 188.5)
   |                       |- warning: static property 'arc10' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc10' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |     public static let arc11: Self = Radial(start: 189.5, end: 206.5)
36 |     public static let arc12: Self = Radial(start: 207.5, end: 224.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:35:23: warning: static property 'arc11' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
33 |     public static let arc09: Self = Radial(start: 153.5, end: 170.5)
34 |     public static let arc10: Self = Radial(start: 171.5, end: 188.5)
35 |     public static let arc11: Self = Radial(start: 189.5, end: 206.5)
   |                       |- warning: static property 'arc11' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc11' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     public static let arc12: Self = Radial(start: 207.5, end: 224.5)
37 |     public static let arc13: Self = Radial(start: 225.5, end: 242.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:36:23: warning: static property 'arc12' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
34 |     public static let arc10: Self = Radial(start: 171.5, end: 188.5)
35 |     public static let arc11: Self = Radial(start: 189.5, end: 206.5)
36 |     public static let arc12: Self = Radial(start: 207.5, end: 224.5)
   |                       |- warning: static property 'arc12' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc12' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |     public static let arc13: Self = Radial(start: 225.5, end: 242.5)
38 |     public static let arc14: Self = Radial(start: 243.5, end: 260.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:37:23: warning: static property 'arc13' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
35 |     public static let arc11: Self = Radial(start: 189.5, end: 206.5)
36 |     public static let arc12: Self = Radial(start: 207.5, end: 224.5)
37 |     public static let arc13: Self = Radial(start: 225.5, end: 242.5)
   |                       |- warning: static property 'arc13' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc13' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |     public static let arc14: Self = Radial(start: 243.5, end: 260.5)
39 |     public static let arc15: Self = Radial(start: 261.5, end: 278.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:38:23: warning: static property 'arc14' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
36 |     public static let arc12: Self = Radial(start: 207.5, end: 224.5)
37 |     public static let arc13: Self = Radial(start: 225.5, end: 242.5)
38 |     public static let arc14: Self = Radial(start: 243.5, end: 260.5)
   |                       |- warning: static property 'arc14' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc14' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |     public static let arc15: Self = Radial(start: 261.5, end: 278.5)
40 |     public static let arc16: Self = Radial(start: 279.5, end: 296.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:39:23: warning: static property 'arc15' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
37 |     public static let arc13: Self = Radial(start: 225.5, end: 242.5)
38 |     public static let arc14: Self = Radial(start: 243.5, end: 260.5)
39 |     public static let arc15: Self = Radial(start: 261.5, end: 278.5)
   |                       |- warning: static property 'arc15' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc15' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |     public static let arc16: Self = Radial(start: 279.5, end: 296.5)
41 |     public static let arc17: Self = Radial(start: 297.5, end: 314.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:40:23: warning: static property 'arc16' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
38 |     public static let arc14: Self = Radial(start: 243.5, end: 260.5)
39 |     public static let arc15: Self = Radial(start: 261.5, end: 278.5)
40 |     public static let arc16: Self = Radial(start: 279.5, end: 296.5)
   |                       |- warning: static property 'arc16' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc16' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |     public static let arc17: Self = Radial(start: 297.5, end: 314.5)
42 |     public static let arc18: Self = Radial(start: 315.5, end: 332.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:41:23: warning: static property 'arc17' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
39 |     public static let arc15: Self = Radial(start: 261.5, end: 278.5)
40 |     public static let arc16: Self = Radial(start: 279.5, end: 296.5)
41 |     public static let arc17: Self = Radial(start: 297.5, end: 314.5)
   |                       |- warning: static property 'arc17' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc17' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     public static let arc18: Self = Radial(start: 315.5, end: 332.5)
43 |     public static let arc19: Self = Radial(start: 333.5, end: 350.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:42:23: warning: static property 'arc18' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
40 |     public static let arc16: Self = Radial(start: 279.5, end: 296.5)
41 |     public static let arc17: Self = Radial(start: 297.5, end: 314.5)
42 |     public static let arc18: Self = Radial(start: 315.5, end: 332.5)
   |                       |- warning: static property 'arc18' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc18' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     public static let arc19: Self = Radial(start: 333.5, end: 350.5)
44 |     public static let arc20: Self = Radial(start: 351.5, end: 8.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:43:23: warning: static property 'arc19' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
41 |     public static let arc17: Self = Radial(start: 297.5, end: 314.5)
42 |     public static let arc18: Self = Radial(start: 315.5, end: 332.5)
43 |     public static let arc19: Self = Radial(start: 333.5, end: 350.5)
   |                       |- warning: static property 'arc19' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc19' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     public static let arc20: Self = Radial(start: 351.5, end: 8.5)
45 | }
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:44:23: warning: static property 'arc20' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
42 |     public static let arc18: Self = Radial(start: 315.5, end: 332.5)
43 |     public static let arc19: Self = Radial(start: 333.5, end: 350.5)
44 |     public static let arc20: Self = Radial(start: 351.5, end: 8.5)
   |                       |- warning: static property 'arc20' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc20' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | }
46 |
[64/93] Compiling LCARSDisplayKit Size+LCARSDisplayKit.swift
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:25:23: warning: static property 'arc01' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
23 |     }
24 |
25 |     public static let arc01: Self = Radial(start: 9.5, end: 26.5)
   |                       |- warning: static property 'arc01' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc01' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let arc02: Self = Radial(start: 27.5, end: 44.5)
27 |     public static let arc03: Self = Radial(start: 45.5, end: 62.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:26:23: warning: static property 'arc02' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
24 |
25 |     public static let arc01: Self = Radial(start: 9.5, end: 26.5)
26 |     public static let arc02: Self = Radial(start: 27.5, end: 44.5)
   |                       |- warning: static property 'arc02' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc02' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let arc03: Self = Radial(start: 45.5, end: 62.5)
28 |     public static let arc04: Self = Radial(start: 63.5, end: 80.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:27:23: warning: static property 'arc03' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
25 |     public static let arc01: Self = Radial(start: 9.5, end: 26.5)
26 |     public static let arc02: Self = Radial(start: 27.5, end: 44.5)
27 |     public static let arc03: Self = Radial(start: 45.5, end: 62.5)
   |                       |- warning: static property 'arc03' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc03' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let arc04: Self = Radial(start: 63.5, end: 80.5)
29 |     public static let arc05: Self = Radial(start: 81.5, end: 98.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:28:23: warning: static property 'arc04' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
26 |     public static let arc02: Self = Radial(start: 27.5, end: 44.5)
27 |     public static let arc03: Self = Radial(start: 45.5, end: 62.5)
28 |     public static let arc04: Self = Radial(start: 63.5, end: 80.5)
   |                       |- warning: static property 'arc04' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc04' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     public static let arc05: Self = Radial(start: 81.5, end: 98.5)
30 |     public static let arc06: Self = Radial(start: 99.5, end: 116.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:29:23: warning: static property 'arc05' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
27 |     public static let arc03: Self = Radial(start: 45.5, end: 62.5)
28 |     public static let arc04: Self = Radial(start: 63.5, end: 80.5)
29 |     public static let arc05: Self = Radial(start: 81.5, end: 98.5)
   |                       |- warning: static property 'arc05' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc05' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |     public static let arc06: Self = Radial(start: 99.5, end: 116.5)
31 |     public static let arc07: Self = Radial(start: 117.5, end: 134.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:30:23: warning: static property 'arc06' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
28 |     public static let arc04: Self = Radial(start: 63.5, end: 80.5)
29 |     public static let arc05: Self = Radial(start: 81.5, end: 98.5)
30 |     public static let arc06: Self = Radial(start: 99.5, end: 116.5)
   |                       |- warning: static property 'arc06' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc06' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |     public static let arc07: Self = Radial(start: 117.5, end: 134.5)
32 |     public static let arc08: Self = Radial(start: 135.5, end: 152.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:31:23: warning: static property 'arc07' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
29 |     public static let arc05: Self = Radial(start: 81.5, end: 98.5)
30 |     public static let arc06: Self = Radial(start: 99.5, end: 116.5)
31 |     public static let arc07: Self = Radial(start: 117.5, end: 134.5)
   |                       |- warning: static property 'arc07' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc07' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     public static let arc08: Self = Radial(start: 135.5, end: 152.5)
33 |     public static let arc09: Self = Radial(start: 153.5, end: 170.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:32:23: warning: static property 'arc08' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
30 |     public static let arc06: Self = Radial(start: 99.5, end: 116.5)
31 |     public static let arc07: Self = Radial(start: 117.5, end: 134.5)
32 |     public static let arc08: Self = Radial(start: 135.5, end: 152.5)
   |                       |- warning: static property 'arc08' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc08' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     public static let arc09: Self = Radial(start: 153.5, end: 170.5)
34 |     public static let arc10: Self = Radial(start: 171.5, end: 188.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:33:23: warning: static property 'arc09' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
31 |     public static let arc07: Self = Radial(start: 117.5, end: 134.5)
32 |     public static let arc08: Self = Radial(start: 135.5, end: 152.5)
33 |     public static let arc09: Self = Radial(start: 153.5, end: 170.5)
   |                       |- warning: static property 'arc09' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc09' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     public static let arc10: Self = Radial(start: 171.5, end: 188.5)
35 |     public static let arc11: Self = Radial(start: 189.5, end: 206.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:34:23: warning: static property 'arc10' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
32 |     public static let arc08: Self = Radial(start: 135.5, end: 152.5)
33 |     public static let arc09: Self = Radial(start: 153.5, end: 170.5)
34 |     public static let arc10: Self = Radial(start: 171.5, end: 188.5)
   |                       |- warning: static property 'arc10' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc10' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |     public static let arc11: Self = Radial(start: 189.5, end: 206.5)
36 |     public static let arc12: Self = Radial(start: 207.5, end: 224.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:35:23: warning: static property 'arc11' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
33 |     public static let arc09: Self = Radial(start: 153.5, end: 170.5)
34 |     public static let arc10: Self = Radial(start: 171.5, end: 188.5)
35 |     public static let arc11: Self = Radial(start: 189.5, end: 206.5)
   |                       |- warning: static property 'arc11' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc11' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     public static let arc12: Self = Radial(start: 207.5, end: 224.5)
37 |     public static let arc13: Self = Radial(start: 225.5, end: 242.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:36:23: warning: static property 'arc12' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
34 |     public static let arc10: Self = Radial(start: 171.5, end: 188.5)
35 |     public static let arc11: Self = Radial(start: 189.5, end: 206.5)
36 |     public static let arc12: Self = Radial(start: 207.5, end: 224.5)
   |                       |- warning: static property 'arc12' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc12' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |     public static let arc13: Self = Radial(start: 225.5, end: 242.5)
38 |     public static let arc14: Self = Radial(start: 243.5, end: 260.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:37:23: warning: static property 'arc13' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
35 |     public static let arc11: Self = Radial(start: 189.5, end: 206.5)
36 |     public static let arc12: Self = Radial(start: 207.5, end: 224.5)
37 |     public static let arc13: Self = Radial(start: 225.5, end: 242.5)
   |                       |- warning: static property 'arc13' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc13' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |     public static let arc14: Self = Radial(start: 243.5, end: 260.5)
39 |     public static let arc15: Self = Radial(start: 261.5, end: 278.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:38:23: warning: static property 'arc14' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
36 |     public static let arc12: Self = Radial(start: 207.5, end: 224.5)
37 |     public static let arc13: Self = Radial(start: 225.5, end: 242.5)
38 |     public static let arc14: Self = Radial(start: 243.5, end: 260.5)
   |                       |- warning: static property 'arc14' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc14' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |     public static let arc15: Self = Radial(start: 261.5, end: 278.5)
40 |     public static let arc16: Self = Radial(start: 279.5, end: 296.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:39:23: warning: static property 'arc15' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
37 |     public static let arc13: Self = Radial(start: 225.5, end: 242.5)
38 |     public static let arc14: Self = Radial(start: 243.5, end: 260.5)
39 |     public static let arc15: Self = Radial(start: 261.5, end: 278.5)
   |                       |- warning: static property 'arc15' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc15' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |     public static let arc16: Self = Radial(start: 279.5, end: 296.5)
41 |     public static let arc17: Self = Radial(start: 297.5, end: 314.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:40:23: warning: static property 'arc16' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
38 |     public static let arc14: Self = Radial(start: 243.5, end: 260.5)
39 |     public static let arc15: Self = Radial(start: 261.5, end: 278.5)
40 |     public static let arc16: Self = Radial(start: 279.5, end: 296.5)
   |                       |- warning: static property 'arc16' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc16' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |     public static let arc17: Self = Radial(start: 297.5, end: 314.5)
42 |     public static let arc18: Self = Radial(start: 315.5, end: 332.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:41:23: warning: static property 'arc17' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
39 |     public static let arc15: Self = Radial(start: 261.5, end: 278.5)
40 |     public static let arc16: Self = Radial(start: 279.5, end: 296.5)
41 |     public static let arc17: Self = Radial(start: 297.5, end: 314.5)
   |                       |- warning: static property 'arc17' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc17' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     public static let arc18: Self = Radial(start: 315.5, end: 332.5)
43 |     public static let arc19: Self = Radial(start: 333.5, end: 350.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:42:23: warning: static property 'arc18' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
40 |     public static let arc16: Self = Radial(start: 279.5, end: 296.5)
41 |     public static let arc17: Self = Radial(start: 297.5, end: 314.5)
42 |     public static let arc18: Self = Radial(start: 315.5, end: 332.5)
   |                       |- warning: static property 'arc18' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc18' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     public static let arc19: Self = Radial(start: 333.5, end: 350.5)
44 |     public static let arc20: Self = Radial(start: 351.5, end: 8.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:43:23: warning: static property 'arc19' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
41 |     public static let arc17: Self = Radial(start: 297.5, end: 314.5)
42 |     public static let arc18: Self = Radial(start: 315.5, end: 332.5)
43 |     public static let arc19: Self = Radial(start: 333.5, end: 350.5)
   |                       |- warning: static property 'arc19' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc19' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     public static let arc20: Self = Radial(start: 351.5, end: 8.5)
45 | }
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:44:23: warning: static property 'arc20' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
42 |     public static let arc18: Self = Radial(start: 315.5, end: 332.5)
43 |     public static let arc19: Self = Radial(start: 333.5, end: 350.5)
44 |     public static let arc20: Self = Radial(start: 351.5, end: 8.5)
   |                       |- warning: static property 'arc20' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc20' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | }
46 |
[65/93] Compiling LCARSDisplayKit Radial.swift
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:25:23: warning: static property 'arc01' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
23 |     }
24 |
25 |     public static let arc01: Self = Radial(start: 9.5, end: 26.5)
   |                       |- warning: static property 'arc01' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc01' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let arc02: Self = Radial(start: 27.5, end: 44.5)
27 |     public static let arc03: Self = Radial(start: 45.5, end: 62.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:26:23: warning: static property 'arc02' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
24 |
25 |     public static let arc01: Self = Radial(start: 9.5, end: 26.5)
26 |     public static let arc02: Self = Radial(start: 27.5, end: 44.5)
   |                       |- warning: static property 'arc02' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc02' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let arc03: Self = Radial(start: 45.5, end: 62.5)
28 |     public static let arc04: Self = Radial(start: 63.5, end: 80.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:27:23: warning: static property 'arc03' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
25 |     public static let arc01: Self = Radial(start: 9.5, end: 26.5)
26 |     public static let arc02: Self = Radial(start: 27.5, end: 44.5)
27 |     public static let arc03: Self = Radial(start: 45.5, end: 62.5)
   |                       |- warning: static property 'arc03' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc03' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let arc04: Self = Radial(start: 63.5, end: 80.5)
29 |     public static let arc05: Self = Radial(start: 81.5, end: 98.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:28:23: warning: static property 'arc04' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
26 |     public static let arc02: Self = Radial(start: 27.5, end: 44.5)
27 |     public static let arc03: Self = Radial(start: 45.5, end: 62.5)
28 |     public static let arc04: Self = Radial(start: 63.5, end: 80.5)
   |                       |- warning: static property 'arc04' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc04' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     public static let arc05: Self = Radial(start: 81.5, end: 98.5)
30 |     public static let arc06: Self = Radial(start: 99.5, end: 116.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:29:23: warning: static property 'arc05' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
27 |     public static let arc03: Self = Radial(start: 45.5, end: 62.5)
28 |     public static let arc04: Self = Radial(start: 63.5, end: 80.5)
29 |     public static let arc05: Self = Radial(start: 81.5, end: 98.5)
   |                       |- warning: static property 'arc05' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc05' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |     public static let arc06: Self = Radial(start: 99.5, end: 116.5)
31 |     public static let arc07: Self = Radial(start: 117.5, end: 134.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:30:23: warning: static property 'arc06' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
28 |     public static let arc04: Self = Radial(start: 63.5, end: 80.5)
29 |     public static let arc05: Self = Radial(start: 81.5, end: 98.5)
30 |     public static let arc06: Self = Radial(start: 99.5, end: 116.5)
   |                       |- warning: static property 'arc06' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc06' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |     public static let arc07: Self = Radial(start: 117.5, end: 134.5)
32 |     public static let arc08: Self = Radial(start: 135.5, end: 152.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:31:23: warning: static property 'arc07' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
29 |     public static let arc05: Self = Radial(start: 81.5, end: 98.5)
30 |     public static let arc06: Self = Radial(start: 99.5, end: 116.5)
31 |     public static let arc07: Self = Radial(start: 117.5, end: 134.5)
   |                       |- warning: static property 'arc07' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc07' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     public static let arc08: Self = Radial(start: 135.5, end: 152.5)
33 |     public static let arc09: Self = Radial(start: 153.5, end: 170.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:32:23: warning: static property 'arc08' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
30 |     public static let arc06: Self = Radial(start: 99.5, end: 116.5)
31 |     public static let arc07: Self = Radial(start: 117.5, end: 134.5)
32 |     public static let arc08: Self = Radial(start: 135.5, end: 152.5)
   |                       |- warning: static property 'arc08' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc08' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     public static let arc09: Self = Radial(start: 153.5, end: 170.5)
34 |     public static let arc10: Self = Radial(start: 171.5, end: 188.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:33:23: warning: static property 'arc09' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
31 |     public static let arc07: Self = Radial(start: 117.5, end: 134.5)
32 |     public static let arc08: Self = Radial(start: 135.5, end: 152.5)
33 |     public static let arc09: Self = Radial(start: 153.5, end: 170.5)
   |                       |- warning: static property 'arc09' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc09' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     public static let arc10: Self = Radial(start: 171.5, end: 188.5)
35 |     public static let arc11: Self = Radial(start: 189.5, end: 206.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:34:23: warning: static property 'arc10' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
32 |     public static let arc08: Self = Radial(start: 135.5, end: 152.5)
33 |     public static let arc09: Self = Radial(start: 153.5, end: 170.5)
34 |     public static let arc10: Self = Radial(start: 171.5, end: 188.5)
   |                       |- warning: static property 'arc10' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc10' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |     public static let arc11: Self = Radial(start: 189.5, end: 206.5)
36 |     public static let arc12: Self = Radial(start: 207.5, end: 224.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:35:23: warning: static property 'arc11' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
33 |     public static let arc09: Self = Radial(start: 153.5, end: 170.5)
34 |     public static let arc10: Self = Radial(start: 171.5, end: 188.5)
35 |     public static let arc11: Self = Radial(start: 189.5, end: 206.5)
   |                       |- warning: static property 'arc11' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc11' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     public static let arc12: Self = Radial(start: 207.5, end: 224.5)
37 |     public static let arc13: Self = Radial(start: 225.5, end: 242.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:36:23: warning: static property 'arc12' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
34 |     public static let arc10: Self = Radial(start: 171.5, end: 188.5)
35 |     public static let arc11: Self = Radial(start: 189.5, end: 206.5)
36 |     public static let arc12: Self = Radial(start: 207.5, end: 224.5)
   |                       |- warning: static property 'arc12' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc12' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |     public static let arc13: Self = Radial(start: 225.5, end: 242.5)
38 |     public static let arc14: Self = Radial(start: 243.5, end: 260.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:37:23: warning: static property 'arc13' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
35 |     public static let arc11: Self = Radial(start: 189.5, end: 206.5)
36 |     public static let arc12: Self = Radial(start: 207.5, end: 224.5)
37 |     public static let arc13: Self = Radial(start: 225.5, end: 242.5)
   |                       |- warning: static property 'arc13' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc13' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |     public static let arc14: Self = Radial(start: 243.5, end: 260.5)
39 |     public static let arc15: Self = Radial(start: 261.5, end: 278.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:38:23: warning: static property 'arc14' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
36 |     public static let arc12: Self = Radial(start: 207.5, end: 224.5)
37 |     public static let arc13: Self = Radial(start: 225.5, end: 242.5)
38 |     public static let arc14: Self = Radial(start: 243.5, end: 260.5)
   |                       |- warning: static property 'arc14' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc14' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |     public static let arc15: Self = Radial(start: 261.5, end: 278.5)
40 |     public static let arc16: Self = Radial(start: 279.5, end: 296.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:39:23: warning: static property 'arc15' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
37 |     public static let arc13: Self = Radial(start: 225.5, end: 242.5)
38 |     public static let arc14: Self = Radial(start: 243.5, end: 260.5)
39 |     public static let arc15: Self = Radial(start: 261.5, end: 278.5)
   |                       |- warning: static property 'arc15' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc15' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |     public static let arc16: Self = Radial(start: 279.5, end: 296.5)
41 |     public static let arc17: Self = Radial(start: 297.5, end: 314.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:40:23: warning: static property 'arc16' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
38 |     public static let arc14: Self = Radial(start: 243.5, end: 260.5)
39 |     public static let arc15: Self = Radial(start: 261.5, end: 278.5)
40 |     public static let arc16: Self = Radial(start: 279.5, end: 296.5)
   |                       |- warning: static property 'arc16' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc16' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |     public static let arc17: Self = Radial(start: 297.5, end: 314.5)
42 |     public static let arc18: Self = Radial(start: 315.5, end: 332.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:41:23: warning: static property 'arc17' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
39 |     public static let arc15: Self = Radial(start: 261.5, end: 278.5)
40 |     public static let arc16: Self = Radial(start: 279.5, end: 296.5)
41 |     public static let arc17: Self = Radial(start: 297.5, end: 314.5)
   |                       |- warning: static property 'arc17' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc17' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     public static let arc18: Self = Radial(start: 315.5, end: 332.5)
43 |     public static let arc19: Self = Radial(start: 333.5, end: 350.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:42:23: warning: static property 'arc18' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
40 |     public static let arc16: Self = Radial(start: 279.5, end: 296.5)
41 |     public static let arc17: Self = Radial(start: 297.5, end: 314.5)
42 |     public static let arc18: Self = Radial(start: 315.5, end: 332.5)
   |                       |- warning: static property 'arc18' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc18' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     public static let arc19: Self = Radial(start: 333.5, end: 350.5)
44 |     public static let arc20: Self = Radial(start: 351.5, end: 8.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:43:23: warning: static property 'arc19' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
41 |     public static let arc17: Self = Radial(start: 297.5, end: 314.5)
42 |     public static let arc18: Self = Radial(start: 315.5, end: 332.5)
43 |     public static let arc19: Self = Radial(start: 333.5, end: 350.5)
   |                       |- warning: static property 'arc19' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc19' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     public static let arc20: Self = Radial(start: 351.5, end: 8.5)
45 | }
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:44:23: warning: static property 'arc20' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
42 |     public static let arc18: Self = Radial(start: 315.5, end: 332.5)
43 |     public static let arc19: Self = Radial(start: 333.5, end: 350.5)
44 |     public static let arc20: Self = Radial(start: 351.5, end: 8.5)
   |                       |- warning: static property 'arc20' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc20' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | }
46 |
[66/93] Compiling LCARSDisplayKit Rounding.swift
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:25:23: warning: static property 'arc01' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
23 |     }
24 |
25 |     public static let arc01: Self = Radial(start: 9.5, end: 26.5)
   |                       |- warning: static property 'arc01' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc01' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let arc02: Self = Radial(start: 27.5, end: 44.5)
27 |     public static let arc03: Self = Radial(start: 45.5, end: 62.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:26:23: warning: static property 'arc02' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
24 |
25 |     public static let arc01: Self = Radial(start: 9.5, end: 26.5)
26 |     public static let arc02: Self = Radial(start: 27.5, end: 44.5)
   |                       |- warning: static property 'arc02' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc02' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let arc03: Self = Radial(start: 45.5, end: 62.5)
28 |     public static let arc04: Self = Radial(start: 63.5, end: 80.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:27:23: warning: static property 'arc03' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
25 |     public static let arc01: Self = Radial(start: 9.5, end: 26.5)
26 |     public static let arc02: Self = Radial(start: 27.5, end: 44.5)
27 |     public static let arc03: Self = Radial(start: 45.5, end: 62.5)
   |                       |- warning: static property 'arc03' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc03' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let arc04: Self = Radial(start: 63.5, end: 80.5)
29 |     public static let arc05: Self = Radial(start: 81.5, end: 98.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:28:23: warning: static property 'arc04' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
26 |     public static let arc02: Self = Radial(start: 27.5, end: 44.5)
27 |     public static let arc03: Self = Radial(start: 45.5, end: 62.5)
28 |     public static let arc04: Self = Radial(start: 63.5, end: 80.5)
   |                       |- warning: static property 'arc04' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc04' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     public static let arc05: Self = Radial(start: 81.5, end: 98.5)
30 |     public static let arc06: Self = Radial(start: 99.5, end: 116.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:29:23: warning: static property 'arc05' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
27 |     public static let arc03: Self = Radial(start: 45.5, end: 62.5)
28 |     public static let arc04: Self = Radial(start: 63.5, end: 80.5)
29 |     public static let arc05: Self = Radial(start: 81.5, end: 98.5)
   |                       |- warning: static property 'arc05' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc05' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |     public static let arc06: Self = Radial(start: 99.5, end: 116.5)
31 |     public static let arc07: Self = Radial(start: 117.5, end: 134.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:30:23: warning: static property 'arc06' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
28 |     public static let arc04: Self = Radial(start: 63.5, end: 80.5)
29 |     public static let arc05: Self = Radial(start: 81.5, end: 98.5)
30 |     public static let arc06: Self = Radial(start: 99.5, end: 116.5)
   |                       |- warning: static property 'arc06' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc06' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |     public static let arc07: Self = Radial(start: 117.5, end: 134.5)
32 |     public static let arc08: Self = Radial(start: 135.5, end: 152.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:31:23: warning: static property 'arc07' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
29 |     public static let arc05: Self = Radial(start: 81.5, end: 98.5)
30 |     public static let arc06: Self = Radial(start: 99.5, end: 116.5)
31 |     public static let arc07: Self = Radial(start: 117.5, end: 134.5)
   |                       |- warning: static property 'arc07' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc07' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     public static let arc08: Self = Radial(start: 135.5, end: 152.5)
33 |     public static let arc09: Self = Radial(start: 153.5, end: 170.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:32:23: warning: static property 'arc08' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
30 |     public static let arc06: Self = Radial(start: 99.5, end: 116.5)
31 |     public static let arc07: Self = Radial(start: 117.5, end: 134.5)
32 |     public static let arc08: Self = Radial(start: 135.5, end: 152.5)
   |                       |- warning: static property 'arc08' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc08' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     public static let arc09: Self = Radial(start: 153.5, end: 170.5)
34 |     public static let arc10: Self = Radial(start: 171.5, end: 188.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:33:23: warning: static property 'arc09' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
31 |     public static let arc07: Self = Radial(start: 117.5, end: 134.5)
32 |     public static let arc08: Self = Radial(start: 135.5, end: 152.5)
33 |     public static let arc09: Self = Radial(start: 153.5, end: 170.5)
   |                       |- warning: static property 'arc09' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc09' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     public static let arc10: Self = Radial(start: 171.5, end: 188.5)
35 |     public static let arc11: Self = Radial(start: 189.5, end: 206.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:34:23: warning: static property 'arc10' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
32 |     public static let arc08: Self = Radial(start: 135.5, end: 152.5)
33 |     public static let arc09: Self = Radial(start: 153.5, end: 170.5)
34 |     public static let arc10: Self = Radial(start: 171.5, end: 188.5)
   |                       |- warning: static property 'arc10' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc10' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |     public static let arc11: Self = Radial(start: 189.5, end: 206.5)
36 |     public static let arc12: Self = Radial(start: 207.5, end: 224.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:35:23: warning: static property 'arc11' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
33 |     public static let arc09: Self = Radial(start: 153.5, end: 170.5)
34 |     public static let arc10: Self = Radial(start: 171.5, end: 188.5)
35 |     public static let arc11: Self = Radial(start: 189.5, end: 206.5)
   |                       |- warning: static property 'arc11' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc11' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     public static let arc12: Self = Radial(start: 207.5, end: 224.5)
37 |     public static let arc13: Self = Radial(start: 225.5, end: 242.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:36:23: warning: static property 'arc12' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
34 |     public static let arc10: Self = Radial(start: 171.5, end: 188.5)
35 |     public static let arc11: Self = Radial(start: 189.5, end: 206.5)
36 |     public static let arc12: Self = Radial(start: 207.5, end: 224.5)
   |                       |- warning: static property 'arc12' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc12' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |     public static let arc13: Self = Radial(start: 225.5, end: 242.5)
38 |     public static let arc14: Self = Radial(start: 243.5, end: 260.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:37:23: warning: static property 'arc13' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
35 |     public static let arc11: Self = Radial(start: 189.5, end: 206.5)
36 |     public static let arc12: Self = Radial(start: 207.5, end: 224.5)
37 |     public static let arc13: Self = Radial(start: 225.5, end: 242.5)
   |                       |- warning: static property 'arc13' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc13' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |     public static let arc14: Self = Radial(start: 243.5, end: 260.5)
39 |     public static let arc15: Self = Radial(start: 261.5, end: 278.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:38:23: warning: static property 'arc14' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
36 |     public static let arc12: Self = Radial(start: 207.5, end: 224.5)
37 |     public static let arc13: Self = Radial(start: 225.5, end: 242.5)
38 |     public static let arc14: Self = Radial(start: 243.5, end: 260.5)
   |                       |- warning: static property 'arc14' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc14' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |     public static let arc15: Self = Radial(start: 261.5, end: 278.5)
40 |     public static let arc16: Self = Radial(start: 279.5, end: 296.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:39:23: warning: static property 'arc15' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
37 |     public static let arc13: Self = Radial(start: 225.5, end: 242.5)
38 |     public static let arc14: Self = Radial(start: 243.5, end: 260.5)
39 |     public static let arc15: Self = Radial(start: 261.5, end: 278.5)
   |                       |- warning: static property 'arc15' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc15' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |     public static let arc16: Self = Radial(start: 279.5, end: 296.5)
41 |     public static let arc17: Self = Radial(start: 297.5, end: 314.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:40:23: warning: static property 'arc16' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
38 |     public static let arc14: Self = Radial(start: 243.5, end: 260.5)
39 |     public static let arc15: Self = Radial(start: 261.5, end: 278.5)
40 |     public static let arc16: Self = Radial(start: 279.5, end: 296.5)
   |                       |- warning: static property 'arc16' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc16' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |     public static let arc17: Self = Radial(start: 297.5, end: 314.5)
42 |     public static let arc18: Self = Radial(start: 315.5, end: 332.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:41:23: warning: static property 'arc17' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
39 |     public static let arc15: Self = Radial(start: 261.5, end: 278.5)
40 |     public static let arc16: Self = Radial(start: 279.5, end: 296.5)
41 |     public static let arc17: Self = Radial(start: 297.5, end: 314.5)
   |                       |- warning: static property 'arc17' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc17' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     public static let arc18: Self = Radial(start: 315.5, end: 332.5)
43 |     public static let arc19: Self = Radial(start: 333.5, end: 350.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:42:23: warning: static property 'arc18' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
40 |     public static let arc16: Self = Radial(start: 279.5, end: 296.5)
41 |     public static let arc17: Self = Radial(start: 297.5, end: 314.5)
42 |     public static let arc18: Self = Radial(start: 315.5, end: 332.5)
   |                       |- warning: static property 'arc18' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc18' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     public static let arc19: Self = Radial(start: 333.5, end: 350.5)
44 |     public static let arc20: Self = Radial(start: 351.5, end: 8.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:43:23: warning: static property 'arc19' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
41 |     public static let arc17: Self = Radial(start: 297.5, end: 314.5)
42 |     public static let arc18: Self = Radial(start: 315.5, end: 332.5)
43 |     public static let arc19: Self = Radial(start: 333.5, end: 350.5)
   |                       |- warning: static property 'arc19' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc19' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     public static let arc20: Self = Radial(start: 351.5, end: 8.5)
45 | }
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:44:23: warning: static property 'arc20' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
42 |     public static let arc18: Self = Radial(start: 315.5, end: 332.5)
43 |     public static let arc19: Self = Radial(start: 333.5, end: 350.5)
44 |     public static let arc20: Self = Radial(start: 351.5, end: 8.5)
   |                       |- warning: static property 'arc20' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc20' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | }
46 |
[67/93] Compiling LCARSDisplayKit ObroundView.swift
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/PathConvertibleView.swift:94:21: warning: main actor-isolated property 'opacity' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 16 |     @State private var behavior: ControlBehavior?
 17 |     @State private var timer: Timer?
 18 |     @State private var opacity: Double = 1.0
    |                        `- note: mutation of this property is only permitted within the actor
 19 |     @State private var disabled: Bool = false
 20 |
    :
 92 |             timer = Timer.scheduledTimer(withTimeInterval: timeInterval, repeats: true) { _ in
 93 |                 withAnimation {
 94 |                     opacity = (opacity == 1.0) ? 0.0 : 1.0
    |                     `- warning: main actor-isolated property 'opacity' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 95 |                 }
 96 |             }
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/PathConvertibleView.swift:94:32: warning: main actor-isolated property 'opacity' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 16 |     @State private var behavior: ControlBehavior?
 17 |     @State private var timer: Timer?
 18 |     @State private var opacity: Double = 1.0
    |                        `- note: property declared here
 19 |     @State private var disabled: Bool = false
 20 |
    :
 92 |             timer = Timer.scheduledTimer(withTimeInterval: timeInterval, repeats: true) { _ in
 93 |                 withAnimation {
 94 |                     opacity = (opacity == 1.0) ? 0.0 : 1.0
    |                                `- warning: main actor-isolated property 'opacity' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 95 |                 }
 96 |             }
[68/93] Compiling LCARSDisplayKit PathButtonStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/PathConvertibleView.swift:94:21: warning: main actor-isolated property 'opacity' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 16 |     @State private var behavior: ControlBehavior?
 17 |     @State private var timer: Timer?
 18 |     @State private var opacity: Double = 1.0
    |                        `- note: mutation of this property is only permitted within the actor
 19 |     @State private var disabled: Bool = false
 20 |
    :
 92 |             timer = Timer.scheduledTimer(withTimeInterval: timeInterval, repeats: true) { _ in
 93 |                 withAnimation {
 94 |                     opacity = (opacity == 1.0) ? 0.0 : 1.0
    |                     `- warning: main actor-isolated property 'opacity' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 95 |                 }
 96 |             }
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/PathConvertibleView.swift:94:32: warning: main actor-isolated property 'opacity' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 16 |     @State private var behavior: ControlBehavior?
 17 |     @State private var timer: Timer?
 18 |     @State private var opacity: Double = 1.0
    |                        `- note: property declared here
 19 |     @State private var disabled: Bool = false
 20 |
    :
 92 |             timer = Timer.scheduledTimer(withTimeInterval: timeInterval, repeats: true) { _ in
 93 |                 withAnimation {
 94 |                     opacity = (opacity == 1.0) ? 0.0 : 1.0
    |                                `- warning: main actor-isolated property 'opacity' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 95 |                 }
 96 |             }
[69/93] Compiling LCARSDisplayKit PathConvertible.swift
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/PathConvertibleView.swift:94:21: warning: main actor-isolated property 'opacity' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 16 |     @State private var behavior: ControlBehavior?
 17 |     @State private var timer: Timer?
 18 |     @State private var opacity: Double = 1.0
    |                        `- note: mutation of this property is only permitted within the actor
 19 |     @State private var disabled: Bool = false
 20 |
    :
 92 |             timer = Timer.scheduledTimer(withTimeInterval: timeInterval, repeats: true) { _ in
 93 |                 withAnimation {
 94 |                     opacity = (opacity == 1.0) ? 0.0 : 1.0
    |                     `- warning: main actor-isolated property 'opacity' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 95 |                 }
 96 |             }
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/PathConvertibleView.swift:94:32: warning: main actor-isolated property 'opacity' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 16 |     @State private var behavior: ControlBehavior?
 17 |     @State private var timer: Timer?
 18 |     @State private var opacity: Double = 1.0
    |                        `- note: property declared here
 19 |     @State private var disabled: Bool = false
 20 |
    :
 92 |             timer = Timer.scheduledTimer(withTimeInterval: timeInterval, repeats: true) { _ in
 93 |                 withAnimation {
 94 |                     opacity = (opacity == 1.0) ? 0.0 : 1.0
    |                                `- warning: main actor-isolated property 'opacity' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 95 |                 }
 96 |             }
[70/93] Compiling LCARSDisplayKit PathConvertibleView.swift
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/PathConvertibleView.swift:94:21: warning: main actor-isolated property 'opacity' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 16 |     @State private var behavior: ControlBehavior?
 17 |     @State private var timer: Timer?
 18 |     @State private var opacity: Double = 1.0
    |                        `- note: mutation of this property is only permitted within the actor
 19 |     @State private var disabled: Bool = false
 20 |
    :
 92 |             timer = Timer.scheduledTimer(withTimeInterval: timeInterval, repeats: true) { _ in
 93 |                 withAnimation {
 94 |                     opacity = (opacity == 1.0) ? 0.0 : 1.0
    |                     `- warning: main actor-isolated property 'opacity' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 95 |                 }
 96 |             }
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/PathConvertibleView.swift:94:32: warning: main actor-isolated property 'opacity' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 16 |     @State private var behavior: ControlBehavior?
 17 |     @State private var timer: Timer?
 18 |     @State private var opacity: Double = 1.0
    |                        `- note: property declared here
 19 |     @State private var disabled: Bool = false
 20 |
    :
 92 |             timer = Timer.scheduledTimer(withTimeInterval: timeInterval, repeats: true) { _ in
 93 |                 withAnimation {
 94 |                     opacity = (opacity == 1.0) ? 0.0 : 1.0
    |                                `- warning: main actor-isolated property 'opacity' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 95 |                 }
 96 |             }
[71/93] Compiling LCARSDisplayKit ShapedCrescent.swift
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/PathConvertibleView.swift:94:21: warning: main actor-isolated property 'opacity' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 16 |     @State private var behavior: ControlBehavior?
 17 |     @State private var timer: Timer?
 18 |     @State private var opacity: Double = 1.0
    |                        `- note: mutation of this property is only permitted within the actor
 19 |     @State private var disabled: Bool = false
 20 |
    :
 92 |             timer = Timer.scheduledTimer(withTimeInterval: timeInterval, repeats: true) { _ in
 93 |                 withAnimation {
 94 |                     opacity = (opacity == 1.0) ? 0.0 : 1.0
    |                     `- warning: main actor-isolated property 'opacity' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 95 |                 }
 96 |             }
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/PathConvertibleView.swift:94:32: warning: main actor-isolated property 'opacity' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 16 |     @State private var behavior: ControlBehavior?
 17 |     @State private var timer: Timer?
 18 |     @State private var opacity: Double = 1.0
    |                        `- note: property declared here
 19 |     @State private var disabled: Bool = false
 20 |
    :
 92 |             timer = Timer.scheduledTimer(withTimeInterval: timeInterval, repeats: true) { _ in
 93 |                 withAnimation {
 94 |                     opacity = (opacity == 1.0) ? 0.0 : 1.0
    |                                `- warning: main actor-isolated property 'opacity' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 95 |                 }
 96 |             }
[72/93] Emitting module LCARSDisplayKit
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:25:23: warning: static property 'arc01' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
23 |     }
24 |
25 |     public static let arc01: Self = Radial(start: 9.5, end: 26.5)
   |                       |- warning: static property 'arc01' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc01' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let arc02: Self = Radial(start: 27.5, end: 44.5)
27 |     public static let arc03: Self = Radial(start: 45.5, end: 62.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:26:23: warning: static property 'arc02' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
24 |
25 |     public static let arc01: Self = Radial(start: 9.5, end: 26.5)
26 |     public static let arc02: Self = Radial(start: 27.5, end: 44.5)
   |                       |- warning: static property 'arc02' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc02' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let arc03: Self = Radial(start: 45.5, end: 62.5)
28 |     public static let arc04: Self = Radial(start: 63.5, end: 80.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:27:23: warning: static property 'arc03' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
25 |     public static let arc01: Self = Radial(start: 9.5, end: 26.5)
26 |     public static let arc02: Self = Radial(start: 27.5, end: 44.5)
27 |     public static let arc03: Self = Radial(start: 45.5, end: 62.5)
   |                       |- warning: static property 'arc03' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc03' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let arc04: Self = Radial(start: 63.5, end: 80.5)
29 |     public static let arc05: Self = Radial(start: 81.5, end: 98.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:28:23: warning: static property 'arc04' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
26 |     public static let arc02: Self = Radial(start: 27.5, end: 44.5)
27 |     public static let arc03: Self = Radial(start: 45.5, end: 62.5)
28 |     public static let arc04: Self = Radial(start: 63.5, end: 80.5)
   |                       |- warning: static property 'arc04' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc04' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     public static let arc05: Self = Radial(start: 81.5, end: 98.5)
30 |     public static let arc06: Self = Radial(start: 99.5, end: 116.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:29:23: warning: static property 'arc05' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
27 |     public static let arc03: Self = Radial(start: 45.5, end: 62.5)
28 |     public static let arc04: Self = Radial(start: 63.5, end: 80.5)
29 |     public static let arc05: Self = Radial(start: 81.5, end: 98.5)
   |                       |- warning: static property 'arc05' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc05' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |     public static let arc06: Self = Radial(start: 99.5, end: 116.5)
31 |     public static let arc07: Self = Radial(start: 117.5, end: 134.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:30:23: warning: static property 'arc06' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
28 |     public static let arc04: Self = Radial(start: 63.5, end: 80.5)
29 |     public static let arc05: Self = Radial(start: 81.5, end: 98.5)
30 |     public static let arc06: Self = Radial(start: 99.5, end: 116.5)
   |                       |- warning: static property 'arc06' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc06' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |     public static let arc07: Self = Radial(start: 117.5, end: 134.5)
32 |     public static let arc08: Self = Radial(start: 135.5, end: 152.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:31:23: warning: static property 'arc07' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
29 |     public static let arc05: Self = Radial(start: 81.5, end: 98.5)
30 |     public static let arc06: Self = Radial(start: 99.5, end: 116.5)
31 |     public static let arc07: Self = Radial(start: 117.5, end: 134.5)
   |                       |- warning: static property 'arc07' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc07' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     public static let arc08: Self = Radial(start: 135.5, end: 152.5)
33 |     public static let arc09: Self = Radial(start: 153.5, end: 170.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:32:23: warning: static property 'arc08' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
30 |     public static let arc06: Self = Radial(start: 99.5, end: 116.5)
31 |     public static let arc07: Self = Radial(start: 117.5, end: 134.5)
32 |     public static let arc08: Self = Radial(start: 135.5, end: 152.5)
   |                       |- warning: static property 'arc08' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc08' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     public static let arc09: Self = Radial(start: 153.5, end: 170.5)
34 |     public static let arc10: Self = Radial(start: 171.5, end: 188.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:33:23: warning: static property 'arc09' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
31 |     public static let arc07: Self = Radial(start: 117.5, end: 134.5)
32 |     public static let arc08: Self = Radial(start: 135.5, end: 152.5)
33 |     public static let arc09: Self = Radial(start: 153.5, end: 170.5)
   |                       |- warning: static property 'arc09' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc09' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     public static let arc10: Self = Radial(start: 171.5, end: 188.5)
35 |     public static let arc11: Self = Radial(start: 189.5, end: 206.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:34:23: warning: static property 'arc10' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
32 |     public static let arc08: Self = Radial(start: 135.5, end: 152.5)
33 |     public static let arc09: Self = Radial(start: 153.5, end: 170.5)
34 |     public static let arc10: Self = Radial(start: 171.5, end: 188.5)
   |                       |- warning: static property 'arc10' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc10' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |     public static let arc11: Self = Radial(start: 189.5, end: 206.5)
36 |     public static let arc12: Self = Radial(start: 207.5, end: 224.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:35:23: warning: static property 'arc11' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
33 |     public static let arc09: Self = Radial(start: 153.5, end: 170.5)
34 |     public static let arc10: Self = Radial(start: 171.5, end: 188.5)
35 |     public static let arc11: Self = Radial(start: 189.5, end: 206.5)
   |                       |- warning: static property 'arc11' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc11' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     public static let arc12: Self = Radial(start: 207.5, end: 224.5)
37 |     public static let arc13: Self = Radial(start: 225.5, end: 242.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:36:23: warning: static property 'arc12' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
34 |     public static let arc10: Self = Radial(start: 171.5, end: 188.5)
35 |     public static let arc11: Self = Radial(start: 189.5, end: 206.5)
36 |     public static let arc12: Self = Radial(start: 207.5, end: 224.5)
   |                       |- warning: static property 'arc12' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc12' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |     public static let arc13: Self = Radial(start: 225.5, end: 242.5)
38 |     public static let arc14: Self = Radial(start: 243.5, end: 260.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:37:23: warning: static property 'arc13' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
35 |     public static let arc11: Self = Radial(start: 189.5, end: 206.5)
36 |     public static let arc12: Self = Radial(start: 207.5, end: 224.5)
37 |     public static let arc13: Self = Radial(start: 225.5, end: 242.5)
   |                       |- warning: static property 'arc13' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc13' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |     public static let arc14: Self = Radial(start: 243.5, end: 260.5)
39 |     public static let arc15: Self = Radial(start: 261.5, end: 278.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:38:23: warning: static property 'arc14' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
36 |     public static let arc12: Self = Radial(start: 207.5, end: 224.5)
37 |     public static let arc13: Self = Radial(start: 225.5, end: 242.5)
38 |     public static let arc14: Self = Radial(start: 243.5, end: 260.5)
   |                       |- warning: static property 'arc14' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc14' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |     public static let arc15: Self = Radial(start: 261.5, end: 278.5)
40 |     public static let arc16: Self = Radial(start: 279.5, end: 296.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:39:23: warning: static property 'arc15' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
37 |     public static let arc13: Self = Radial(start: 225.5, end: 242.5)
38 |     public static let arc14: Self = Radial(start: 243.5, end: 260.5)
39 |     public static let arc15: Self = Radial(start: 261.5, end: 278.5)
   |                       |- warning: static property 'arc15' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc15' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |     public static let arc16: Self = Radial(start: 279.5, end: 296.5)
41 |     public static let arc17: Self = Radial(start: 297.5, end: 314.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:40:23: warning: static property 'arc16' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
38 |     public static let arc14: Self = Radial(start: 243.5, end: 260.5)
39 |     public static let arc15: Self = Radial(start: 261.5, end: 278.5)
40 |     public static let arc16: Self = Radial(start: 279.5, end: 296.5)
   |                       |- warning: static property 'arc16' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc16' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |     public static let arc17: Self = Radial(start: 297.5, end: 314.5)
42 |     public static let arc18: Self = Radial(start: 315.5, end: 332.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:41:23: warning: static property 'arc17' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
39 |     public static let arc15: Self = Radial(start: 261.5, end: 278.5)
40 |     public static let arc16: Self = Radial(start: 279.5, end: 296.5)
41 |     public static let arc17: Self = Radial(start: 297.5, end: 314.5)
   |                       |- warning: static property 'arc17' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc17' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     public static let arc18: Self = Radial(start: 315.5, end: 332.5)
43 |     public static let arc19: Self = Radial(start: 333.5, end: 350.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:42:23: warning: static property 'arc18' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
40 |     public static let arc16: Self = Radial(start: 279.5, end: 296.5)
41 |     public static let arc17: Self = Radial(start: 297.5, end: 314.5)
42 |     public static let arc18: Self = Radial(start: 315.5, end: 332.5)
   |                       |- warning: static property 'arc18' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc18' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     public static let arc19: Self = Radial(start: 333.5, end: 350.5)
44 |     public static let arc20: Self = Radial(start: 351.5, end: 8.5)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:43:23: warning: static property 'arc19' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
41 |     public static let arc17: Self = Radial(start: 297.5, end: 314.5)
42 |     public static let arc18: Self = Radial(start: 315.5, end: 332.5)
43 |     public static let arc19: Self = Radial(start: 333.5, end: 350.5)
   |                       |- warning: static property 'arc19' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc19' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     public static let arc20: Self = Radial(start: 351.5, end: 8.5)
45 | }
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Radial.swift:44:23: warning: static property 'arc20' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// Each arc contains 17° with 0.5° on each side for spacing.
 9 | /// (20 x 17°) + (20 x 0.5°) + (20 x 0.5°) = 360°
10 | public struct Radial: Hashable {
   |               `- note: consider making struct 'Radial' conform to the 'Sendable' protocol
11 |     public let start: Degree
12 |     public let end: Degree
   :
42 |     public static let arc18: Self = Radial(start: 315.5, end: 332.5)
43 |     public static let arc19: Self = Radial(start: 333.5, end: 350.5)
44 |     public static let arc20: Self = Radial(start: 351.5, end: 8.5)
   |                       |- warning: static property 'arc20' is not concurrency-safe because non-'Sendable' type 'Radial' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'arc20' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/ThemeKey.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'any Theme' may have shared mutable state; this is an error in the Swift 6 language mode
 3 |
 4 | private struct ThemeKey: EnvironmentKey {
 5 |     static let defaultValue: any Theme = Theme2360s()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'any Theme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/Theme.swift:4:17: note: protocol 'Theme' does not conform to the 'Sendable' protocol
 2 | import SwiftUI
 3 |
 4 | public protocol Theme {
   |                 `- note: protocol 'Theme' does not conform to the 'Sendable' protocol
 5 |     func color(for appearance: ControlAppearance) -> Color
 6 |     func textColor(on appearance: ControlAppearance) -> Color
[73/93] Compiling LCARSDisplayKit Scaler.swift
[74/93] Compiling LCARSDisplayKit Crescent.swift
[75/93] Compiling LCARSDisplayKit Crux.swift
[76/93] Compiling LCARSDisplayKit Direction.swift
[77/93] Compiling LCARSDisplayKit EdgedCrescent.swift
[78/93] Compiling LCARSDisplayKit CrescentControl.swift
[79/93] Compiling LCARSDisplayKit CruxControl.swift
[80/93] Compiling LCARSDisplayKit DirectionControl.swift
[81/93] Compiling LCARSDisplayKit EdgedCrescentControl.swift
[82/93] Compiling LCARSDisplayKit ElbowControl.swift
[83/93] Compiling LCARSDisplayKit ObroundControl.swift
[84/93] Compiling LCARSDisplayKit SizeConvertible.swift
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/CartesianShapeView.swift:109:21: warning: main actor-isolated property 'opacity' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 25 |     @State private var behavior: ControlBehavior?
 26 |     @State private var timer: Timer?
 27 |     @State private var opacity: Double = 1.0
    |                        `- note: mutation of this property is only permitted within the actor
 28 |     @State private var disabled: Bool = false
 29 |
    :
107 |             timer = Timer.scheduledTimer(withTimeInterval: timeInterval, repeats: true) { _ in
108 |                 withAnimation {
109 |                     opacity = (opacity == 1.0) ? 0.0 : 1.0
    |                     `- warning: main actor-isolated property 'opacity' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
110 |                 }
111 |             }
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/CartesianShapeView.swift:109:32: warning: main actor-isolated property 'opacity' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 25 |     @State private var behavior: ControlBehavior?
 26 |     @State private var timer: Timer?
 27 |     @State private var opacity: Double = 1.0
    |                        `- note: property declared here
 28 |     @State private var disabled: Bool = false
 29 |
    :
107 |             timer = Timer.scheduledTimer(withTimeInterval: timeInterval, repeats: true) { _ in
108 |                 withAnimation {
109 |                     opacity = (opacity == 1.0) ? 0.0 : 1.0
    |                                `- warning: main actor-isolated property 'opacity' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
110 |                 }
111 |             }
[85/93] Compiling LCARSDisplayKit BehaviorsKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/CartesianShapeView.swift:109:21: warning: main actor-isolated property 'opacity' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 25 |     @State private var behavior: ControlBehavior?
 26 |     @State private var timer: Timer?
 27 |     @State private var opacity: Double = 1.0
    |                        `- note: mutation of this property is only permitted within the actor
 28 |     @State private var disabled: Bool = false
 29 |
    :
107 |             timer = Timer.scheduledTimer(withTimeInterval: timeInterval, repeats: true) { _ in
108 |                 withAnimation {
109 |                     opacity = (opacity == 1.0) ? 0.0 : 1.0
    |                     `- warning: main actor-isolated property 'opacity' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
110 |                 }
111 |             }
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/CartesianShapeView.swift:109:32: warning: main actor-isolated property 'opacity' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 25 |     @State private var behavior: ControlBehavior?
 26 |     @State private var timer: Timer?
 27 |     @State private var opacity: Double = 1.0
    |                        `- note: property declared here
 28 |     @State private var disabled: Bool = false
 29 |
    :
107 |             timer = Timer.scheduledTimer(withTimeInterval: timeInterval, repeats: true) { _ in
108 |                 withAnimation {
109 |                     opacity = (opacity == 1.0) ? 0.0 : 1.0
    |                                `- warning: main actor-isolated property 'opacity' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
110 |                 }
111 |             }
[86/93] Compiling LCARSDisplayKit CartesianControl.swift
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/CartesianShapeView.swift:109:21: warning: main actor-isolated property 'opacity' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 25 |     @State private var behavior: ControlBehavior?
 26 |     @State private var timer: Timer?
 27 |     @State private var opacity: Double = 1.0
    |                        `- note: mutation of this property is only permitted within the actor
 28 |     @State private var disabled: Bool = false
 29 |
    :
107 |             timer = Timer.scheduledTimer(withTimeInterval: timeInterval, repeats: true) { _ in
108 |                 withAnimation {
109 |                     opacity = (opacity == 1.0) ? 0.0 : 1.0
    |                     `- warning: main actor-isolated property 'opacity' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
110 |                 }
111 |             }
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/CartesianShapeView.swift:109:32: warning: main actor-isolated property 'opacity' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 25 |     @State private var behavior: ControlBehavior?
 26 |     @State private var timer: Timer?
 27 |     @State private var opacity: Double = 1.0
    |                        `- note: property declared here
 28 |     @State private var disabled: Bool = false
 29 |
    :
107 |             timer = Timer.scheduledTimer(withTimeInterval: timeInterval, repeats: true) { _ in
108 |                 withAnimation {
109 |                     opacity = (opacity == 1.0) ? 0.0 : 1.0
    |                                `- warning: main actor-isolated property 'opacity' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
110 |                 }
111 |             }
[87/93] Compiling LCARSDisplayKit CartesianShape.swift
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/CartesianShapeView.swift:109:21: warning: main actor-isolated property 'opacity' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 25 |     @State private var behavior: ControlBehavior?
 26 |     @State private var timer: Timer?
 27 |     @State private var opacity: Double = 1.0
    |                        `- note: mutation of this property is only permitted within the actor
 28 |     @State private var disabled: Bool = false
 29 |
    :
107 |             timer = Timer.scheduledTimer(withTimeInterval: timeInterval, repeats: true) { _ in
108 |                 withAnimation {
109 |                     opacity = (opacity == 1.0) ? 0.0 : 1.0
    |                     `- warning: main actor-isolated property 'opacity' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
110 |                 }
111 |             }
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/CartesianShapeView.swift:109:32: warning: main actor-isolated property 'opacity' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 25 |     @State private var behavior: ControlBehavior?
 26 |     @State private var timer: Timer?
 27 |     @State private var opacity: Double = 1.0
    |                        `- note: property declared here
 28 |     @State private var disabled: Bool = false
 29 |
    :
107 |             timer = Timer.scheduledTimer(withTimeInterval: timeInterval, repeats: true) { _ in
108 |                 withAnimation {
109 |                     opacity = (opacity == 1.0) ? 0.0 : 1.0
    |                                `- warning: main actor-isolated property 'opacity' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
110 |                 }
111 |             }
[88/93] Compiling LCARSDisplayKit CartesianShapeView.swift
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/CartesianShapeView.swift:109:21: warning: main actor-isolated property 'opacity' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 25 |     @State private var behavior: ControlBehavior?
 26 |     @State private var timer: Timer?
 27 |     @State private var opacity: Double = 1.0
    |                        `- note: mutation of this property is only permitted within the actor
 28 |     @State private var disabled: Bool = false
 29 |
    :
107 |             timer = Timer.scheduledTimer(withTimeInterval: timeInterval, repeats: true) { _ in
108 |                 withAnimation {
109 |                     opacity = (opacity == 1.0) ? 0.0 : 1.0
    |                     `- warning: main actor-isolated property 'opacity' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
110 |                 }
111 |             }
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/CartesianShapeView.swift:109:32: warning: main actor-isolated property 'opacity' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 25 |     @State private var behavior: ControlBehavior?
 26 |     @State private var timer: Timer?
 27 |     @State private var opacity: Double = 1.0
    |                        `- note: property declared here
 28 |     @State private var disabled: Bool = false
 29 |
    :
107 |             timer = Timer.scheduledTimer(withTimeInterval: timeInterval, repeats: true) { _ in
108 |                 withAnimation {
109 |                     opacity = (opacity == 1.0) ? 0.0 : 1.0
    |                                `- warning: main actor-isolated property 'opacity' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
110 |                 }
111 |             }
[89/93] Compiling LCARSDisplayKit DPadClusterCompactView.swift
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:218:62: warning: 'with(y:)' is deprecated: renamed to 'y(_:)'
216 |         let endDegree = try! Degree.make(for: endPoint)
217 |         let shift = values.radii.firstRingExteriorRadius - values.radii.firstRingInteriorRadius
218 |         let exteriorStart = try! Degree.make(for: startPoint.with(y: startPoint.y + shift))
    |                                                              |- warning: 'with(y:)' is deprecated: renamed to 'y(_:)'
    |                                                              `- note: use 'y(_:)' instead
219 |         let exteriorEnd = try! Degree.make(for: endPoint.with(y: endPoint.y + shift))
220 |
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:219:58: warning: 'with(y:)' is deprecated: renamed to 'y(_:)'
217 |         let shift = values.radii.firstRingExteriorRadius - values.radii.firstRingInteriorRadius
218 |         let exteriorStart = try! Degree.make(for: startPoint.with(y: startPoint.y + shift))
219 |         let exteriorEnd = try! Degree.make(for: endPoint.with(y: endPoint.y + shift))
    |                                                          |- warning: 'with(y:)' is deprecated: renamed to 'y(_:)'
    |                                                          `- note: use 'y(_:)' instead
220 |
221 |         return CrescentControl(
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:269:62: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
267 |         let endDegree = try! Degree.make(for: endPoint)
268 |         let shift = values.radii.firstRingExteriorRadius - values.radii.firstRingInteriorRadius
269 |         let exteriorStart = try! Degree.make(for: startPoint.with(x: startPoint.x + shift))
    |                                                              |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                                              `- note: use 'x(_:)' instead
270 |         let exteriorEnd = try! Degree.make(for: endPoint.with(x: endPoint.x + shift))
271 |
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:270:58: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
268 |         let shift = values.radii.firstRingExteriorRadius - values.radii.firstRingInteriorRadius
269 |         let exteriorStart = try! Degree.make(for: startPoint.with(x: startPoint.x + shift))
270 |         let exteriorEnd = try! Degree.make(for: endPoint.with(x: endPoint.x + shift))
    |                                                          |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                                          `- note: use 'x(_:)' instead
271 |
272 |         return CrescentControl(
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:356:66: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
354 |     private var outerRing20: CrescentControl {
355 |         let ir20 = innerRing20
356 |         let innerStart = ir20.crescent.exteriorArc.startingPoint.with(x: ir20.crescent.exteriorArc.startingPoint.x + values.spacing)
    |                                                                  |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                                                  `- note: use 'x(_:)' instead
357 |         let innerStartDegree = try! Degree.make(for: innerStart)
358 |         let innerEnd = ir20.crescent.exteriorArc.endingPoint.with(x: ir20.crescent.exteriorArc.endingPoint.x + values.spacing)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:358:62: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
356 |         let innerStart = ir20.crescent.exteriorArc.startingPoint.with(x: ir20.crescent.exteriorArc.startingPoint.x + values.spacing)
357 |         let innerStartDegree = try! Degree.make(for: innerStart)
358 |         let innerEnd = ir20.crescent.exteriorArc.endingPoint.with(x: ir20.crescent.exteriorArc.endingPoint.x + values.spacing)
    |                                                              |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                                              `- note: use 'x(_:)' instead
359 |         let innerEndDegree = try! Degree.make(for: innerEnd)
360 |         let shift = values.radii.secondRingExtendedExteriorRadius - values.radii.secondRingInteriorRadius
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:361:37: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
359 |         let innerEndDegree = try! Degree.make(for: innerEnd)
360 |         let shift = values.radii.secondRingExtendedExteriorRadius - values.radii.secondRingInteriorRadius
361 |         let outerStart = innerStart.with(x: innerStart.x + shift)
    |                                     |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                     `- note: use 'x(_:)' instead
362 |         let outerStartDegree = try! Degree.make(for: outerStart)
363 |         let outerEnd = innerEnd.with(x: innerEnd.x + shift)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:363:33: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
361 |         let outerStart = innerStart.with(x: innerStart.x + shift)
362 |         let outerStartDegree = try! Degree.make(for: outerStart)
363 |         let outerEnd = innerEnd.with(x: innerEnd.x + shift)
    |                                 |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                 `- note: use 'x(_:)' instead
364 |         let outerEndDegree = try! Degree.make(for: outerEnd)
365 |
[90/93] Compiling LCARSDisplayKit DPadClusterExtendedView.swift
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:218:62: warning: 'with(y:)' is deprecated: renamed to 'y(_:)'
216 |         let endDegree = try! Degree.make(for: endPoint)
217 |         let shift = values.radii.firstRingExteriorRadius - values.radii.firstRingInteriorRadius
218 |         let exteriorStart = try! Degree.make(for: startPoint.with(y: startPoint.y + shift))
    |                                                              |- warning: 'with(y:)' is deprecated: renamed to 'y(_:)'
    |                                                              `- note: use 'y(_:)' instead
219 |         let exteriorEnd = try! Degree.make(for: endPoint.with(y: endPoint.y + shift))
220 |
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:219:58: warning: 'with(y:)' is deprecated: renamed to 'y(_:)'
217 |         let shift = values.radii.firstRingExteriorRadius - values.radii.firstRingInteriorRadius
218 |         let exteriorStart = try! Degree.make(for: startPoint.with(y: startPoint.y + shift))
219 |         let exteriorEnd = try! Degree.make(for: endPoint.with(y: endPoint.y + shift))
    |                                                          |- warning: 'with(y:)' is deprecated: renamed to 'y(_:)'
    |                                                          `- note: use 'y(_:)' instead
220 |
221 |         return CrescentControl(
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:269:62: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
267 |         let endDegree = try! Degree.make(for: endPoint)
268 |         let shift = values.radii.firstRingExteriorRadius - values.radii.firstRingInteriorRadius
269 |         let exteriorStart = try! Degree.make(for: startPoint.with(x: startPoint.x + shift))
    |                                                              |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                                              `- note: use 'x(_:)' instead
270 |         let exteriorEnd = try! Degree.make(for: endPoint.with(x: endPoint.x + shift))
271 |
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:270:58: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
268 |         let shift = values.radii.firstRingExteriorRadius - values.radii.firstRingInteriorRadius
269 |         let exteriorStart = try! Degree.make(for: startPoint.with(x: startPoint.x + shift))
270 |         let exteriorEnd = try! Degree.make(for: endPoint.with(x: endPoint.x + shift))
    |                                                          |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                                          `- note: use 'x(_:)' instead
271 |
272 |         return CrescentControl(
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:356:66: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
354 |     private var outerRing20: CrescentControl {
355 |         let ir20 = innerRing20
356 |         let innerStart = ir20.crescent.exteriorArc.startingPoint.with(x: ir20.crescent.exteriorArc.startingPoint.x + values.spacing)
    |                                                                  |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                                                  `- note: use 'x(_:)' instead
357 |         let innerStartDegree = try! Degree.make(for: innerStart)
358 |         let innerEnd = ir20.crescent.exteriorArc.endingPoint.with(x: ir20.crescent.exteriorArc.endingPoint.x + values.spacing)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:358:62: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
356 |         let innerStart = ir20.crescent.exteriorArc.startingPoint.with(x: ir20.crescent.exteriorArc.startingPoint.x + values.spacing)
357 |         let innerStartDegree = try! Degree.make(for: innerStart)
358 |         let innerEnd = ir20.crescent.exteriorArc.endingPoint.with(x: ir20.crescent.exteriorArc.endingPoint.x + values.spacing)
    |                                                              |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                                              `- note: use 'x(_:)' instead
359 |         let innerEndDegree = try! Degree.make(for: innerEnd)
360 |         let shift = values.radii.secondRingExtendedExteriorRadius - values.radii.secondRingInteriorRadius
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:361:37: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
359 |         let innerEndDegree = try! Degree.make(for: innerEnd)
360 |         let shift = values.radii.secondRingExtendedExteriorRadius - values.radii.secondRingInteriorRadius
361 |         let outerStart = innerStart.with(x: innerStart.x + shift)
    |                                     |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                     `- note: use 'x(_:)' instead
362 |         let outerStartDegree = try! Degree.make(for: outerStart)
363 |         let outerEnd = innerEnd.with(x: innerEnd.x + shift)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:363:33: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
361 |         let outerStart = innerStart.with(x: innerStart.x + shift)
362 |         let outerStartDegree = try! Degree.make(for: outerStart)
363 |         let outerEnd = innerEnd.with(x: innerEnd.x + shift)
    |                                 |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                 `- note: use 'x(_:)' instead
364 |         let outerEndDegree = try! Degree.make(for: outerEnd)
365 |
[91/93] Compiling LCARSDisplayKit DPadClusterView.swift
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:218:62: warning: 'with(y:)' is deprecated: renamed to 'y(_:)'
216 |         let endDegree = try! Degree.make(for: endPoint)
217 |         let shift = values.radii.firstRingExteriorRadius - values.radii.firstRingInteriorRadius
218 |         let exteriorStart = try! Degree.make(for: startPoint.with(y: startPoint.y + shift))
    |                                                              |- warning: 'with(y:)' is deprecated: renamed to 'y(_:)'
    |                                                              `- note: use 'y(_:)' instead
219 |         let exteriorEnd = try! Degree.make(for: endPoint.with(y: endPoint.y + shift))
220 |
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:219:58: warning: 'with(y:)' is deprecated: renamed to 'y(_:)'
217 |         let shift = values.radii.firstRingExteriorRadius - values.radii.firstRingInteriorRadius
218 |         let exteriorStart = try! Degree.make(for: startPoint.with(y: startPoint.y + shift))
219 |         let exteriorEnd = try! Degree.make(for: endPoint.with(y: endPoint.y + shift))
    |                                                          |- warning: 'with(y:)' is deprecated: renamed to 'y(_:)'
    |                                                          `- note: use 'y(_:)' instead
220 |
221 |         return CrescentControl(
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:269:62: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
267 |         let endDegree = try! Degree.make(for: endPoint)
268 |         let shift = values.radii.firstRingExteriorRadius - values.radii.firstRingInteriorRadius
269 |         let exteriorStart = try! Degree.make(for: startPoint.with(x: startPoint.x + shift))
    |                                                              |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                                              `- note: use 'x(_:)' instead
270 |         let exteriorEnd = try! Degree.make(for: endPoint.with(x: endPoint.x + shift))
271 |
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:270:58: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
268 |         let shift = values.radii.firstRingExteriorRadius - values.radii.firstRingInteriorRadius
269 |         let exteriorStart = try! Degree.make(for: startPoint.with(x: startPoint.x + shift))
270 |         let exteriorEnd = try! Degree.make(for: endPoint.with(x: endPoint.x + shift))
    |                                                          |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                                          `- note: use 'x(_:)' instead
271 |
272 |         return CrescentControl(
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:356:66: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
354 |     private var outerRing20: CrescentControl {
355 |         let ir20 = innerRing20
356 |         let innerStart = ir20.crescent.exteriorArc.startingPoint.with(x: ir20.crescent.exteriorArc.startingPoint.x + values.spacing)
    |                                                                  |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                                                  `- note: use 'x(_:)' instead
357 |         let innerStartDegree = try! Degree.make(for: innerStart)
358 |         let innerEnd = ir20.crescent.exteriorArc.endingPoint.with(x: ir20.crescent.exteriorArc.endingPoint.x + values.spacing)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:358:62: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
356 |         let innerStart = ir20.crescent.exteriorArc.startingPoint.with(x: ir20.crescent.exteriorArc.startingPoint.x + values.spacing)
357 |         let innerStartDegree = try! Degree.make(for: innerStart)
358 |         let innerEnd = ir20.crescent.exteriorArc.endingPoint.with(x: ir20.crescent.exteriorArc.endingPoint.x + values.spacing)
    |                                                              |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                                              `- note: use 'x(_:)' instead
359 |         let innerEndDegree = try! Degree.make(for: innerEnd)
360 |         let shift = values.radii.secondRingExtendedExteriorRadius - values.radii.secondRingInteriorRadius
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:361:37: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
359 |         let innerEndDegree = try! Degree.make(for: innerEnd)
360 |         let shift = values.radii.secondRingExtendedExteriorRadius - values.radii.secondRingInteriorRadius
361 |         let outerStart = innerStart.with(x: innerStart.x + shift)
    |                                     |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                     `- note: use 'x(_:)' instead
362 |         let outerStartDegree = try! Degree.make(for: outerStart)
363 |         let outerEnd = innerEnd.with(x: innerEnd.x + shift)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:363:33: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
361 |         let outerStart = innerStart.with(x: innerStart.x + shift)
362 |         let outerStartDegree = try! Degree.make(for: outerStart)
363 |         let outerEnd = innerEnd.with(x: innerEnd.x + shift)
    |                                 |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                 `- note: use 'x(_:)' instead
364 |         let outerEndDegree = try! Degree.make(for: outerEnd)
365 |
[92/93] Compiling LCARSDisplayKit DPadView.swift
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:218:62: warning: 'with(y:)' is deprecated: renamed to 'y(_:)'
216 |         let endDegree = try! Degree.make(for: endPoint)
217 |         let shift = values.radii.firstRingExteriorRadius - values.radii.firstRingInteriorRadius
218 |         let exteriorStart = try! Degree.make(for: startPoint.with(y: startPoint.y + shift))
    |                                                              |- warning: 'with(y:)' is deprecated: renamed to 'y(_:)'
    |                                                              `- note: use 'y(_:)' instead
219 |         let exteriorEnd = try! Degree.make(for: endPoint.with(y: endPoint.y + shift))
220 |
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:219:58: warning: 'with(y:)' is deprecated: renamed to 'y(_:)'
217 |         let shift = values.radii.firstRingExteriorRadius - values.radii.firstRingInteriorRadius
218 |         let exteriorStart = try! Degree.make(for: startPoint.with(y: startPoint.y + shift))
219 |         let exteriorEnd = try! Degree.make(for: endPoint.with(y: endPoint.y + shift))
    |                                                          |- warning: 'with(y:)' is deprecated: renamed to 'y(_:)'
    |                                                          `- note: use 'y(_:)' instead
220 |
221 |         return CrescentControl(
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:269:62: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
267 |         let endDegree = try! Degree.make(for: endPoint)
268 |         let shift = values.radii.firstRingExteriorRadius - values.radii.firstRingInteriorRadius
269 |         let exteriorStart = try! Degree.make(for: startPoint.with(x: startPoint.x + shift))
    |                                                              |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                                              `- note: use 'x(_:)' instead
270 |         let exteriorEnd = try! Degree.make(for: endPoint.with(x: endPoint.x + shift))
271 |
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:270:58: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
268 |         let shift = values.radii.firstRingExteriorRadius - values.radii.firstRingInteriorRadius
269 |         let exteriorStart = try! Degree.make(for: startPoint.with(x: startPoint.x + shift))
270 |         let exteriorEnd = try! Degree.make(for: endPoint.with(x: endPoint.x + shift))
    |                                                          |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                                          `- note: use 'x(_:)' instead
271 |
272 |         return CrescentControl(
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:356:66: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
354 |     private var outerRing20: CrescentControl {
355 |         let ir20 = innerRing20
356 |         let innerStart = ir20.crescent.exteriorArc.startingPoint.with(x: ir20.crescent.exteriorArc.startingPoint.x + values.spacing)
    |                                                                  |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                                                  `- note: use 'x(_:)' instead
357 |         let innerStartDegree = try! Degree.make(for: innerStart)
358 |         let innerEnd = ir20.crescent.exteriorArc.endingPoint.with(x: ir20.crescent.exteriorArc.endingPoint.x + values.spacing)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:358:62: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
356 |         let innerStart = ir20.crescent.exteriorArc.startingPoint.with(x: ir20.crescent.exteriorArc.startingPoint.x + values.spacing)
357 |         let innerStartDegree = try! Degree.make(for: innerStart)
358 |         let innerEnd = ir20.crescent.exteriorArc.endingPoint.with(x: ir20.crescent.exteriorArc.endingPoint.x + values.spacing)
    |                                                              |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                                              `- note: use 'x(_:)' instead
359 |         let innerEndDegree = try! Degree.make(for: innerEnd)
360 |         let shift = values.radii.secondRingExtendedExteriorRadius - values.radii.secondRingInteriorRadius
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:361:37: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
359 |         let innerEndDegree = try! Degree.make(for: innerEnd)
360 |         let shift = values.radii.secondRingExtendedExteriorRadius - values.radii.secondRingInteriorRadius
361 |         let outerStart = innerStart.with(x: innerStart.x + shift)
    |                                     |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                     `- note: use 'x(_:)' instead
362 |         let outerStartDegree = try! Degree.make(for: outerStart)
363 |         let outerEnd = innerEnd.with(x: innerEnd.x + shift)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:363:33: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
361 |         let outerStart = innerStart.with(x: innerStart.x + shift)
362 |         let outerStartDegree = try! Degree.make(for: outerStart)
363 |         let outerEnd = innerEnd.with(x: innerEnd.x + shift)
    |                                 |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                 `- note: use 'x(_:)' instead
364 |         let outerEndDegree = try! Degree.make(for: outerEnd)
365 |
[93/93] Compiling LCARSDisplayKit ElbowView.swift
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:218:62: warning: 'with(y:)' is deprecated: renamed to 'y(_:)'
216 |         let endDegree = try! Degree.make(for: endPoint)
217 |         let shift = values.radii.firstRingExteriorRadius - values.radii.firstRingInteriorRadius
218 |         let exteriorStart = try! Degree.make(for: startPoint.with(y: startPoint.y + shift))
    |                                                              |- warning: 'with(y:)' is deprecated: renamed to 'y(_:)'
    |                                                              `- note: use 'y(_:)' instead
219 |         let exteriorEnd = try! Degree.make(for: endPoint.with(y: endPoint.y + shift))
220 |
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:219:58: warning: 'with(y:)' is deprecated: renamed to 'y(_:)'
217 |         let shift = values.radii.firstRingExteriorRadius - values.radii.firstRingInteriorRadius
218 |         let exteriorStart = try! Degree.make(for: startPoint.with(y: startPoint.y + shift))
219 |         let exteriorEnd = try! Degree.make(for: endPoint.with(y: endPoint.y + shift))
    |                                                          |- warning: 'with(y:)' is deprecated: renamed to 'y(_:)'
    |                                                          `- note: use 'y(_:)' instead
220 |
221 |         return CrescentControl(
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:269:62: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
267 |         let endDegree = try! Degree.make(for: endPoint)
268 |         let shift = values.radii.firstRingExteriorRadius - values.radii.firstRingInteriorRadius
269 |         let exteriorStart = try! Degree.make(for: startPoint.with(x: startPoint.x + shift))
    |                                                              |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                                              `- note: use 'x(_:)' instead
270 |         let exteriorEnd = try! Degree.make(for: endPoint.with(x: endPoint.x + shift))
271 |
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:270:58: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
268 |         let shift = values.radii.firstRingExteriorRadius - values.radii.firstRingInteriorRadius
269 |         let exteriorStart = try! Degree.make(for: startPoint.with(x: startPoint.x + shift))
270 |         let exteriorEnd = try! Degree.make(for: endPoint.with(x: endPoint.x + shift))
    |                                                          |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                                          `- note: use 'x(_:)' instead
271 |
272 |         return CrescentControl(
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:356:66: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
354 |     private var outerRing20: CrescentControl {
355 |         let ir20 = innerRing20
356 |         let innerStart = ir20.crescent.exteriorArc.startingPoint.with(x: ir20.crescent.exteriorArc.startingPoint.x + values.spacing)
    |                                                                  |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                                                  `- note: use 'x(_:)' instead
357 |         let innerStartDegree = try! Degree.make(for: innerStart)
358 |         let innerEnd = ir20.crescent.exteriorArc.endingPoint.with(x: ir20.crescent.exteriorArc.endingPoint.x + values.spacing)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:358:62: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
356 |         let innerStart = ir20.crescent.exteriorArc.startingPoint.with(x: ir20.crescent.exteriorArc.startingPoint.x + values.spacing)
357 |         let innerStartDegree = try! Degree.make(for: innerStart)
358 |         let innerEnd = ir20.crescent.exteriorArc.endingPoint.with(x: ir20.crescent.exteriorArc.endingPoint.x + values.spacing)
    |                                                              |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                                              `- note: use 'x(_:)' instead
359 |         let innerEndDegree = try! Degree.make(for: innerEnd)
360 |         let shift = values.radii.secondRingExtendedExteriorRadius - values.radii.secondRingInteriorRadius
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:361:37: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
359 |         let innerEndDegree = try! Degree.make(for: innerEnd)
360 |         let shift = values.radii.secondRingExtendedExteriorRadius - values.radii.secondRingInteriorRadius
361 |         let outerStart = innerStart.with(x: innerStart.x + shift)
    |                                     |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                     `- note: use 'x(_:)' instead
362 |         let outerStartDegree = try! Degree.make(for: outerStart)
363 |         let outerEnd = innerEnd.with(x: innerEnd.x + shift)
/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/UI/DPadClusterCompactView.swift:363:33: warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
361 |         let outerStart = innerStart.with(x: innerStart.x + shift)
362 |         let outerStartDegree = try! Degree.make(for: outerStart)
363 |         let outerEnd = innerEnd.with(x: innerEnd.x + shift)
    |                                 |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)'
    |                                 `- note: use 'x(_:)' instead
364 |         let outerEndDegree = try! Degree.make(for: outerEnd)
365 |
Build complete! (18.43s)
Fetching https://github.com/richardpiazza/SwiftColor.git
Fetching https://github.com/richardpiazza/GraphPoint.git
[1/597] Fetching graphpoint
[127/775] Fetching graphpoint, swiftcolor
Fetched https://github.com/richardpiazza/SwiftColor.git from cache (0.84s)
Fetched https://github.com/richardpiazza/GraphPoint.git from cache (0.84s)
Computing version for https://github.com/richardpiazza/SwiftColor.git
Computed https://github.com/richardpiazza/SwiftColor.git at 0.3.1 (1.32s)
Computing version for https://github.com/richardpiazza/GraphPoint.git
Computed https://github.com/richardpiazza/GraphPoint.git at 5.1.0 (0.43s)
Fetching https://github.com/richardpiazza/Swift2D
[1/274] Fetching swift2d
Fetched https://github.com/richardpiazza/Swift2D from cache (0.83s)
Computing version for https://github.com/richardpiazza/Swift2D
Computed https://github.com/richardpiazza/Swift2D at 2.2.1 (1.30s)
Creating working copy for https://github.com/richardpiazza/Swift2D
Working copy of https://github.com/richardpiazza/Swift2D resolved at 2.2.1
Creating working copy for https://github.com/richardpiazza/GraphPoint.git
Working copy of https://github.com/richardpiazza/GraphPoint.git resolved at 5.1.0
Creating working copy for https://github.com/richardpiazza/SwiftColor.git
Working copy of https://github.com/richardpiazza/SwiftColor.git resolved at 0.3.1
Build complete.
{
  "dependencies" : [
    {
      "identity" : "graphpoint",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "5.1.0",
            "upper_bound" : "6.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/richardpiazza/GraphPoint.git"
    },
    {
      "identity" : "swiftcolor",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.3.1",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/richardpiazza/SwiftColor.git"
    }
  ],
  "manifest_display_name" : "LCARSDisplayKit",
  "name" : "LCARSDisplayKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "15.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "18.0"
    },
    {
      "name" : "ios",
      "version" : "18.0"
    },
    {
      "name" : "tvos",
      "version" : "18.0"
    },
    {
      "name" : "watchos",
      "version" : "11.0"
    },
    {
      "name" : "visionos",
      "version" : "2.0"
    }
  ],
  "products" : [
    {
      "name" : "LCARSDisplayKit",
      "targets" : [
        "LCARSDisplayKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "LCARSDisplayKitTests",
      "module_type" : "SwiftTarget",
      "name" : "LCARSDisplayKitTests",
      "path" : "Tests/LCARSDisplayKitTests",
      "product_dependencies" : [
        "GraphPoint"
      ],
      "sources" : [
        "DirectionClusterTests.swift",
        "GenericTests.swift"
      ],
      "target_dependencies" : [
        "LCARSDisplayKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "LCARSDisplayKit",
      "module_type" : "SwiftTarget",
      "name" : "LCARSDisplayKit",
      "path" : "Sources/LCARSDisplayKit",
      "product_dependencies" : [
        "GraphPoint",
        "SwiftColor"
      ],
      "product_memberships" : [
        "LCARSDisplayKit"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Resources/Swiss 911 Ultra Compressed BT.ttf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Resources/beep1.m4a",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Resources/beep2.m4a",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Resources/beep3.m4a",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "CartesianIdentifiable.swift",
        "CartesianIdentifier.swift",
        "CartesianPlaceable.swift",
        "CartesianValues.swift",
        "ControlAppearance.swift",
        "ControlBehavior.swift",
        "Controls/CrescentControl.swift",
        "Controls/CruxControl.swift",
        "Controls/DirectionControl.swift",
        "Controls/EdgedCrescentControl.swift",
        "Controls/ElbowControl.swift",
        "Controls/ObroundControl.swift",
        "Controls/WedgeControl.swift",
        "Extensions/Arc+LCARSDisplayKit.swift",
        "Extensions/Bundle+LCARSDisplayKit.swift",
        "Extensions/CGMutablePath+LCARSDisplayKit.swift",
        "Extensions/CTFont+LCARSDisplayKit.swift",
        "Extensions/CartesianFrame+LCARSDisplayKit.swift",
        "Extensions/Font+LCARSDisplayKit.swift",
        "Extensions/Pigment+LCARSDisplayKit.swift",
        "Extensions/Size+LCARSDisplayKit.swift",
        "Radial.swift",
        "Rounding.swift",
        "Scaler.swift",
        "Shapes/Crescent.swift",
        "Shapes/Crux.swift",
        "Shapes/Direction.swift",
        "Shapes/EdgedCrescent.swift",
        "Shapes/Elbow+PathConvertible.swift",
        "Shapes/Elbow.swift",
        "Shapes/Obround+PathConvertible.swift",
        "Shapes/Obround.swift",
        "Shapes/Wedge.swift",
        "SizeConvertible.swift",
        "UI/BehaviorsKey.swift",
        "UI/CartesianControl.swift",
        "UI/CartesianShape.swift",
        "UI/CartesianShapeView.swift",
        "UI/DPadClusterCompactView.swift",
        "UI/DPadClusterExtendedView.swift",
        "UI/DPadClusterView.swift",
        "UI/DPadView.swift",
        "UI/ElbowView.swift",
        "UI/ObroundView.swift",
        "UI/PathButtonStyle.swift",
        "UI/PathConvertible.swift",
        "UI/PathConvertibleView.swift",
        "UI/ShapedCrescent.swift",
        "UI/Theme.swift",
        "UI/Theme2360s.swift",
        "UI/ThemeCompact2370s.swift",
        "UI/ThemeKey.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Done.