This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of SwiftClockUI with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 12

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/renaudjenny/SwiftClockUI.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/renaudjenny/SwiftClockUI
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at e201240 Merge pull request #19 from renaudjenny/update-snapshots-for-tests
Cloned https://github.com/renaudjenny/SwiftClockUI.git
Revision (git rev-parse @):
e2012408d166ebafa0f0c0cdf568c984e77c3ded
SUCCESS checkout https://github.com/renaudjenny/SwiftClockUI.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/renaudjenny/SwiftClockUI.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-6F35C1178C84523A.txt
[3/49] Compiling SwiftClockUI ClockAnimationEnabled.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockArmColorsEnvironment.swift:14:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockArmColors' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct ClockArmColors: Equatable {
   |               `- note: consider making struct 'ClockArmColors' conform to the 'Sendable' protocol
 4 |     var minute: Color
 5 |     var hour: Color
   :
12 |
13 | public struct ClockArmColorsKey: EnvironmentKey {
14 |     public static let defaultValue = ClockArmColors(
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockArmColors' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |         minute: .primary,
16 |         hour: .primary
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockConfigurationEnvironment.swift:20:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct ClockConfiguration: Equatable {
   |               `- note: consider making struct 'ClockConfiguration' conform to the 'Sendable' protocol
 4 |     public var isLimitedHoursShown = false
 5 |     public var isMinuteIndicatorsShown = true
   :
18 |
19 | public struct ClockConfigurationEnvironmentKey: EnvironmentKey {
20 |     public static let defaultValue: ClockConfiguration = ClockConfiguration()
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockDateEnvironment.swift:4:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Binding<Date>' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | public struct ClockDateKey: EnvironmentKey {
 4 |     public static let defaultValue: Binding<Date> = .constant(Date())
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Binding<Date>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 | }
 6 |
SwiftUI.Binding:2:61: note: generic struct 'Binding' does not conform to the 'Sendable' protocol
 1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 2 | @frozen @propertyWrapper @dynamicMemberLookup public struct Binding<Value> {
   |                                                             `- note: generic struct 'Binding' does not conform to the 'Sendable' protocol
 3 |     public var transaction: Transaction
 4 |     public init(get: @escaping () -> Value, set: @escaping (Value) -> Void)
[4/49] Compiling SwiftClockUI ClockArmColorsEnvironment.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockArmColorsEnvironment.swift:14:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockArmColors' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct ClockArmColors: Equatable {
   |               `- note: consider making struct 'ClockArmColors' conform to the 'Sendable' protocol
 4 |     var minute: Color
 5 |     var hour: Color
   :
12 |
13 | public struct ClockArmColorsKey: EnvironmentKey {
14 |     public static let defaultValue = ClockArmColors(
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockArmColors' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |         minute: .primary,
16 |         hour: .primary
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockConfigurationEnvironment.swift:20:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct ClockConfiguration: Equatable {
   |               `- note: consider making struct 'ClockConfiguration' conform to the 'Sendable' protocol
 4 |     public var isLimitedHoursShown = false
 5 |     public var isMinuteIndicatorsShown = true
   :
18 |
19 | public struct ClockConfigurationEnvironmentKey: EnvironmentKey {
20 |     public static let defaultValue: ClockConfiguration = ClockConfiguration()
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockDateEnvironment.swift:4:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Binding<Date>' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | public struct ClockDateKey: EnvironmentKey {
 4 |     public static let defaultValue: Binding<Date> = .constant(Date())
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Binding<Date>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 | }
 6 |
SwiftUI.Binding:2:61: note: generic struct 'Binding' does not conform to the 'Sendable' protocol
 1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 2 | @frozen @propertyWrapper @dynamicMemberLookup public struct Binding<Value> {
   |                                                             `- note: generic struct 'Binding' does not conform to the 'Sendable' protocol
 3 |     public var transaction: Transaction
 4 |     public init(get: @escaping () -> Value, set: @escaping (Value) -> Void)
[5/49] Compiling SwiftClockUI ClockBorderColorEnvironment.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockArmColorsEnvironment.swift:14:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockArmColors' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct ClockArmColors: Equatable {
   |               `- note: consider making struct 'ClockArmColors' conform to the 'Sendable' protocol
 4 |     var minute: Color
 5 |     var hour: Color
   :
12 |
13 | public struct ClockArmColorsKey: EnvironmentKey {
14 |     public static let defaultValue = ClockArmColors(
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockArmColors' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |         minute: .primary,
16 |         hour: .primary
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockConfigurationEnvironment.swift:20:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct ClockConfiguration: Equatable {
   |               `- note: consider making struct 'ClockConfiguration' conform to the 'Sendable' protocol
 4 |     public var isLimitedHoursShown = false
 5 |     public var isMinuteIndicatorsShown = true
   :
18 |
19 | public struct ClockConfigurationEnvironmentKey: EnvironmentKey {
20 |     public static let defaultValue: ClockConfiguration = ClockConfiguration()
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockDateEnvironment.swift:4:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Binding<Date>' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | public struct ClockDateKey: EnvironmentKey {
 4 |     public static let defaultValue: Binding<Date> = .constant(Date())
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Binding<Date>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 | }
 6 |
SwiftUI.Binding:2:61: note: generic struct 'Binding' does not conform to the 'Sendable' protocol
 1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 2 | @frozen @propertyWrapper @dynamicMemberLookup public struct Binding<Value> {
   |                                                             `- note: generic struct 'Binding' does not conform to the 'Sendable' protocol
 3 |     public var transaction: Transaction
 4 |     public init(get: @escaping () -> Value, set: @escaping (Value) -> Void)
[6/49] Compiling SwiftClockUI ClockConfigurationEnvironment.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockArmColorsEnvironment.swift:14:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockArmColors' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct ClockArmColors: Equatable {
   |               `- note: consider making struct 'ClockArmColors' conform to the 'Sendable' protocol
 4 |     var minute: Color
 5 |     var hour: Color
   :
12 |
13 | public struct ClockArmColorsKey: EnvironmentKey {
14 |     public static let defaultValue = ClockArmColors(
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockArmColors' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |         minute: .primary,
16 |         hour: .primary
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockConfigurationEnvironment.swift:20:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct ClockConfiguration: Equatable {
   |               `- note: consider making struct 'ClockConfiguration' conform to the 'Sendable' protocol
 4 |     public var isLimitedHoursShown = false
 5 |     public var isMinuteIndicatorsShown = true
   :
18 |
19 | public struct ClockConfigurationEnvironmentKey: EnvironmentKey {
20 |     public static let defaultValue: ClockConfiguration = ClockConfiguration()
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockDateEnvironment.swift:4:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Binding<Date>' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | public struct ClockDateKey: EnvironmentKey {
 4 |     public static let defaultValue: Binding<Date> = .constant(Date())
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Binding<Date>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 | }
 6 |
SwiftUI.Binding:2:61: note: generic struct 'Binding' does not conform to the 'Sendable' protocol
 1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 2 | @frozen @propertyWrapper @dynamicMemberLookup public struct Binding<Value> {
   |                                                             `- note: generic struct 'Binding' does not conform to the 'Sendable' protocol
 3 |     public var transaction: Transaction
 4 |     public init(get: @escaping () -> Value, set: @escaping (Value) -> Void)
[7/49] Compiling SwiftClockUI ClockDateEnvironment.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockArmColorsEnvironment.swift:14:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockArmColors' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct ClockArmColors: Equatable {
   |               `- note: consider making struct 'ClockArmColors' conform to the 'Sendable' protocol
 4 |     var minute: Color
 5 |     var hour: Color
   :
12 |
13 | public struct ClockArmColorsKey: EnvironmentKey {
14 |     public static let defaultValue = ClockArmColors(
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockArmColors' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |         minute: .primary,
16 |         hour: .primary
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockConfigurationEnvironment.swift:20:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct ClockConfiguration: Equatable {
   |               `- note: consider making struct 'ClockConfiguration' conform to the 'Sendable' protocol
 4 |     public var isLimitedHoursShown = false
 5 |     public var isMinuteIndicatorsShown = true
   :
18 |
19 | public struct ClockConfigurationEnvironmentKey: EnvironmentKey {
20 |     public static let defaultValue: ClockConfiguration = ClockConfiguration()
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockDateEnvironment.swift:4:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Binding<Date>' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | public struct ClockDateKey: EnvironmentKey {
 4 |     public static let defaultValue: Binding<Date> = .constant(Date())
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Binding<Date>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 | }
 6 |
SwiftUI.Binding:2:61: note: generic struct 'Binding' does not conform to the 'Sendable' protocol
 1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 2 | @frozen @propertyWrapper @dynamicMemberLookup public struct Binding<Value> {
   |                                                             `- note: generic struct 'Binding' does not conform to the 'Sendable' protocol
 3 |     public var transaction: Transaction
 4 |     public init(get: @escaping () -> Value, set: @escaping (Value) -> Void)
[8/49] Compiling SwiftClockUI CGPoint+Circle.swift
[9/49] Compiling SwiftClockUI CGRect+Circle.swift
[10/49] Compiling SwiftClockUI Color+Background.swift
[11/49] Compiling SwiftClockUI Date+Clock.swift
[12/49] Compiling SwiftClockUI Double+Time.swift
[13/49] Compiling SwiftClockUI ClockIndicatorsColorEnvironment.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockRandomEnvironment.swift:23:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Random' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct Random {
   |               `- note: consider making struct 'Random' conform to the 'Sendable' protocol
 4 |     var controlRatio = (
 5 |         leftX: { CGFloat.random(in: 0.1...1) },
   :
21 |
22 | public struct ClockRandomKey: EnvironmentKey {
23 |     public static let defaultValue: Random = .random
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Random' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 | }
25 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockRandomEnvironment.swift:50:16: warning: static property 'random' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | extension Random {
50 |     static var random = Random()
   |                |- warning: static property 'random' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'random' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'random' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |     static var fixed: Random {
52 |         Random(
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockStyleEnvironment.swift:29:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public enum ClockStyle: Identifiable, CaseIterable {
   |             `- note: consider making enum 'ClockStyle' conform to the 'Sendable' protocol
 4 |     case classic
 5 |     case artNouveau
   :
27 |
28 | public struct ClockStyleKey: EnvironmentKey {
29 |     public static let defaultValue: ClockStyle = .classic
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | }
31 |
[14/49] Compiling SwiftClockUI ClockIsAnimationEnabledEnvironment.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockRandomEnvironment.swift:23:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Random' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct Random {
   |               `- note: consider making struct 'Random' conform to the 'Sendable' protocol
 4 |     var controlRatio = (
 5 |         leftX: { CGFloat.random(in: 0.1...1) },
   :
21 |
22 | public struct ClockRandomKey: EnvironmentKey {
23 |     public static let defaultValue: Random = .random
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Random' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 | }
25 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockRandomEnvironment.swift:50:16: warning: static property 'random' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | extension Random {
50 |     static var random = Random()
   |                |- warning: static property 'random' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'random' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'random' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |     static var fixed: Random {
52 |         Random(
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockStyleEnvironment.swift:29:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public enum ClockStyle: Identifiable, CaseIterable {
   |             `- note: consider making enum 'ClockStyle' conform to the 'Sendable' protocol
 4 |     case classic
 5 |     case artNouveau
   :
27 |
28 | public struct ClockStyleKey: EnvironmentKey {
29 |     public static let defaultValue: ClockStyle = .classic
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | }
31 |
[15/49] Compiling SwiftClockUI ClockRandomEnvironment.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockRandomEnvironment.swift:23:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Random' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct Random {
   |               `- note: consider making struct 'Random' conform to the 'Sendable' protocol
 4 |     var controlRatio = (
 5 |         leftX: { CGFloat.random(in: 0.1...1) },
   :
21 |
22 | public struct ClockRandomKey: EnvironmentKey {
23 |     public static let defaultValue: Random = .random
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Random' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 | }
25 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockRandomEnvironment.swift:50:16: warning: static property 'random' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | extension Random {
50 |     static var random = Random()
   |                |- warning: static property 'random' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'random' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'random' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |     static var fixed: Random {
52 |         Random(
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockStyleEnvironment.swift:29:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public enum ClockStyle: Identifiable, CaseIterable {
   |             `- note: consider making enum 'ClockStyle' conform to the 'Sendable' protocol
 4 |     case classic
 5 |     case artNouveau
   :
27 |
28 | public struct ClockStyleKey: EnvironmentKey {
29 |     public static let defaultValue: ClockStyle = .classic
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | }
31 |
[16/49] Compiling SwiftClockUI ClockStyleEnvironment.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockRandomEnvironment.swift:23:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Random' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct Random {
   |               `- note: consider making struct 'Random' conform to the 'Sendable' protocol
 4 |     var controlRatio = (
 5 |         leftX: { CGFloat.random(in: 0.1...1) },
   :
21 |
22 | public struct ClockRandomKey: EnvironmentKey {
23 |     public static let defaultValue: Random = .random
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Random' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 | }
25 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockRandomEnvironment.swift:50:16: warning: static property 'random' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | extension Random {
50 |     static var random = Random()
   |                |- warning: static property 'random' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'random' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'random' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |     static var fixed: Random {
52 |         Random(
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockStyleEnvironment.swift:29:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public enum ClockStyle: Identifiable, CaseIterable {
   |             `- note: consider making enum 'ClockStyle' conform to the 'Sendable' protocol
 4 |     case classic
 5 |     case artNouveau
   :
27 |
28 | public struct ClockStyleKey: EnvironmentKey {
29 |     public static let defaultValue: ClockStyle = .classic
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | }
31 |
[17/49] Compiling SwiftClockUI Angle+Circle.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockRandomEnvironment.swift:23:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Random' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct Random {
   |               `- note: consider making struct 'Random' conform to the 'Sendable' protocol
 4 |     var controlRatio = (
 5 |         leftX: { CGFloat.random(in: 0.1...1) },
   :
21 |
22 | public struct ClockRandomKey: EnvironmentKey {
23 |     public static let defaultValue: Random = .random
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Random' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 | }
25 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockRandomEnvironment.swift:50:16: warning: static property 'random' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | extension Random {
50 |     static var random = Random()
   |                |- warning: static property 'random' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'random' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'random' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |     static var fixed: Random {
52 |         Random(
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockStyleEnvironment.swift:29:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public enum ClockStyle: Identifiable, CaseIterable {
   |             `- note: consider making enum 'ClockStyle' conform to the 'Sendable' protocol
 4 |     case classic
 5 |     case artNouveau
   :
27 |
28 | public struct ClockStyleKey: EnvironmentKey {
29 |     public static let defaultValue: ClockStyle = .classic
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | }
31 |
[18/54] Compiling SwiftClockUI GeometryProxy+Diameter.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Extensions/NSBezierPath+CGPath.swift:12:13: warning: switch must be exhaustive; this is an error in the Swift 6 language mode
10 |         for i in 0 ..< self.elementCount {
11 |             let type = self.element(at: i, associatedPoints: &points)
12 |             switch type {
   |             |- warning: switch must be exhaustive; this is an error in the Swift 6 language mode
   |             |- note: add missing case: '.cubicCurveTo'
   |             `- note: add missing case: '.quadraticCurveTo'
13 |             case .moveTo: path.move(to: points[0])
14 |             case .lineTo: path.addLine(to: points[0])
[19/54] Compiling SwiftClockUI NSBezierPath+CGPath.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Extensions/NSBezierPath+CGPath.swift:12:13: warning: switch must be exhaustive; this is an error in the Swift 6 language mode
10 |         for i in 0 ..< self.elementCount {
11 |             let type = self.element(at: i, associatedPoints: &points)
12 |             switch type {
   |             |- warning: switch must be exhaustive; this is an error in the Swift 6 language mode
   |             |- note: add missing case: '.cubicCurveTo'
   |             `- note: add missing case: '.quadraticCurveTo'
13 |             case .moveTo: path.move(to: points[0])
14 |             case .lineTo: path.addLine(to: points[0])
[20/54] Compiling SwiftClockUI Path+Circle.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Extensions/NSBezierPath+CGPath.swift:12:13: warning: switch must be exhaustive; this is an error in the Swift 6 language mode
10 |         for i in 0 ..< self.elementCount {
11 |             let type = self.element(at: i, associatedPoints: &points)
12 |             switch type {
   |             |- warning: switch must be exhaustive; this is an error in the Swift 6 language mode
   |             |- note: add missing case: '.cubicCurveTo'
   |             `- note: add missing case: '.quadraticCurveTo'
13 |             case .moveTo: path.move(to: points[0])
14 |             case .lineTo: path.addLine(to: points[0])
[21/54] Compiling SwiftClockUI Path+VerticalMirror.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Extensions/NSBezierPath+CGPath.swift:12:13: warning: switch must be exhaustive; this is an error in the Swift 6 language mode
10 |         for i in 0 ..< self.elementCount {
11 |             let type = self.element(at: i, associatedPoints: &points)
12 |             switch type {
   |             |- warning: switch must be exhaustive; this is an error in the Swift 6 language mode
   |             |- note: add missing case: '.cubicCurveTo'
   |             `- note: add missing case: '.quadraticCurveTo'
13 |             case .moveTo: path.move(to: points[0])
14 |             case .lineTo: path.addLine(to: points[0])
[22/54] Compiling SwiftClockUI ClockFaceEnvironment.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Extensions/NSBezierPath+CGPath.swift:12:13: warning: switch must be exhaustive; this is an error in the Swift 6 language mode
10 |         for i in 0 ..< self.elementCount {
11 |             let type = self.element(at: i, associatedPoints: &points)
12 |             switch type {
   |             |- warning: switch must be exhaustive; this is an error in the Swift 6 language mode
   |             |- note: add missing case: '.cubicCurveTo'
   |             `- note: add missing case: '.quadraticCurveTo'
13 |             case .moveTo: path.move(to: points[0])
14 |             case .lineTo: path.addLine(to: points[0])
[23/54] Compiling SwiftClockUI Moon.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Steampunk/Plate.swift:90:16: warning: static property 'defaultValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 88 |
 89 | private struct RectPreferenceKey: PreferenceKey {
 90 |     static var defaultValue: CGRect = .zero
    |                |- warning: static property 'defaultValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |     static func reduce(value: inout CGRect, nextValue: () -> CGRect) {}
 92 | }
[24/54] Compiling SwiftClockUI Plate.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Steampunk/Plate.swift:90:16: warning: static property 'defaultValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 88 |
 89 | private struct RectPreferenceKey: PreferenceKey {
 90 |     static var defaultValue: CGRect = .zero
    |                |- warning: static property 'defaultValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |     static func reduce(value: inout CGRect, nextValue: () -> CGRect) {}
 92 | }
[25/54] Compiling SwiftClockUI SteampunkHourArm.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Steampunk/Plate.swift:90:16: warning: static property 'defaultValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 88 |
 89 | private struct RectPreferenceKey: PreferenceKey {
 90 |     static var defaultValue: CGRect = .zero
    |                |- warning: static property 'defaultValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |     static func reduce(value: inout CGRect, nextValue: () -> CGRect) {}
 92 | }
[26/54] Compiling SwiftClockUI SteampunkMinuteArm.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Steampunk/Plate.swift:90:16: warning: static property 'defaultValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 88 |
 89 | private struct RectPreferenceKey: PreferenceKey {
 90 |     static var defaultValue: CGRect = .zero
    |                |- warning: static property 'defaultValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |     static func reduce(value: inout CGRect, nextValue: () -> CGRect) {}
 92 | }
[27/54] Compiling SwiftClockUI WindUpKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Steampunk/Plate.swift:90:16: warning: static property 'defaultValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 88 |
 89 | private struct RectPreferenceKey: PreferenceKey {
 90 |     static var defaultValue: CGRect = .zero
    |                |- warning: static property 'defaultValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |     static func reduce(value: inout CGRect, nextValue: () -> CGRect) {}
 92 | }
[28/54] Emitting module SwiftClockUI
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Arm/DrawnArm.swift:26:9: warning: stored property 'controlRatios' of 'Sendable'-conforming struct 'DrawnArmShape' has non-sendable type 'Random.ControlRatio'; this is an error in the Swift 6 language mode
 24 |     let type: ArmType
 25 |     var drawStep: CGFloat
 26 |     let controlRatios: Random.ControlRatio
    |         `- warning: stored property 'controlRatios' of 'Sendable'-conforming struct 'DrawnArmShape' has non-sendable type 'Random.ControlRatio'; this is an error in the Swift 6 language mode
 27 |
 28 |     var animatableData: CGFloat {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockRandomEnvironment.swift:34:12: note: consider making struct 'ControlRatio' conform to the 'Sendable' protocol
32 |
33 | public extension Random {
34 |     struct ControlRatio {
   |            `- note: consider making struct 'ControlRatio' conform to the 'Sendable' protocol
35 |         let leftX: CGFloat
36 |         let leftY: CGFloat
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Indicators/DrawnIndicators.swift:29:37: warning: stored property '_random' of 'Sendable'-conforming struct 'HoursShape' has non-sendable type 'Environment<Random>'; this is an error in the Swift 6 language mode
 27 |
 28 | private struct HoursShape: Shape {
 29 |     @Environment(\.clockRandom) var random
    |                                     `- warning: stored property '_random' of 'Sendable'-conforming struct 'HoursShape' has non-sendable type 'Environment<Random>'; this is an error in the Swift 6 language mode
 30 |     var drawStep: CGFloat
 31 |
SwiftUI.Environment:2:40: note: generic struct 'Environment' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen @propertyWrapper public struct Environment<Value> : DynamicProperty {
  |                                        `- note: generic struct 'Environment' does not conform to the 'Sendable' protocol
3 |     @inlinable public init(_ keyPath: KeyPath<EnvironmentValues, Value>)
4 |     @inlinable public var wrappedValue: Value { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Indicators/DrawnIndicators.swift:59:44: warning: stored property '_configuration' of 'Sendable'-conforming struct 'MinutesShape' has non-sendable type 'Environment<ClockConfiguration>'; this is an error in the Swift 6 language mode
 57 |
 58 | private struct MinutesShape: Shape {
 59 |     @Environment(\.clockConfiguration) var configuration
    |                                            `- warning: stored property '_configuration' of 'Sendable'-conforming struct 'MinutesShape' has non-sendable type 'Environment<ClockConfiguration>'; this is an error in the Swift 6 language mode
 60 |     @Environment(\.clockRandom) var random
 61 |     var drawStep: CGFloat
SwiftUI.Environment:2:40: note: generic struct 'Environment' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen @propertyWrapper public struct Environment<Value> : DynamicProperty {
  |                                        `- note: generic struct 'Environment' does not conform to the 'Sendable' protocol
3 |     @inlinable public init(_ keyPath: KeyPath<EnvironmentValues, Value>)
4 |     @inlinable public var wrappedValue: Value { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Indicators/DrawnIndicators.swift:60:37: warning: stored property '_random' of 'Sendable'-conforming struct 'MinutesShape' has non-sendable type 'Environment<Random>'; this is an error in the Swift 6 language mode
 58 | private struct MinutesShape: Shape {
 59 |     @Environment(\.clockConfiguration) var configuration
 60 |     @Environment(\.clockRandom) var random
    |                                     `- warning: stored property '_random' of 'Sendable'-conforming struct 'MinutesShape' has non-sendable type 'Environment<Random>'; this is an error in the Swift 6 language mode
 61 |     var drawStep: CGFloat
 62 |
SwiftUI.Environment:2:40: note: generic struct 'Environment' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen @propertyWrapper public struct Environment<Value> : DynamicProperty {
  |                                        `- note: generic struct 'Environment' does not conform to the 'Sendable' protocol
3 |     @inlinable public init(_ keyPath: KeyPath<EnvironmentValues, Value>)
4 |     @inlinable public var wrappedValue: Value { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Indicators/DrawnIndicators.swift:97:9: warning: stored property 'controlRatios' of 'Sendable'-conforming struct 'DrawnIndicator' has non-sendable type 'Random.ControlRatio'; this is an error in the Swift 6 language mode
 95 | private struct DrawnIndicator: Shape {
 96 |     var drawStep: CGFloat
 97 |     let controlRatios: Random.ControlRatio
    |         `- warning: stored property 'controlRatios' of 'Sendable'-conforming struct 'DrawnIndicator' has non-sendable type 'Random.ControlRatio'; this is an error in the Swift 6 language mode
 98 |
 99 |     var animatableData: CGFloat {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockRandomEnvironment.swift:34:12: note: consider making struct 'ControlRatio' conform to the 'Sendable' protocol
32 |
33 | public extension Random {
34 |     struct ControlRatio {
   |            `- note: consider making struct 'ControlRatio' conform to the 'Sendable' protocol
35 |         let leftX: CGFloat
36 |         let leftY: CGFloat
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Steampunk/Plate.swift:90:16: warning: static property 'defaultValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 88 |
 89 | private struct RectPreferenceKey: PreferenceKey {
 90 |     static var defaultValue: CGRect = .zero
    |                |- warning: static property 'defaultValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |     static func reduce(value: inout CGRect, nextValue: () -> CGRect) {}
 92 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockArmColorsEnvironment.swift:14:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockArmColors' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct ClockArmColors: Equatable {
   |               `- note: consider making struct 'ClockArmColors' conform to the 'Sendable' protocol
 4 |     var minute: Color
 5 |     var hour: Color
   :
12 |
13 | public struct ClockArmColorsKey: EnvironmentKey {
14 |     public static let defaultValue = ClockArmColors(
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockArmColors' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |         minute: .primary,
16 |         hour: .primary
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockConfigurationEnvironment.swift:20:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct ClockConfiguration: Equatable {
   |               `- note: consider making struct 'ClockConfiguration' conform to the 'Sendable' protocol
 4 |     public var isLimitedHoursShown = false
 5 |     public var isMinuteIndicatorsShown = true
   :
18 |
19 | public struct ClockConfigurationEnvironmentKey: EnvironmentKey {
20 |     public static let defaultValue: ClockConfiguration = ClockConfiguration()
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockDateEnvironment.swift:4:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Binding<Date>' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | public struct ClockDateKey: EnvironmentKey {
 4 |     public static let defaultValue: Binding<Date> = .constant(Date())
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Binding<Date>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 | }
 6 |
SwiftUI.Binding:2:61: note: generic struct 'Binding' does not conform to the 'Sendable' protocol
 1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 2 | @frozen @propertyWrapper @dynamicMemberLookup public struct Binding<Value> {
   |                                                             `- note: generic struct 'Binding' does not conform to the 'Sendable' protocol
 3 |     public var transaction: Transaction
 4 |     public init(get: @escaping () -> Value, set: @escaping (Value) -> Void)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockRandomEnvironment.swift:23:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Random' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct Random {
   |               `- note: consider making struct 'Random' conform to the 'Sendable' protocol
 4 |     var controlRatio = (
 5 |         leftX: { CGFloat.random(in: 0.1...1) },
   :
21 |
22 | public struct ClockRandomKey: EnvironmentKey {
23 |     public static let defaultValue: Random = .random
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Random' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 | }
25 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockRandomEnvironment.swift:50:16: warning: static property 'random' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | extension Random {
50 |     static var random = Random()
   |                |- warning: static property 'random' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'random' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'random' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |     static var fixed: Random {
52 |         Random(
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockStyleEnvironment.swift:29:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public enum ClockStyle: Identifiable, CaseIterable {
   |             `- note: consider making enum 'ClockStyle' conform to the 'Sendable' protocol
 4 |     case classic
 5 |     case artNouveau
   :
27 |
28 | public struct ClockStyleKey: EnvironmentKey {
29 |     public static let defaultValue: ClockStyle = .classic
   |                       |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ClockStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | }
31 |
[29/54] Compiling SwiftClockUI ClockView.swift
[30/54] Compiling SwiftClockUI ArmDragGesture.swift
[31/54] Compiling SwiftClockUI ArmType.swift
[32/54] Compiling SwiftClockUI ArmView.swift
[33/54] Compiling SwiftClockUI ArtNouveauArm.swift
[34/54] Compiling SwiftClockUI ClassicArm.swift
[35/54] Compiling SwiftClockUI ClockBorderView.swift
[36/54] Compiling SwiftClockUI DrawnClockBorder.swift
[37/54] Compiling SwiftClockUI SteampunkClockBorder.swift
[38/54] Compiling SwiftClockUI ArtNouveauIndicators.swift
[39/54] Compiling SwiftClockUI ClassicIndicators.swift
[40/54] Compiling SwiftClockUI DrawnArm.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Arm/DrawnArm.swift:26:9: warning: stored property 'controlRatios' of 'Sendable'-conforming struct 'DrawnArmShape' has non-sendable type 'Random.ControlRatio'; this is an error in the Swift 6 language mode
 24 |     let type: ArmType
 25 |     var drawStep: CGFloat
 26 |     let controlRatios: Random.ControlRatio
    |         `- warning: stored property 'controlRatios' of 'Sendable'-conforming struct 'DrawnArmShape' has non-sendable type 'Random.ControlRatio'; this is an error in the Swift 6 language mode
 27 |
 28 |     var animatableData: CGFloat {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockRandomEnvironment.swift:34:12: note: consider making struct 'ControlRatio' conform to the 'Sendable' protocol
32 |
33 | public extension Random {
34 |     struct ControlRatio {
   |            `- note: consider making struct 'ControlRatio' conform to the 'Sendable' protocol
35 |         let leftX: CGFloat
36 |         let leftY: CGFloat
[41/54] Compiling SwiftClockUI SteampunkArm.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Arm/DrawnArm.swift:26:9: warning: stored property 'controlRatios' of 'Sendable'-conforming struct 'DrawnArmShape' has non-sendable type 'Random.ControlRatio'; this is an error in the Swift 6 language mode
 24 |     let type: ArmType
 25 |     var drawStep: CGFloat
 26 |     let controlRatios: Random.ControlRatio
    |         `- warning: stored property 'controlRatios' of 'Sendable'-conforming struct 'DrawnArmShape' has non-sendable type 'Random.ControlRatio'; this is an error in the Swift 6 language mode
 27 |
 28 |     var animatableData: CGFloat {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockRandomEnvironment.swift:34:12: note: consider making struct 'ControlRatio' conform to the 'Sendable' protocol
32 |
33 | public extension Random {
34 |     struct ControlRatio {
   |            `- note: consider making struct 'ControlRatio' conform to the 'Sendable' protocol
35 |         let leftX: CGFloat
36 |         let leftY: CGFloat
[42/54] Compiling SwiftClockUI Arms.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Arm/DrawnArm.swift:26:9: warning: stored property 'controlRatios' of 'Sendable'-conforming struct 'DrawnArmShape' has non-sendable type 'Random.ControlRatio'; this is an error in the Swift 6 language mode
 24 |     let type: ArmType
 25 |     var drawStep: CGFloat
 26 |     let controlRatios: Random.ControlRatio
    |         `- warning: stored property 'controlRatios' of 'Sendable'-conforming struct 'DrawnArmShape' has non-sendable type 'Random.ControlRatio'; this is an error in the Swift 6 language mode
 27 |
 28 |     var animatableData: CGFloat {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockRandomEnvironment.swift:34:12: note: consider making struct 'ControlRatio' conform to the 'Sendable' protocol
32 |
33 | public extension Random {
34 |     struct ControlRatio {
   |            `- note: consider making struct 'ControlRatio' conform to the 'Sendable' protocol
35 |         let leftX: CGFloat
36 |         let leftY: CGFloat
[43/54] Compiling SwiftClockUI ArtNouveauClockBorder.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Arm/DrawnArm.swift:26:9: warning: stored property 'controlRatios' of 'Sendable'-conforming struct 'DrawnArmShape' has non-sendable type 'Random.ControlRatio'; this is an error in the Swift 6 language mode
 24 |     let type: ArmType
 25 |     var drawStep: CGFloat
 26 |     let controlRatios: Random.ControlRatio
    |         `- warning: stored property 'controlRatios' of 'Sendable'-conforming struct 'DrawnArmShape' has non-sendable type 'Random.ControlRatio'; this is an error in the Swift 6 language mode
 27 |
 28 |     var animatableData: CGFloat {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockRandomEnvironment.swift:34:12: note: consider making struct 'ControlRatio' conform to the 'Sendable' protocol
32 |
33 | public extension Random {
34 |     struct ControlRatio {
   |            `- note: consider making struct 'ControlRatio' conform to the 'Sendable' protocol
35 |         let leftX: CGFloat
36 |         let leftY: CGFloat
[44/54] Compiling SwiftClockUI ClassicClockBorder.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Arm/DrawnArm.swift:26:9: warning: stored property 'controlRatios' of 'Sendable'-conforming struct 'DrawnArmShape' has non-sendable type 'Random.ControlRatio'; this is an error in the Swift 6 language mode
 24 |     let type: ArmType
 25 |     var drawStep: CGFloat
 26 |     let controlRatios: Random.ControlRatio
    |         `- warning: stored property 'controlRatios' of 'Sendable'-conforming struct 'DrawnArmShape' has non-sendable type 'Random.ControlRatio'; this is an error in the Swift 6 language mode
 27 |
 28 |     var animatableData: CGFloat {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockRandomEnvironment.swift:34:12: note: consider making struct 'ControlRatio' conform to the 'Sendable' protocol
32 |
33 | public extension Random {
34 |     struct ControlRatio {
   |            `- note: consider making struct 'ControlRatio' conform to the 'Sendable' protocol
35 |         let leftX: CGFloat
36 |         let leftY: CGFloat
[45/54] Compiling SwiftClockUI DrawnIndicators.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Indicators/DrawnIndicators.swift:29:37: warning: stored property '_random' of 'Sendable'-conforming struct 'HoursShape' has non-sendable type 'Environment<Random>'; this is an error in the Swift 6 language mode
 27 |
 28 | private struct HoursShape: Shape {
 29 |     @Environment(\.clockRandom) var random
    |                                     `- warning: stored property '_random' of 'Sendable'-conforming struct 'HoursShape' has non-sendable type 'Environment<Random>'; this is an error in the Swift 6 language mode
 30 |     var drawStep: CGFloat
 31 |
SwiftUI.Environment:2:40: note: generic struct 'Environment' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen @propertyWrapper public struct Environment<Value> : DynamicProperty {
  |                                        `- note: generic struct 'Environment' does not conform to the 'Sendable' protocol
3 |     @inlinable public init(_ keyPath: KeyPath<EnvironmentValues, Value>)
4 |     @inlinable public var wrappedValue: Value { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Indicators/DrawnIndicators.swift:59:44: warning: stored property '_configuration' of 'Sendable'-conforming struct 'MinutesShape' has non-sendable type 'Environment<ClockConfiguration>'; this is an error in the Swift 6 language mode
 57 |
 58 | private struct MinutesShape: Shape {
 59 |     @Environment(\.clockConfiguration) var configuration
    |                                            `- warning: stored property '_configuration' of 'Sendable'-conforming struct 'MinutesShape' has non-sendable type 'Environment<ClockConfiguration>'; this is an error in the Swift 6 language mode
 60 |     @Environment(\.clockRandom) var random
 61 |     var drawStep: CGFloat
SwiftUI.Environment:2:40: note: generic struct 'Environment' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen @propertyWrapper public struct Environment<Value> : DynamicProperty {
  |                                        `- note: generic struct 'Environment' does not conform to the 'Sendable' protocol
3 |     @inlinable public init(_ keyPath: KeyPath<EnvironmentValues, Value>)
4 |     @inlinable public var wrappedValue: Value { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Indicators/DrawnIndicators.swift:60:37: warning: stored property '_random' of 'Sendable'-conforming struct 'MinutesShape' has non-sendable type 'Environment<Random>'; this is an error in the Swift 6 language mode
 58 | private struct MinutesShape: Shape {
 59 |     @Environment(\.clockConfiguration) var configuration
 60 |     @Environment(\.clockRandom) var random
    |                                     `- warning: stored property '_random' of 'Sendable'-conforming struct 'MinutesShape' has non-sendable type 'Environment<Random>'; this is an error in the Swift 6 language mode
 61 |     var drawStep: CGFloat
 62 |
SwiftUI.Environment:2:40: note: generic struct 'Environment' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen @propertyWrapper public struct Environment<Value> : DynamicProperty {
  |                                        `- note: generic struct 'Environment' does not conform to the 'Sendable' protocol
3 |     @inlinable public init(_ keyPath: KeyPath<EnvironmentValues, Value>)
4 |     @inlinable public var wrappedValue: Value { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Indicators/DrawnIndicators.swift:97:9: warning: stored property 'controlRatios' of 'Sendable'-conforming struct 'DrawnIndicator' has non-sendable type 'Random.ControlRatio'; this is an error in the Swift 6 language mode
 95 | private struct DrawnIndicator: Shape {
 96 |     var drawStep: CGFloat
 97 |     let controlRatios: Random.ControlRatio
    |         `- warning: stored property 'controlRatios' of 'Sendable'-conforming struct 'DrawnIndicator' has non-sendable type 'Random.ControlRatio'; this is an error in the Swift 6 language mode
 98 |
 99 |     var animatableData: CGFloat {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockRandomEnvironment.swift:34:12: note: consider making struct 'ControlRatio' conform to the 'Sendable' protocol
32 |
33 | public extension Random {
34 |     struct ControlRatio {
   |            `- note: consider making struct 'ControlRatio' conform to the 'Sendable' protocol
35 |         let leftX: CGFloat
36 |         let leftY: CGFloat
[46/54] Compiling SwiftClockUI IndicatorsView.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Indicators/DrawnIndicators.swift:29:37: warning: stored property '_random' of 'Sendable'-conforming struct 'HoursShape' has non-sendable type 'Environment<Random>'; this is an error in the Swift 6 language mode
 27 |
 28 | private struct HoursShape: Shape {
 29 |     @Environment(\.clockRandom) var random
    |                                     `- warning: stored property '_random' of 'Sendable'-conforming struct 'HoursShape' has non-sendable type 'Environment<Random>'; this is an error in the Swift 6 language mode
 30 |     var drawStep: CGFloat
 31 |
SwiftUI.Environment:2:40: note: generic struct 'Environment' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen @propertyWrapper public struct Environment<Value> : DynamicProperty {
  |                                        `- note: generic struct 'Environment' does not conform to the 'Sendable' protocol
3 |     @inlinable public init(_ keyPath: KeyPath<EnvironmentValues, Value>)
4 |     @inlinable public var wrappedValue: Value { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Indicators/DrawnIndicators.swift:59:44: warning: stored property '_configuration' of 'Sendable'-conforming struct 'MinutesShape' has non-sendable type 'Environment<ClockConfiguration>'; this is an error in the Swift 6 language mode
 57 |
 58 | private struct MinutesShape: Shape {
 59 |     @Environment(\.clockConfiguration) var configuration
    |                                            `- warning: stored property '_configuration' of 'Sendable'-conforming struct 'MinutesShape' has non-sendable type 'Environment<ClockConfiguration>'; this is an error in the Swift 6 language mode
 60 |     @Environment(\.clockRandom) var random
 61 |     var drawStep: CGFloat
SwiftUI.Environment:2:40: note: generic struct 'Environment' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen @propertyWrapper public struct Environment<Value> : DynamicProperty {
  |                                        `- note: generic struct 'Environment' does not conform to the 'Sendable' protocol
3 |     @inlinable public init(_ keyPath: KeyPath<EnvironmentValues, Value>)
4 |     @inlinable public var wrappedValue: Value { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Indicators/DrawnIndicators.swift:60:37: warning: stored property '_random' of 'Sendable'-conforming struct 'MinutesShape' has non-sendable type 'Environment<Random>'; this is an error in the Swift 6 language mode
 58 | private struct MinutesShape: Shape {
 59 |     @Environment(\.clockConfiguration) var configuration
 60 |     @Environment(\.clockRandom) var random
    |                                     `- warning: stored property '_random' of 'Sendable'-conforming struct 'MinutesShape' has non-sendable type 'Environment<Random>'; this is an error in the Swift 6 language mode
 61 |     var drawStep: CGFloat
 62 |
SwiftUI.Environment:2:40: note: generic struct 'Environment' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen @propertyWrapper public struct Environment<Value> : DynamicProperty {
  |                                        `- note: generic struct 'Environment' does not conform to the 'Sendable' protocol
3 |     @inlinable public init(_ keyPath: KeyPath<EnvironmentValues, Value>)
4 |     @inlinable public var wrappedValue: Value { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Indicators/DrawnIndicators.swift:97:9: warning: stored property 'controlRatios' of 'Sendable'-conforming struct 'DrawnIndicator' has non-sendable type 'Random.ControlRatio'; this is an error in the Swift 6 language mode
 95 | private struct DrawnIndicator: Shape {
 96 |     var drawStep: CGFloat
 97 |     let controlRatios: Random.ControlRatio
    |         `- warning: stored property 'controlRatios' of 'Sendable'-conforming struct 'DrawnIndicator' has non-sendable type 'Random.ControlRatio'; this is an error in the Swift 6 language mode
 98 |
 99 |     var animatableData: CGFloat {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockRandomEnvironment.swift:34:12: note: consider making struct 'ControlRatio' conform to the 'Sendable' protocol
32 |
33 | public extension Random {
34 |     struct ControlRatio {
   |            `- note: consider making struct 'ControlRatio' conform to the 'Sendable' protocol
35 |         let leftX: CGFloat
36 |         let leftY: CGFloat
[47/54] Compiling SwiftClockUI RomanNumber.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Indicators/DrawnIndicators.swift:29:37: warning: stored property '_random' of 'Sendable'-conforming struct 'HoursShape' has non-sendable type 'Environment<Random>'; this is an error in the Swift 6 language mode
 27 |
 28 | private struct HoursShape: Shape {
 29 |     @Environment(\.clockRandom) var random
    |                                     `- warning: stored property '_random' of 'Sendable'-conforming struct 'HoursShape' has non-sendable type 'Environment<Random>'; this is an error in the Swift 6 language mode
 30 |     var drawStep: CGFloat
 31 |
SwiftUI.Environment:2:40: note: generic struct 'Environment' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen @propertyWrapper public struct Environment<Value> : DynamicProperty {
  |                                        `- note: generic struct 'Environment' does not conform to the 'Sendable' protocol
3 |     @inlinable public init(_ keyPath: KeyPath<EnvironmentValues, Value>)
4 |     @inlinable public var wrappedValue: Value { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Indicators/DrawnIndicators.swift:59:44: warning: stored property '_configuration' of 'Sendable'-conforming struct 'MinutesShape' has non-sendable type 'Environment<ClockConfiguration>'; this is an error in the Swift 6 language mode
 57 |
 58 | private struct MinutesShape: Shape {
 59 |     @Environment(\.clockConfiguration) var configuration
    |                                            `- warning: stored property '_configuration' of 'Sendable'-conforming struct 'MinutesShape' has non-sendable type 'Environment<ClockConfiguration>'; this is an error in the Swift 6 language mode
 60 |     @Environment(\.clockRandom) var random
 61 |     var drawStep: CGFloat
SwiftUI.Environment:2:40: note: generic struct 'Environment' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen @propertyWrapper public struct Environment<Value> : DynamicProperty {
  |                                        `- note: generic struct 'Environment' does not conform to the 'Sendable' protocol
3 |     @inlinable public init(_ keyPath: KeyPath<EnvironmentValues, Value>)
4 |     @inlinable public var wrappedValue: Value { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Indicators/DrawnIndicators.swift:60:37: warning: stored property '_random' of 'Sendable'-conforming struct 'MinutesShape' has non-sendable type 'Environment<Random>'; this is an error in the Swift 6 language mode
 58 | private struct MinutesShape: Shape {
 59 |     @Environment(\.clockConfiguration) var configuration
 60 |     @Environment(\.clockRandom) var random
    |                                     `- warning: stored property '_random' of 'Sendable'-conforming struct 'MinutesShape' has non-sendable type 'Environment<Random>'; this is an error in the Swift 6 language mode
 61 |     var drawStep: CGFloat
 62 |
SwiftUI.Environment:2:40: note: generic struct 'Environment' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen @propertyWrapper public struct Environment<Value> : DynamicProperty {
  |                                        `- note: generic struct 'Environment' does not conform to the 'Sendable' protocol
3 |     @inlinable public init(_ keyPath: KeyPath<EnvironmentValues, Value>)
4 |     @inlinable public var wrappedValue: Value { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Indicators/DrawnIndicators.swift:97:9: warning: stored property 'controlRatios' of 'Sendable'-conforming struct 'DrawnIndicator' has non-sendable type 'Random.ControlRatio'; this is an error in the Swift 6 language mode
 95 | private struct DrawnIndicator: Shape {
 96 |     var drawStep: CGFloat
 97 |     let controlRatios: Random.ControlRatio
    |         `- warning: stored property 'controlRatios' of 'Sendable'-conforming struct 'DrawnIndicator' has non-sendable type 'Random.ControlRatio'; this is an error in the Swift 6 language mode
 98 |
 99 |     var animatableData: CGFloat {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockRandomEnvironment.swift:34:12: note: consider making struct 'ControlRatio' conform to the 'Sendable' protocol
32 |
33 | public extension Random {
34 |     struct ControlRatio {
   |            `- note: consider making struct 'ControlRatio' conform to the 'Sendable' protocol
35 |         let leftX: CGFloat
36 |         let leftY: CGFloat
[48/54] Compiling SwiftClockUI SteampunkIndicators.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Indicators/DrawnIndicators.swift:29:37: warning: stored property '_random' of 'Sendable'-conforming struct 'HoursShape' has non-sendable type 'Environment<Random>'; this is an error in the Swift 6 language mode
 27 |
 28 | private struct HoursShape: Shape {
 29 |     @Environment(\.clockRandom) var random
    |                                     `- warning: stored property '_random' of 'Sendable'-conforming struct 'HoursShape' has non-sendable type 'Environment<Random>'; this is an error in the Swift 6 language mode
 30 |     var drawStep: CGFloat
 31 |
SwiftUI.Environment:2:40: note: generic struct 'Environment' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen @propertyWrapper public struct Environment<Value> : DynamicProperty {
  |                                        `- note: generic struct 'Environment' does not conform to the 'Sendable' protocol
3 |     @inlinable public init(_ keyPath: KeyPath<EnvironmentValues, Value>)
4 |     @inlinable public var wrappedValue: Value { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Indicators/DrawnIndicators.swift:59:44: warning: stored property '_configuration' of 'Sendable'-conforming struct 'MinutesShape' has non-sendable type 'Environment<ClockConfiguration>'; this is an error in the Swift 6 language mode
 57 |
 58 | private struct MinutesShape: Shape {
 59 |     @Environment(\.clockConfiguration) var configuration
    |                                            `- warning: stored property '_configuration' of 'Sendable'-conforming struct 'MinutesShape' has non-sendable type 'Environment<ClockConfiguration>'; this is an error in the Swift 6 language mode
 60 |     @Environment(\.clockRandom) var random
 61 |     var drawStep: CGFloat
SwiftUI.Environment:2:40: note: generic struct 'Environment' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen @propertyWrapper public struct Environment<Value> : DynamicProperty {
  |                                        `- note: generic struct 'Environment' does not conform to the 'Sendable' protocol
3 |     @inlinable public init(_ keyPath: KeyPath<EnvironmentValues, Value>)
4 |     @inlinable public var wrappedValue: Value { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Indicators/DrawnIndicators.swift:60:37: warning: stored property '_random' of 'Sendable'-conforming struct 'MinutesShape' has non-sendable type 'Environment<Random>'; this is an error in the Swift 6 language mode
 58 | private struct MinutesShape: Shape {
 59 |     @Environment(\.clockConfiguration) var configuration
 60 |     @Environment(\.clockRandom) var random
    |                                     `- warning: stored property '_random' of 'Sendable'-conforming struct 'MinutesShape' has non-sendable type 'Environment<Random>'; this is an error in the Swift 6 language mode
 61 |     var drawStep: CGFloat
 62 |
SwiftUI.Environment:2:40: note: generic struct 'Environment' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen @propertyWrapper public struct Environment<Value> : DynamicProperty {
  |                                        `- note: generic struct 'Environment' does not conform to the 'Sendable' protocol
3 |     @inlinable public init(_ keyPath: KeyPath<EnvironmentValues, Value>)
4 |     @inlinable public var wrappedValue: Value { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Indicators/DrawnIndicators.swift:97:9: warning: stored property 'controlRatios' of 'Sendable'-conforming struct 'DrawnIndicator' has non-sendable type 'Random.ControlRatio'; this is an error in the Swift 6 language mode
 95 | private struct DrawnIndicator: Shape {
 96 |     var drawStep: CGFloat
 97 |     let controlRatios: Random.ControlRatio
    |         `- warning: stored property 'controlRatios' of 'Sendable'-conforming struct 'DrawnIndicator' has non-sendable type 'Random.ControlRatio'; this is an error in the Swift 6 language mode
 98 |
 99 |     var animatableData: CGFloat {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockRandomEnvironment.swift:34:12: note: consider making struct 'ControlRatio' conform to the 'Sendable' protocol
32 |
33 | public extension Random {
34 |     struct ControlRatio {
   |            `- note: consider making struct 'ControlRatio' conform to the 'Sendable' protocol
35 |         let leftX: CGFloat
36 |         let leftY: CGFloat
[49/54] Compiling SwiftClockUI Cogwheel.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Indicators/DrawnIndicators.swift:29:37: warning: stored property '_random' of 'Sendable'-conforming struct 'HoursShape' has non-sendable type 'Environment<Random>'; this is an error in the Swift 6 language mode
 27 |
 28 | private struct HoursShape: Shape {
 29 |     @Environment(\.clockRandom) var random
    |                                     `- warning: stored property '_random' of 'Sendable'-conforming struct 'HoursShape' has non-sendable type 'Environment<Random>'; this is an error in the Swift 6 language mode
 30 |     var drawStep: CGFloat
 31 |
SwiftUI.Environment:2:40: note: generic struct 'Environment' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen @propertyWrapper public struct Environment<Value> : DynamicProperty {
  |                                        `- note: generic struct 'Environment' does not conform to the 'Sendable' protocol
3 |     @inlinable public init(_ keyPath: KeyPath<EnvironmentValues, Value>)
4 |     @inlinable public var wrappedValue: Value { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Indicators/DrawnIndicators.swift:59:44: warning: stored property '_configuration' of 'Sendable'-conforming struct 'MinutesShape' has non-sendable type 'Environment<ClockConfiguration>'; this is an error in the Swift 6 language mode
 57 |
 58 | private struct MinutesShape: Shape {
 59 |     @Environment(\.clockConfiguration) var configuration
    |                                            `- warning: stored property '_configuration' of 'Sendable'-conforming struct 'MinutesShape' has non-sendable type 'Environment<ClockConfiguration>'; this is an error in the Swift 6 language mode
 60 |     @Environment(\.clockRandom) var random
 61 |     var drawStep: CGFloat
SwiftUI.Environment:2:40: note: generic struct 'Environment' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen @propertyWrapper public struct Environment<Value> : DynamicProperty {
  |                                        `- note: generic struct 'Environment' does not conform to the 'Sendable' protocol
3 |     @inlinable public init(_ keyPath: KeyPath<EnvironmentValues, Value>)
4 |     @inlinable public var wrappedValue: Value { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Indicators/DrawnIndicators.swift:60:37: warning: stored property '_random' of 'Sendable'-conforming struct 'MinutesShape' has non-sendable type 'Environment<Random>'; this is an error in the Swift 6 language mode
 58 | private struct MinutesShape: Shape {
 59 |     @Environment(\.clockConfiguration) var configuration
 60 |     @Environment(\.clockRandom) var random
    |                                     `- warning: stored property '_random' of 'Sendable'-conforming struct 'MinutesShape' has non-sendable type 'Environment<Random>'; this is an error in the Swift 6 language mode
 61 |     var drawStep: CGFloat
 62 |
SwiftUI.Environment:2:40: note: generic struct 'Environment' does not conform to the 'Sendable' protocol
1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
2 | @frozen @propertyWrapper public struct Environment<Value> : DynamicProperty {
  |                                        `- note: generic struct 'Environment' does not conform to the 'Sendable' protocol
3 |     @inlinable public init(_ keyPath: KeyPath<EnvironmentValues, Value>)
4 |     @inlinable public var wrappedValue: Value { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Elements/Indicators/DrawnIndicators.swift:97:9: warning: stored property 'controlRatios' of 'Sendable'-conforming struct 'DrawnIndicator' has non-sendable type 'Random.ControlRatio'; this is an error in the Swift 6 language mode
 95 | private struct DrawnIndicator: Shape {
 96 |     var drawStep: CGFloat
 97 |     let controlRatios: Random.ControlRatio
    |         `- warning: stored property 'controlRatios' of 'Sendable'-conforming struct 'DrawnIndicator' has non-sendable type 'Random.ControlRatio'; this is an error in the Swift 6 language mode
 98 |
 99 |     var animatableData: CGFloat {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftClockUI/Environment/ClockRandomEnvironment.swift:34:12: note: consider making struct 'ControlRatio' conform to the 'Sendable' protocol
32 |
33 | public extension Random {
34 |     struct ControlRatio {
   |            `- note: consider making struct 'ControlRatio' conform to the 'Sendable' protocol
35 |         let leftX: CGFloat
36 |         let leftY: CGFloat
[50/54] Compiling SwiftClockUI ClockFaceView.swift
[51/54] Compiling SwiftClockUI Eye.swift
[52/54] Compiling SwiftClockUI Mouth.swift
[53/54] Compiling SwiftClockUI FontProportional.swift
[54/54] Compiling SwiftClockUI PositionInCircle.swift
Build complete! (44.06s)
Fetching https://github.com/pointfreeco/swift-snapshot-testing.git
[1/11249] Fetching swift-snapshot-testing
Fetched https://github.com/pointfreeco/swift-snapshot-testing.git from cache (2.38s)
Computing version for https://github.com/pointfreeco/swift-snapshot-testing.git
Computed https://github.com/pointfreeco/swift-snapshot-testing.git at 1.10.0 (0.71s)
Creating working copy for https://github.com/pointfreeco/swift-snapshot-testing.git
Working copy of https://github.com/pointfreeco/swift-snapshot-testing.git resolved at 1.10.0
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-snapshot-testing",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.9.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-snapshot-testing.git"
    }
  ],
  "manifest_display_name" : "SwiftClockUI",
  "name" : "SwiftClockUI",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    }
  ],
  "products" : [
    {
      "name" : "SwiftClockUI",
      "targets" : [
        "SwiftClockUI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftClockUITests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftClockUITests",
      "path" : "Tests/SwiftClockUITests",
      "product_dependencies" : [
        "SnapshotTesting"
      ],
      "sources" : [
        "Calendar+Test.swift",
        "ClockViewTests.swift",
        "Elements/Arm/ArmTests.swift",
        "Elements/Arm/ArmTypeTests.swift",
        "Elements/Arm/ArtNouveauArmTests.swift",
        "Elements/Arm/ClassicArmTests.swift",
        "Elements/ArmsTests.swift",
        "Elements/Borders/ClassicClockBorderTests.swift",
        "Elements/Borders/DrawnClockBorderTests.swift",
        "Elements/Borders/SteampunkClockBorderTests.swift",
        "Elements/Indicators/ArtNouveauIndicatorsTests.swift",
        "Elements/Indicators/SteampunkIndicatorsTests.swift",
        "Elements/Steampunk/CogwheelTests.swift",
        "Elements/Steampunk/MoonTests.swift",
        "Elements/Steampunk/PlateTests.swift",
        "Elements/Steampunk/SteampunkHourArmTests.swift",
        "Elements/Steampunk/SteampunkMinuteArmTests.swift",
        "Elements/Steampunk/WindUpKeyTests.swift",
        "EnvironmentTests.swift",
        "Extensions/CGPoint+CircleTests.swift",
        "Extensions/CGRect+CircleTests.swift",
        "Extensions/Date+ClockTests.swift",
        "Extensions/Path+CircleTests.swift",
        "Face/ClockFaceTests.swift",
        "Face/EyeTests.swift",
        "Face/MouthTests.swift",
        "Snapshotting+DefaultImage.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "SwiftClockUI"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftClockUI",
      "module_type" : "SwiftTarget",
      "name" : "SwiftClockUI",
      "path" : "Sources/SwiftClockUI",
      "product_memberships" : [
        "SwiftClockUI"
      ],
      "sources" : [
        "ClockView.swift",
        "Elements/Arm/ArmDragGesture.swift",
        "Elements/Arm/ArmType.swift",
        "Elements/Arm/ArmView.swift",
        "Elements/Arm/ArtNouveauArm.swift",
        "Elements/Arm/ClassicArm.swift",
        "Elements/Arm/DrawnArm.swift",
        "Elements/Arm/SteampunkArm.swift",
        "Elements/Arms.swift",
        "Elements/Borders/ArtNouveauClockBorder.swift",
        "Elements/Borders/ClassicClockBorder.swift",
        "Elements/Borders/ClockBorderView.swift",
        "Elements/Borders/DrawnClockBorder.swift",
        "Elements/Borders/SteampunkClockBorder.swift",
        "Elements/Indicators/ArtNouveauIndicators.swift",
        "Elements/Indicators/ClassicIndicators.swift",
        "Elements/Indicators/DrawnIndicators.swift",
        "Elements/Indicators/IndicatorsView.swift",
        "Elements/Indicators/RomanNumber.swift",
        "Elements/Indicators/SteampunkIndicators.swift",
        "Elements/Steampunk/Cogwheel.swift",
        "Elements/Steampunk/Moon.swift",
        "Elements/Steampunk/Plate.swift",
        "Elements/Steampunk/SteampunkHourArm.swift",
        "Elements/Steampunk/SteampunkMinuteArm.swift",
        "Elements/Steampunk/WindUpKey.swift",
        "Environment/ClockAnimationEnabled.swift",
        "Environment/ClockArmColorsEnvironment.swift",
        "Environment/ClockBorderColorEnvironment.swift",
        "Environment/ClockConfigurationEnvironment.swift",
        "Environment/ClockDateEnvironment.swift",
        "Environment/ClockIndicatorsColorEnvironment.swift",
        "Environment/ClockIsAnimationEnabledEnvironment.swift",
        "Environment/ClockRandomEnvironment.swift",
        "Environment/ClockStyleEnvironment.swift",
        "Extensions/Angle+Circle.swift",
        "Extensions/CGPoint+Circle.swift",
        "Extensions/CGRect+Circle.swift",
        "Extensions/Color+Background.swift",
        "Extensions/Date+Clock.swift",
        "Extensions/Double+Time.swift",
        "Extensions/GeometryProxy+Diameter.swift",
        "Extensions/NSBezierPath+CGPath.swift",
        "Extensions/Path+Circle.swift",
        "Extensions/Path+VerticalMirror.swift",
        "Face/ClockFaceEnvironment.swift",
        "Face/ClockFaceView.swift",
        "Face/Eye.swift",
        "Face/Mouth.swift",
        "ViewModifiers/FontProportional.swift",
        "ViewModifiers/PositionInCircle.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.