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 Linux on 7 Dec 2025 23:51:48 UTC.

Swift 6 data race errors: 20

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -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 2>&1

Build Log

45 | }
46 |
[50/96] Compiling LCARSDisplayKit Bundle+LCARSDisplayKit.swift
[51/96] Compiling LCARSDisplayKit CGMutablePath+LCARSDisplayKit.swift
[52/96] Compiling LCARSDisplayKit CTFont+LCARSDisplayKit.swift
[53/96] Compiling LCARSDisplayKit CartesianFrame+LCARSDisplayKit.swift
[54/96] Compiling LCARSDisplayKit Font+LCARSDisplayKit.swift
[55/96] Compiling LCARSDisplayKit Pigment+LCARSDisplayKit.swift
[56/96] Compiling LCARSDisplayKit Size+LCARSDisplayKit.swift
[57/96] Compiling LCARSDisplayKit DPadView.swift
[58/96] Compiling LCARSDisplayKit ElbowView.swift
[59/96] Compiling LCARSDisplayKit ObroundView.swift
[60/96] Compiling LCARSDisplayKit PathButtonStyle.swift
[61/96] Compiling LCARSDisplayKit PathConvertible.swift
[62/96] Compiling LCARSDisplayKit PathConvertibleView.swift
[63/96] Compiling LCARSDisplayKit Elbow+PathConvertible.swift
[64/96] Compiling LCARSDisplayKit Elbow.swift
[65/96] Compiling LCARSDisplayKit Obround+PathConvertible.swift
[66/96] Compiling LCARSDisplayKit Obround.swift
[67/96] Compiling LCARSDisplayKit Wedge.swift
[68/96] Compiling LCARSDisplayKit SizeConvertible.swift
[69/96] Compiling LCARSDisplayKit BehaviorsKey.swift
[70/96] Compiling LCARSDisplayKit CruxControl.swift
[71/96] Compiling LCARSDisplayKit DirectionControl.swift
[72/96] Compiling LCARSDisplayKit EdgedCrescentControl.swift
[73/96] Compiling LCARSDisplayKit ElbowControl.swift
[74/96] Compiling LCARSDisplayKit ObroundControl.swift
[75/96] Compiling LCARSDisplayKit WedgeControl.swift
[76/96] Compiling LCARSDisplayKit Arc+LCARSDisplayKit.swift
[77/96] Compiling LCARSDisplayKit ShapedCrescent.swift
[78/96] Compiling LCARSDisplayKit Theme.swift
[79/96] Compiling LCARSDisplayKit Theme2360s.swift
[80/96] Compiling LCARSDisplayKit ThemeCompact2370s.swift
[81/96] Compiling LCARSDisplayKit ThemeKey.swift
[82/96] Compiling LCARSDisplayKit resource_bundle_accessor.swift
[83/96] Compiling LCARSDisplayKit Radial.swift
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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 | }
/host/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 |
[84/96] Compiling LCARSDisplayKit Rounding.swift
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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 | }
/host/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 |
[85/96] Compiling LCARSDisplayKit Scaler.swift
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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 | }
/host/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 |
[86/96] Compiling LCARSDisplayKit Crescent.swift
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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 | }
/host/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 |
[87/96] Compiling LCARSDisplayKit Crux.swift
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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 | }
/host/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 |
[88/96] Compiling LCARSDisplayKit Direction.swift
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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 | }
/host/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 |
[89/96] Compiling LCARSDisplayKit EdgedCrescent.swift
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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)
/host/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 | }
/host/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 |
[90/96] Compiling LCARSDisplayKit CartesianIdentifiable.swift
[91/96] Compiling LCARSDisplayKit CartesianIdentifier.swift
[92/96] Compiling LCARSDisplayKit CartesianPlaceable.swift
[93/96] Compiling LCARSDisplayKit CartesianValues.swift
[94/96] Compiling LCARSDisplayKit ControlAppearance.swift
[95/96] Compiling LCARSDisplayKit ControlBehavior.swift
[96/96] Compiling LCARSDisplayKit CrescentControl.swift
Build complete! (21.29s)
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" : "/host/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" : "/host/spi-builder-workspace/Sources/LCARSDisplayKit/Resources/Swiss 911 Ultra Compressed BT.ttf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/LCARSDisplayKit/Resources/beep1.m4a",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/LCARSDisplayKit/Resources/beep2.m4a",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/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"
}
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:4d72617259f6eef9908440c49a67b79bc4f973ae19f78187418ddfb5b178d4ec
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Done.