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 OneFingerRotation, reference v1.2.1 (1a1c58), with Swift 6.1 for watchOS using Xcode 16.3 on 30 Apr 2025 07:38:31 UTC.

Swift 6 data race errors: 27

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme OneFingerRotation -destination generic/platform=watchOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

    static var defaultValue: CGSize = .zero
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:161:71: warning: main actor-isolated property 'lastVelocity' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    let angle = Angle(degrees: Double(lastVelocity) * rotationDirection)
                                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:16:24: note: property declared here
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:161:87: warning: main actor-isolated property 'rotationDirection' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    let angle = Angle(degrees: Double(lastVelocity) * rotationDirection)
                                                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:29:24: note: property declared here
    @State private var rotationDirection: Double = 1
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:162:60: warning: main actor-isolated property 'rotationAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    let newRotationAngle = rotationAngle + angle
                                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:13:24: note: property declared here
    @State private var rotationAngle: Angle = .degrees(0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:163:64: warning: main actor-isolated property 'minAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    let clampedAngle = min(max(minAngle, newRotationAngle.degrees), maxAngle)
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:30:16: note: property declared here
    @State var minAngle: Double
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:163:101: warning: main actor-isolated property 'maxAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    let clampedAngle = min(max(minAngle, newRotationAngle.degrees), maxAngle)
                                                                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:31:16: note: property declared here
    @State var maxAngle: Double
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:165:66: warning: main actor-isolated property 'rotationDirection' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                        let deceleration = 0.2 * rotationDirection
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:29:24: note: property declared here
    @State private var rotationDirection: Double = 1
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:166:41: warning: main actor-isolated property 'rotationAngle' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                        rotationAngle = Angle(degrees: clampedAngle + deceleration)
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:13:24: note: mutation of this property is only permitted within the actor
    @State private var rotationAngle: Angle = .degrees(0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:167:41: warning: main actor-isolated property 'knobValue' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                        knobValue = (rotationAngle.degrees - minAngle) / (maxAngle - minAngle) // Update knobValue here
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:14:18: note: mutation of this property is only permitted within the actor
    @Binding var knobValue: Double
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:167:54: warning: main actor-isolated property 'rotationAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                        knobValue = (rotationAngle.degrees - minAngle) / (maxAngle - minAngle) // Update knobValue here
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:13:24: note: property declared here
    @State private var rotationAngle: Angle = .degrees(0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:167:78: warning: main actor-isolated property 'minAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                        knobValue = (rotationAngle.degrees - minAngle) / (maxAngle - minAngle) // Update knobValue here
                                                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:30:16: note: property declared here
    @State var minAngle: Double
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:167:91: warning: main actor-isolated property 'maxAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                        knobValue = (rotationAngle.degrees - minAngle) / (maxAngle - minAngle) // Update knobValue here
                                                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:31:16: note: property declared here
    @State var maxAngle: Double
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:167:102: warning: main actor-isolated property 'minAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                        knobValue = (rotationAngle.degrees - minAngle) / (maxAngle - minAngle) // Update knobValue here
                                                                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:30:16: note: property declared here
    @State var minAngle: Double
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:168:41: warning: main actor-isolated property 'onKnobValueChanged' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                        onKnobValueChanged(knobValue)
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:26:9: note: property declared here
    var onKnobValueChanged: (Double) -> Void
        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:168:60: warning: main actor-isolated property 'knobValue' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                        onKnobValueChanged(knobValue)
                                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:14:18: note: property declared here
    @Binding var knobValue: Double
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:169:41: warning: main actor-isolated property 'lastVelocity' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                        lastVelocity *= (1 - friction)
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:16:24: note: mutation of this property is only permitted within the actor
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:169:62: warning: main actor-isolated property 'friction' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                        lastVelocity *= (1 - friction)
                                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:19:18: note: property declared here
    @Binding var friction: CGFloat
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:170:44: warning: main actor-isolated property 'lastVelocity' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                        if lastVelocity < 0.1 {
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:16:24: note: property declared here
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:172:45: warning: main actor-isolated property 'isSpinning' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                            isSpinning = false
                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:17:24: note: mutation of this property is only permitted within the actor
    @State private var isSpinning = false
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:175:41: warning: main actor-isolated property 'rotationAngle' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                        rotationAngle = newRotationAngle
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:13:24: note: mutation of this property is only permitted within the actor
    @State private var rotationAngle: Angle = .degrees(0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:176:41: warning: main actor-isolated property 'knobValue' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                        knobValue = (rotationAngle.degrees - minAngle) / (maxAngle - minAngle) // Update knobValue here
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:14:18: note: mutation of this property is only permitted within the actor
    @Binding var knobValue: Double
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:176:54: warning: main actor-isolated property 'rotationAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                        knobValue = (rotationAngle.degrees - minAngle) / (maxAngle - minAngle) // Update knobValue here
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:13:24: note: property declared here
    @State private var rotationAngle: Angle = .degrees(0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:176:78: warning: main actor-isolated property 'minAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                        knobValue = (rotationAngle.degrees - minAngle) / (maxAngle - minAngle) // Update knobValue here
                                                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:30:16: note: property declared here
    @State var minAngle: Double
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:176:91: warning: main actor-isolated property 'maxAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                        knobValue = (rotationAngle.degrees - minAngle) / (maxAngle - minAngle) // Update knobValue here
                                                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:31:16: note: property declared here
    @State var maxAngle: Double
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:176:102: warning: main actor-isolated property 'minAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                        knobValue = (rotationAngle.degrees - minAngle) / (maxAngle - minAngle) // Update knobValue here
                                                                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:30:16: note: property declared here
    @State var minAngle: Double
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:177:41: warning: main actor-isolated property 'onKnobValueChanged' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                        onKnobValueChanged(knobValue)
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:26:9: note: property declared here
    var onKnobValueChanged: (Double) -> Void
        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:177:60: warning: main actor-isolated property 'knobValue' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                        onKnobValueChanged(knobValue)
                                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:14:18: note: property declared here
    @Binding var knobValue: Double
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:178:41: warning: main actor-isolated property 'lastVelocity' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                        lastVelocity *= (1 - friction)
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:16:24: note: mutation of this property is only permitted within the actor
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:178:62: warning: main actor-isolated property 'friction' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                        lastVelocity *= (1 - friction)
                                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:19:18: note: property declared here
    @Binding var friction: CGFloat
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:179:44: warning: main actor-isolated property 'lastVelocity' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                        if lastVelocity < 0.1 || (newRotationAngle.degrees < minAngle || newRotationAngle.degrees > maxAngle) {
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:16:24: note: property declared here
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:179:94: warning: main actor-isolated property 'minAngle' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                                        if lastVelocity < 0.1 || (newRotationAngle.degrees < minAngle || newRotationAngle.degrees > maxAngle) {
                                                                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:30:16: note: property declared here
    @State var minAngle: Double
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:179:133: warning: main actor-isolated property 'maxAngle' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                                        if lastVelocity < 0.1 || (newRotationAngle.degrees < minAngle || newRotationAngle.degrees > maxAngle) {
                                                                                                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:31:16: note: property declared here
    @State var maxAngle: Double
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:181:45: warning: main actor-isolated property 'isSpinning' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                            isSpinning = false
                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobInertia.swift:17:24: note: mutation of this property is only permitted within the actor
    @State private var isSpinning = false
                       ^
SwiftDriverJobDiscovery normal arm64 Emitting module for OneFingerRotation (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal arm64_32 Compiling\ AutoRotation.swift /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/AutoRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/AutoRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:96:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: CGSize = .zero
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:96:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: CGSize = .zero
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:96:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    static var defaultValue: CGSize = .zero
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:96:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: CGSize = .zero
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:23:16: warning: main actor-isolated property 'autoRotationActive' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
            if autoRotationActive && gestureRotation == .zero {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:18:18: note: property declared here
    @Binding var autoRotationActive: Bool
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:23:38: warning: main actor-isolated property 'gestureRotation' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            if autoRotationActive && gestureRotation == .zero {
                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:15:31: note: property declared here
    @GestureState private var gestureRotation: Angle = .zero
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:24:17: warning: main actor-isolated property 'rotationAngle' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                rotationAngle = rotationAngle + Angle(degrees: autoRotationSpeed / 60)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:13:24: note: mutation of this property is only permitted within the actor
    @State private var rotationAngle: Angle = .zero
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:24:33: warning: main actor-isolated property 'rotationAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                rotationAngle = rotationAngle + Angle(degrees: autoRotationSpeed / 60)
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:13:24: note: property declared here
    @State private var rotationAngle: Angle = .zero
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:24:64: warning: main actor-isolated property 'autoRotationSpeed' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                rotationAngle = rotationAngle + Angle(degrees: autoRotationSpeed / 60)
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:17:18: note: property declared here
    @Binding var autoRotationSpeed: Double
                 ^
SwiftCompile normal arm64_32 Compiling\ simpleRotationInertia.swift /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 2.0/simpleRotationInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 2.0/simpleRotationInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:197:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: CGSize = .zero
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:197:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: CGSize = .zero
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:197:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    static var defaultValue: CGSize = .zero
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:197:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: CGSize = .zero
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:107:71: warning: main actor-isolated property 'lastVelocity' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    let angle = Angle(degrees: Double(lastVelocity) * rotationDirection)
                                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:19:24: note: property declared here
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:108:37: warning: main actor-isolated property 'rotationAngle' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                    rotationAngle += angle
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:13:24: note: mutation of this property is only permitted within the actor
    @State private var rotationAngle: Angle = .degrees(0.0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:109:37: warning: main actor-isolated property 'lastVelocity' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                    lastVelocity *= (1 - friction)
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:19:24: note: mutation of this property is only permitted within the actor
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:109:58: warning: main actor-isolated property 'friction' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    lastVelocity *= (1 - friction)
                                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:28:18: note: property declared here
    @Binding var friction: CGFloat
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:111:51: warning: main actor-isolated property 'angleSnap' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    if let snap = angleSnap {
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:44:26: note: property declared here
    @Binding private var angleSnap: Double?
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:112:41: warning: main actor-isolated property 'rotationAngle' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                        rotationAngle = snapToAngle(rotationAngle, snap: snap, velocity: lastVelocity, animation: { interpolationFactor in
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:13:24: note: mutation of this property is only permitted within the actor
    @State private var rotationAngle: Angle = .degrees(0.0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:112:57: warning: call to main actor-isolated instance method 'snapToAngle(_:snap:velocity:animation:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                                        rotationAngle = snapToAngle(rotationAngle, snap: snap, velocity: lastVelocity, animation: { interpolationFactor in
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:170:18: note: calls to instance method 'snapToAngle(_:snap:velocity:animation:)' from outside of its actor context are implicitly asynchronous
    private func snapToAngle(_ angle: Angle, snap: Double, velocity: CGFloat, animation: ((_ interpolationFactor: Double) -> Double)? = nil) -> Angle {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:170:18: note: main actor isolation inferred from conformance to protocol 'ViewModifier'
    private func snapToAngle(_ angle: Angle, snap: Double, velocity: CGFloat, animation: ((_ interpolationFactor: Double) -> Double)? = nil) -> Angle {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:112:69: warning: main actor-isolated property 'rotationAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                        rotationAngle = snapToAngle(rotationAngle, snap: snap, velocity: lastVelocity, animation: { interpolationFactor in
                                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:13:24: note: property declared here
    @State private var rotationAngle: Angle = .degrees(0.0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:112:106: warning: main actor-isolated property 'lastVelocity' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                        rotationAngle = snapToAngle(rotationAngle, snap: snap, velocity: lastVelocity, animation: { interpolationFactor in
                                                                                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:19:24: note: property declared here
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:113:77: warning: main actor-isolated property 'angleSnapShowFactor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                                            return pow(interpolationFactor, angleSnapShowFactor*2)
                                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:36:18: note: property declared here
    @Binding var angleSnapShowFactor: Double
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:118:40: warning: main actor-isolated property 'lastVelocity' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    if lastVelocity < 0.1 {
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:19:24: note: property declared here
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:120:41: warning: main actor-isolated property 'isSpinning' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                        isSpinning = false
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:22:24: note: mutation of this property is only permitted within the actor
    @State private var isSpinning = false
                       ^
SwiftDriverJobDiscovery normal armv7k Emitting module for OneFingerRotation (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftDriverJobDiscovery normal arm64_32 Emitting module for OneFingerRotation (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftDriver\ Compilation\ Requirements OneFingerRotation normal armv7k com.apple.xcode.tools.swift.compiler (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name OneFingerRotation -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/OneFingerRotation.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos7.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/OneFingerRotation-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/OneFingerRotation.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/OneFingerRotation_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/OneFingerRotation-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling OneFingerRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftDriver\ Compilation\ Requirements OneFingerRotation normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name OneFingerRotation -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/OneFingerRotation.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos7.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/OneFingerRotation-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/OneFingerRotation.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/OneFingerRotation_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/OneFingerRotation-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation\ Requirements OneFingerRotation normal arm64 com.apple.xcode.tools.swift.compiler (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name OneFingerRotation -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/OneFingerRotation.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos7.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/OneFingerRotation-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/OneFingerRotation.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/OneFingerRotation_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/OneFingerRotation-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/OneFingerRotation.swiftmodule (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/OneFingerRotation.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.swiftmodule/armv7k-apple-watchos.swiftmodule
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/OneFingerRotation-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/OneFingerRotation-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/OneFingerRotation-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/OneFingerRotation-Swift.h (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/OneFingerRotation-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/OneFingerRotation-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/OneFingerRotation-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/OneFingerRotation-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/OneFingerRotation.swiftdoc (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/OneFingerRotation.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/OneFingerRotation.abi.json (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/OneFingerRotation.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/OneFingerRotation.swiftmodule (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/OneFingerRotation.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/OneFingerRotation.swiftdoc (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/OneFingerRotation.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/OneFingerRotation.abi.json (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/OneFingerRotation.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/OneFingerRotation.swiftmodule (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/OneFingerRotation.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/OneFingerRotation.swiftdoc (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/OneFingerRotation.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/OneFingerRotation.abi.json (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/OneFingerRotation.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/OneFingerRotation.swiftsourceinfo (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/OneFingerRotation.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/OneFingerRotation.swiftsourceinfo (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/OneFingerRotation.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/OneFingerRotation.swiftsourceinfo (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/OneFingerRotation.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64_32 Compiling\ KnobRotation.swift /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/KnobRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/KnobRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobRotation.swift:107:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: CGSize = .zero
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobRotation.swift:107:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: CGSize = .zero
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobRotation.swift:107:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    static var defaultValue: CGSize = .zero
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobRotation.swift:107:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: CGSize = .zero
               ^
    nonisolated(unsafe)
SwiftCompile normal armv7k Compiling\ AutoRotation.swift /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/AutoRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/AutoRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:96:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: CGSize = .zero
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:96:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: CGSize = .zero
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:96:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    static var defaultValue: CGSize = .zero
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:96:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: CGSize = .zero
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:23:16: warning: main actor-isolated property 'autoRotationActive' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
            if autoRotationActive && gestureRotation == .zero {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:18:18: note: property declared here
    @Binding var autoRotationActive: Bool
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:23:38: warning: main actor-isolated property 'gestureRotation' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            if autoRotationActive && gestureRotation == .zero {
                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:15:31: note: property declared here
    @GestureState private var gestureRotation: Angle = .zero
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:24:17: warning: main actor-isolated property 'rotationAngle' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                rotationAngle = rotationAngle + Angle(degrees: autoRotationSpeed / 60)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:13:24: note: mutation of this property is only permitted within the actor
    @State private var rotationAngle: Angle = .zero
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:24:33: warning: main actor-isolated property 'rotationAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                rotationAngle = rotationAngle + Angle(degrees: autoRotationSpeed / 60)
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:13:24: note: property declared here
    @State private var rotationAngle: Angle = .zero
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:24:64: warning: main actor-isolated property 'autoRotationSpeed' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                rotationAngle = rotationAngle + Angle(degrees: autoRotationSpeed / 60)
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:17:18: note: property declared here
    @Binding var autoRotationSpeed: Double
                 ^
SwiftDriverJobDiscovery normal arm64_32 Compiling KnobRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal arm64 Compiling\ simpleRotationInertia.swift /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 2.0/simpleRotationInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 2.0/simpleRotationInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:197:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: CGSize = .zero
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:197:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: CGSize = .zero
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:197:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    static var defaultValue: CGSize = .zero
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:197:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: CGSize = .zero
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:107:71: warning: main actor-isolated property 'lastVelocity' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    let angle = Angle(degrees: Double(lastVelocity) * rotationDirection)
                                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:19:24: note: property declared here
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:108:37: warning: main actor-isolated property 'rotationAngle' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                    rotationAngle += angle
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:13:24: note: mutation of this property is only permitted within the actor
    @State private var rotationAngle: Angle = .degrees(0.0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:109:37: warning: main actor-isolated property 'lastVelocity' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                    lastVelocity *= (1 - friction)
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:19:24: note: mutation of this property is only permitted within the actor
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:109:58: warning: main actor-isolated property 'friction' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    lastVelocity *= (1 - friction)
                                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:28:18: note: property declared here
    @Binding var friction: CGFloat
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:111:51: warning: main actor-isolated property 'angleSnap' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    if let snap = angleSnap {
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:44:26: note: property declared here
    @Binding private var angleSnap: Double?
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:112:41: warning: main actor-isolated property 'rotationAngle' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                        rotationAngle = snapToAngle(rotationAngle, snap: snap, velocity: lastVelocity, animation: { interpolationFactor in
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:13:24: note: mutation of this property is only permitted within the actor
    @State private var rotationAngle: Angle = .degrees(0.0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:112:57: warning: call to main actor-isolated instance method 'snapToAngle(_:snap:velocity:animation:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                                        rotationAngle = snapToAngle(rotationAngle, snap: snap, velocity: lastVelocity, animation: { interpolationFactor in
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:170:18: note: calls to instance method 'snapToAngle(_:snap:velocity:animation:)' from outside of its actor context are implicitly asynchronous
    private func snapToAngle(_ angle: Angle, snap: Double, velocity: CGFloat, animation: ((_ interpolationFactor: Double) -> Double)? = nil) -> Angle {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:170:18: note: main actor isolation inferred from conformance to protocol 'ViewModifier'
    private func snapToAngle(_ angle: Angle, snap: Double, velocity: CGFloat, animation: ((_ interpolationFactor: Double) -> Double)? = nil) -> Angle {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:112:69: warning: main actor-isolated property 'rotationAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                        rotationAngle = snapToAngle(rotationAngle, snap: snap, velocity: lastVelocity, animation: { interpolationFactor in
                                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:13:24: note: property declared here
    @State private var rotationAngle: Angle = .degrees(0.0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:112:106: warning: main actor-isolated property 'lastVelocity' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                        rotationAngle = snapToAngle(rotationAngle, snap: snap, velocity: lastVelocity, animation: { interpolationFactor in
                                                                                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:19:24: note: property declared here
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:113:77: warning: main actor-isolated property 'angleSnapShowFactor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                                            return pow(interpolationFactor, angleSnapShowFactor*2)
                                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:36:18: note: property declared here
    @Binding var angleSnapShowFactor: Double
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:118:40: warning: main actor-isolated property 'lastVelocity' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    if lastVelocity < 0.1 {
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:19:24: note: property declared here
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:120:41: warning: main actor-isolated property 'isSpinning' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                        isSpinning = false
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:22:24: note: mutation of this property is only permitted within the actor
    @State private var isSpinning = false
                       ^
SwiftDriverJobDiscovery normal arm64_32 Compiling simpleRotationInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal armv7k Compiling\ ValueAutoRotation.swift /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/ValueAutoRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/ValueAutoRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:148:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: CGSize = .zero
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:148:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: CGSize = .zero
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:148:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    static var defaultValue: CGSize = .zero
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:148:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: CGSize = .zero
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:41:37: warning: main actor-isolated property 'autoRotationSpeed' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                let deltaRotation = autoRotationSpeed / 60.0
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:19:18: note: property declared here
    @Binding var autoRotationSpeed: Double
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:42:35: warning: main actor-isolated property 'rotationAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                let newRotation = rotationAngle.degrees + deltaRotation
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:11:24: note: property declared here
    @State private var rotationAngle: Angle = .degrees(0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:43:17: warning: main actor-isolated property 'rotationAngle' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                rotationAngle = Angle(degrees: newRotation)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:11:24: note: mutation of this property is only permitted within the actor
    @State private var rotationAngle: Angle = .degrees(0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:44:17: warning: main actor-isolated property 'totalAngle' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                totalAngle = newRotation + Double(fullRotations) * 360
                ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:13:18: note: mutation of this property is only permitted within the actor
    @Binding var totalAngle: Double
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:44:51: warning: main actor-isolated property 'fullRotations' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                totalAngle = newRotation + Double(fullRotations) * 360
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:17:24: note: property declared here
    @State private var fullRotations: Int = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:45:17: warning: main actor-isolated property 'onAngleChanged' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                onAngleChanged(newRotation + Double(fullRotations) * 360)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:14:9: note: property declared here
    var onAngleChanged: (Double) -> Void
        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:45:53: warning: main actor-isolated property 'fullRotations' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                onAngleChanged(newRotation + Double(fullRotations) * 360)
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:17:24: note: property declared here
    @State private var fullRotations: Int = 0
                       ^
SwiftDriverJobDiscovery normal arm64_32 Compiling KnobInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal arm64_32 Compiling\ ValueAutoRotationInertia.swift /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/ValueAutoRotationInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/ValueAutoRotationInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:227:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: CGSize = .zero
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:227:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: CGSize = .zero
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:227:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    static var defaultValue: CGSize = .zero
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:227:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: CGSize = .zero
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:56:37: warning: main actor-isolated property 'autoRotationSpeed' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                let deltaRotation = autoRotationSpeed / 60.0
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:27:18: note: property declared here
    @Binding var autoRotationSpeed: Double
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:57:35: warning: main actor-isolated property 'rotationAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                let newRotation = rotationAngle.degrees + deltaRotation
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:11:24: note: property declared here
    @State private var rotationAngle: Angle = .degrees(0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:58:17: warning: main actor-isolated property 'rotationAngle' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                rotationAngle = Angle(degrees: newRotation)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:11:24: note: mutation of this property is only permitted within the actor
    @State private var rotationAngle: Angle = .degrees(0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:59:17: warning: main actor-isolated property 'totalAngle' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                totalAngle = newRotation //+ Double(totalAngle) * 360
                ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:24:18: note: mutation of this property is only permitted within the actor
    @Binding var totalAngle: Double
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:60:17: warning: main actor-isolated property 'onAngleChanged' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                onAngleChanged(newRotation) //+ Double(totalAngle) * 360)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:23:9: note: property declared here
    var onAngleChanged: (Double) -> Void
        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:168:71: warning: main actor-isolated property 'lastVelocity' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    let angle = Angle(degrees: Double(lastVelocity) * rotationDirection)
                                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:13:24: note: property declared here
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:168:87: warning: main actor-isolated property 'rotationDirection' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    let angle = Angle(degrees: Double(lastVelocity) * rotationDirection)
                                                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:26:24: note: property declared here
    @State private var rotationDirection: Double = 1
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:169:37: warning: main actor-isolated property 'rotationAngle' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                    rotationAngle += angle
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:11:24: note: mutation of this property is only permitted within the actor
    @State private var rotationAngle: Angle = .degrees(0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:170:37: warning: main actor-isolated property 'onAngleChanged' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    onAngleChanged(rotationAngle.degrees)
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:23:9: note: property declared here
    var onAngleChanged: (Double) -> Void
        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:170:52: warning: main actor-isolated property 'rotationAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    onAngleChanged(rotationAngle.degrees)
                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:11:24: note: property declared here
    @State private var rotationAngle: Angle = .degrees(0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:171:37: warning: main actor-isolated property 'lastVelocity' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                    lastVelocity *= (1 - friction)
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:13:24: note: mutation of this property is only permitted within the actor
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:171:58: warning: main actor-isolated property 'friction' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    lastVelocity *= (1 - friction)
                                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:16:18: note: property declared here
    @Binding var friction: CGFloat
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:172:40: warning: main actor-isolated property 'lastVelocity' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    if lastVelocity < 0.1 {
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:13:24: note: property declared here
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:174:41: warning: main actor-isolated property 'isSpinning' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                        isSpinning = false
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:14:24: note: mutation of this property is only permitted within the actor
    @State private var isSpinning = false
                       ^
SwiftDriverJobDiscovery normal arm64 Compiling KnobInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal armv7k Compiling\ OneFingerRotation.swift /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/OneFingerRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/OneFingerRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling AutoRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal armv7k Compiling\ simpleRotationInertia.swift /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 2.0/simpleRotationInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 2.0/simpleRotationInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:197:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: CGSize = .zero
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:197:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: CGSize = .zero
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:197:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    static var defaultValue: CGSize = .zero
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:197:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: CGSize = .zero
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:107:71: warning: main actor-isolated property 'lastVelocity' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    let angle = Angle(degrees: Double(lastVelocity) * rotationDirection)
                                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:19:24: note: property declared here
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:108:37: warning: main actor-isolated property 'rotationAngle' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                    rotationAngle += angle
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:13:24: note: mutation of this property is only permitted within the actor
    @State private var rotationAngle: Angle = .degrees(0.0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:109:37: warning: main actor-isolated property 'lastVelocity' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                    lastVelocity *= (1 - friction)
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:19:24: note: mutation of this property is only permitted within the actor
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:109:58: warning: main actor-isolated property 'friction' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    lastVelocity *= (1 - friction)
                                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:28:18: note: property declared here
    @Binding var friction: CGFloat
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:111:51: warning: main actor-isolated property 'angleSnap' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    if let snap = angleSnap {
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:44:26: note: property declared here
    @Binding private var angleSnap: Double?
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:112:41: warning: main actor-isolated property 'rotationAngle' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                        rotationAngle = snapToAngle(rotationAngle, snap: snap, velocity: lastVelocity, animation: { interpolationFactor in
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:13:24: note: mutation of this property is only permitted within the actor
    @State private var rotationAngle: Angle = .degrees(0.0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:112:57: warning: call to main actor-isolated instance method 'snapToAngle(_:snap:velocity:animation:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                                        rotationAngle = snapToAngle(rotationAngle, snap: snap, velocity: lastVelocity, animation: { interpolationFactor in
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:170:18: note: calls to instance method 'snapToAngle(_:snap:velocity:animation:)' from outside of its actor context are implicitly asynchronous
    private func snapToAngle(_ angle: Angle, snap: Double, velocity: CGFloat, animation: ((_ interpolationFactor: Double) -> Double)? = nil) -> Angle {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:170:18: note: main actor isolation inferred from conformance to protocol 'ViewModifier'
    private func snapToAngle(_ angle: Angle, snap: Double, velocity: CGFloat, animation: ((_ interpolationFactor: Double) -> Double)? = nil) -> Angle {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:112:69: warning: main actor-isolated property 'rotationAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                        rotationAngle = snapToAngle(rotationAngle, snap: snap, velocity: lastVelocity, animation: { interpolationFactor in
                                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:13:24: note: property declared here
    @State private var rotationAngle: Angle = .degrees(0.0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:112:106: warning: main actor-isolated property 'lastVelocity' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                        rotationAngle = snapToAngle(rotationAngle, snap: snap, velocity: lastVelocity, animation: { interpolationFactor in
                                                                                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:19:24: note: property declared here
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:113:77: warning: main actor-isolated property 'angleSnapShowFactor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                                            return pow(interpolationFactor, angleSnapShowFactor*2)
                                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:36:18: note: property declared here
    @Binding var angleSnapShowFactor: Double
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:118:40: warning: main actor-isolated property 'lastVelocity' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    if lastVelocity < 0.1 {
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:19:24: note: property declared here
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:120:41: warning: main actor-isolated property 'isSpinning' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                        isSpinning = false
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/simpleRotationInertia.swift:22:24: note: mutation of this property is only permitted within the actor
    @State private var isSpinning = false
                       ^
SwiftDriverJobDiscovery normal arm64 Compiling ValueAutoRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal arm64 Compiling\ AutoRotation.swift /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/AutoRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/AutoRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:96:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: CGSize = .zero
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:96:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: CGSize = .zero
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:96:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    static var defaultValue: CGSize = .zero
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:96:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: CGSize = .zero
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:23:16: warning: main actor-isolated property 'autoRotationActive' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
            if autoRotationActive && gestureRotation == .zero {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:18:18: note: property declared here
    @Binding var autoRotationActive: Bool
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:23:38: warning: main actor-isolated property 'gestureRotation' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            if autoRotationActive && gestureRotation == .zero {
                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:15:31: note: property declared here
    @GestureState private var gestureRotation: Angle = .zero
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:24:17: warning: main actor-isolated property 'rotationAngle' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                rotationAngle = rotationAngle + Angle(degrees: autoRotationSpeed / 60)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:13:24: note: mutation of this property is only permitted within the actor
    @State private var rotationAngle: Angle = .zero
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:24:33: warning: main actor-isolated property 'rotationAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                rotationAngle = rotationAngle + Angle(degrees: autoRotationSpeed / 60)
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:13:24: note: property declared here
    @State private var rotationAngle: Angle = .zero
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:24:64: warning: main actor-isolated property 'autoRotationSpeed' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                rotationAngle = rotationAngle + Angle(degrees: autoRotationSpeed / 60)
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/AutoRotation.swift:17:18: note: property declared here
    @Binding var autoRotationSpeed: Double
                 ^
SwiftDriverJobDiscovery normal arm64_32 Compiling ValueRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal armv7k Compiling\ ValueAutoRotationInertia.swift /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/ValueAutoRotationInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/ValueAutoRotationInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:227:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: CGSize = .zero
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:227:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: CGSize = .zero
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:227:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    static var defaultValue: CGSize = .zero
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:227:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: CGSize = .zero
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:56:37: warning: main actor-isolated property 'autoRotationSpeed' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                let deltaRotation = autoRotationSpeed / 60.0
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:27:18: note: property declared here
    @Binding var autoRotationSpeed: Double
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:57:35: warning: main actor-isolated property 'rotationAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                let newRotation = rotationAngle.degrees + deltaRotation
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:11:24: note: property declared here
    @State private var rotationAngle: Angle = .degrees(0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:58:17: warning: main actor-isolated property 'rotationAngle' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                rotationAngle = Angle(degrees: newRotation)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:11:24: note: mutation of this property is only permitted within the actor
    @State private var rotationAngle: Angle = .degrees(0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:59:17: warning: main actor-isolated property 'totalAngle' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                totalAngle = newRotation //+ Double(totalAngle) * 360
                ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:24:18: note: mutation of this property is only permitted within the actor
    @Binding var totalAngle: Double
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:60:17: warning: main actor-isolated property 'onAngleChanged' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                onAngleChanged(newRotation) //+ Double(totalAngle) * 360)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:23:9: note: property declared here
    var onAngleChanged: (Double) -> Void
        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:168:71: warning: main actor-isolated property 'lastVelocity' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    let angle = Angle(degrees: Double(lastVelocity) * rotationDirection)
                                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:13:24: note: property declared here
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:168:87: warning: main actor-isolated property 'rotationDirection' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    let angle = Angle(degrees: Double(lastVelocity) * rotationDirection)
                                                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:26:24: note: property declared here
    @State private var rotationDirection: Double = 1
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:169:37: warning: main actor-isolated property 'rotationAngle' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                    rotationAngle += angle
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:11:24: note: mutation of this property is only permitted within the actor
    @State private var rotationAngle: Angle = .degrees(0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:170:37: warning: main actor-isolated property 'onAngleChanged' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    onAngleChanged(rotationAngle.degrees)
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:23:9: note: property declared here
    var onAngleChanged: (Double) -> Void
        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:170:52: warning: main actor-isolated property 'rotationAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    onAngleChanged(rotationAngle.degrees)
                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:11:24: note: property declared here
    @State private var rotationAngle: Angle = .degrees(0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:171:37: warning: main actor-isolated property 'lastVelocity' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                    lastVelocity *= (1 - friction)
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:13:24: note: mutation of this property is only permitted within the actor
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:171:58: warning: main actor-isolated property 'friction' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    lastVelocity *= (1 - friction)
                                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:16:18: note: property declared here
    @Binding var friction: CGFloat
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:172:40: warning: main actor-isolated property 'lastVelocity' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    if lastVelocity < 0.1 {
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:13:24: note: property declared here
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:174:41: warning: main actor-isolated property 'isSpinning' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                        isSpinning = false
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:14:24: note: mutation of this property is only permitted within the actor
    @State private var isSpinning = false
                       ^
SwiftDriverJobDiscovery normal armv7k Compiling SimpleRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal arm64_32 Compiling\ ValueAutoRotation.swift /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/ValueAutoRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/ValueAutoRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:148:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: CGSize = .zero
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:148:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: CGSize = .zero
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:148:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    static var defaultValue: CGSize = .zero
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:148:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: CGSize = .zero
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:41:37: warning: main actor-isolated property 'autoRotationSpeed' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                let deltaRotation = autoRotationSpeed / 60.0
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:19:18: note: property declared here
    @Binding var autoRotationSpeed: Double
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:42:35: warning: main actor-isolated property 'rotationAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                let newRotation = rotationAngle.degrees + deltaRotation
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:11:24: note: property declared here
    @State private var rotationAngle: Angle = .degrees(0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:43:17: warning: main actor-isolated property 'rotationAngle' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                rotationAngle = Angle(degrees: newRotation)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:11:24: note: mutation of this property is only permitted within the actor
    @State private var rotationAngle: Angle = .degrees(0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:44:17: warning: main actor-isolated property 'totalAngle' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                totalAngle = newRotation + Double(fullRotations) * 360
                ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:13:18: note: mutation of this property is only permitted within the actor
    @Binding var totalAngle: Double
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:44:51: warning: main actor-isolated property 'fullRotations' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                totalAngle = newRotation + Double(fullRotations) * 360
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:17:24: note: property declared here
    @State private var fullRotations: Int = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:45:17: warning: main actor-isolated property 'onAngleChanged' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                onAngleChanged(newRotation + Double(fullRotations) * 360)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:14:9: note: property declared here
    var onAngleChanged: (Double) -> Void
        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:45:53: warning: main actor-isolated property 'fullRotations' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                onAngleChanged(newRotation + Double(fullRotations) * 360)
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotation.swift:17:24: note: property declared here
    @State private var fullRotations: Int = 0
                       ^
SwiftCompile normal arm64_32 Compiling\ SimpleRotation.swift /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 2.0/SimpleRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 2.0/SimpleRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/SimpleRotation.swift:72:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: CGSize = .zero
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/SimpleRotation.swift:72:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: CGSize = .zero
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/SimpleRotation.swift:72:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    static var defaultValue: CGSize = .zero
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/SimpleRotation.swift:72:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: CGSize = .zero
               ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling KnobRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftDriverJobDiscovery normal armv7k Compiling KnobInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal arm64 Compiling\ SimpleRotation.swift /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 2.0/SimpleRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 2.0/SimpleRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/SimpleRotation.swift:72:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: CGSize = .zero
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/SimpleRotation.swift:72:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: CGSize = .zero
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/SimpleRotation.swift:72:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    static var defaultValue: CGSize = .zero
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 2.0/SimpleRotation.swift:72:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: CGSize = .zero
               ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling AutoRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal arm64 Compiling\ ValueRotationInertia.swift /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/ValueRotationInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/ValueRotationInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:189:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: CGSize = .zero
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:189:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: CGSize = .zero
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:189:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    static var defaultValue: CGSize = .zero
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:189:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: CGSize = .zero
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:141:71: warning: main actor-isolated property 'lastVelocity' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    let angle = Angle(degrees: Double(lastVelocity) * rotationDirection)
                                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:13:24: note: property declared here
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:141:87: warning: main actor-isolated property 'rotationDirection' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    let angle = Angle(degrees: Double(lastVelocity) * rotationDirection)
                                                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:26:24: note: property declared here
    @State private var rotationDirection: Double = 1
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:142:37: warning: main actor-isolated property 'rotationAngle' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                    rotationAngle += angle
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:11:24: note: mutation of this property is only permitted within the actor
    @State private var rotationAngle: Angle = .degrees(0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:143:37: warning: main actor-isolated property 'onAngleChanged' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    onAngleChanged(rotationAngle.degrees)
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:23:9: note: property declared here
    var onAngleChanged: (Double) -> Void
        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:143:52: warning: main actor-isolated property 'rotationAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    onAngleChanged(rotationAngle.degrees)
                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:11:24: note: property declared here
    @State private var rotationAngle: Angle = .degrees(0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:144:37: warning: main actor-isolated property 'lastVelocity' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                    lastVelocity *= (1 - friction)
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:13:24: note: mutation of this property is only permitted within the actor
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:144:58: warning: main actor-isolated property 'friction' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    lastVelocity *= (1 - friction)
                                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:16:18: note: property declared here
    @Binding var friction: CGFloat
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:145:40: warning: main actor-isolated property 'lastVelocity' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    if lastVelocity < 0.1 {
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:13:24: note: property declared here
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:147:41: warning: main actor-isolated property 'isSpinning' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                        isSpinning = false
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:14:24: note: mutation of this property is only permitted within the actor
    @State private var isSpinning = false
                       ^
SwiftDriverJobDiscovery normal armv7k Compiling OneFingerRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal arm64_32 Compiling\ OneFingerRotation.swift /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/OneFingerRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/OneFingerRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling simpleRotationInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal arm64 Compiling\ ValueAutoRotationInertia.swift /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/ValueAutoRotationInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/ValueAutoRotationInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:227:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: CGSize = .zero
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:227:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: CGSize = .zero
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:227:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    static var defaultValue: CGSize = .zero
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:227:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: CGSize = .zero
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:56:37: warning: main actor-isolated property 'autoRotationSpeed' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                let deltaRotation = autoRotationSpeed / 60.0
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:27:18: note: property declared here
    @Binding var autoRotationSpeed: Double
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:57:35: warning: main actor-isolated property 'rotationAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                let newRotation = rotationAngle.degrees + deltaRotation
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:11:24: note: property declared here
    @State private var rotationAngle: Angle = .degrees(0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:58:17: warning: main actor-isolated property 'rotationAngle' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                rotationAngle = Angle(degrees: newRotation)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:11:24: note: mutation of this property is only permitted within the actor
    @State private var rotationAngle: Angle = .degrees(0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:59:17: warning: main actor-isolated property 'totalAngle' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                totalAngle = newRotation //+ Double(totalAngle) * 360
                ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:24:18: note: mutation of this property is only permitted within the actor
    @Binding var totalAngle: Double
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:60:17: warning: main actor-isolated property 'onAngleChanged' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                onAngleChanged(newRotation) //+ Double(totalAngle) * 360)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:23:9: note: property declared here
    var onAngleChanged: (Double) -> Void
        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:168:71: warning: main actor-isolated property 'lastVelocity' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    let angle = Angle(degrees: Double(lastVelocity) * rotationDirection)
                                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:13:24: note: property declared here
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:168:87: warning: main actor-isolated property 'rotationDirection' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    let angle = Angle(degrees: Double(lastVelocity) * rotationDirection)
                                                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:26:24: note: property declared here
    @State private var rotationDirection: Double = 1
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:169:37: warning: main actor-isolated property 'rotationAngle' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                    rotationAngle += angle
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:11:24: note: mutation of this property is only permitted within the actor
    @State private var rotationAngle: Angle = .degrees(0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:170:37: warning: main actor-isolated property 'onAngleChanged' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    onAngleChanged(rotationAngle.degrees)
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:23:9: note: property declared here
    var onAngleChanged: (Double) -> Void
        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:170:52: warning: main actor-isolated property 'rotationAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    onAngleChanged(rotationAngle.degrees)
                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:11:24: note: property declared here
    @State private var rotationAngle: Angle = .degrees(0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:171:37: warning: main actor-isolated property 'lastVelocity' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                    lastVelocity *= (1 - friction)
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:13:24: note: mutation of this property is only permitted within the actor
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:171:58: warning: main actor-isolated property 'friction' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    lastVelocity *= (1 - friction)
                                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:16:18: note: property declared here
    @Binding var friction: CGFloat
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:172:40: warning: main actor-isolated property 'lastVelocity' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    if lastVelocity < 0.1 {
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:13:24: note: property declared here
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:174:41: warning: main actor-isolated property 'isSpinning' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                        isSpinning = false
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueAutoRotationInertia.swift:14:24: note: mutation of this property is only permitted within the actor
    @State private var isSpinning = false
                       ^
SwiftDriverJobDiscovery normal armv7k Compiling ValueAutoRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal armv7k Compiling\ ValueRotation.swift /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/ValueRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/ValueRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotation.swift:90:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: CGSize = .zero
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotation.swift:90:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: CGSize = .zero
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotation.swift:90:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    static var defaultValue: CGSize = .zero
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotation.swift:90:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: CGSize = .zero
               ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling SimpleRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal arm64 Compiling\ ValueRotation.swift /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/ValueRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/ValueRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotation.swift:90:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: CGSize = .zero
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotation.swift:90:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: CGSize = .zero
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotation.swift:90:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    static var defaultValue: CGSize = .zero
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotation.swift:90:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: CGSize = .zero
               ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling OneFingerRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal arm64_32 Compiling\ ValueRotationInertia.swift /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/ValueRotationInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/ValueRotationInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:189:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: CGSize = .zero
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:189:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: CGSize = .zero
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:189:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    static var defaultValue: CGSize = .zero
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:189:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: CGSize = .zero
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:141:71: warning: main actor-isolated property 'lastVelocity' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    let angle = Angle(degrees: Double(lastVelocity) * rotationDirection)
                                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:13:24: note: property declared here
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:141:87: warning: main actor-isolated property 'rotationDirection' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    let angle = Angle(degrees: Double(lastVelocity) * rotationDirection)
                                                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:26:24: note: property declared here
    @State private var rotationDirection: Double = 1
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:142:37: warning: main actor-isolated property 'rotationAngle' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                    rotationAngle += angle
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:11:24: note: mutation of this property is only permitted within the actor
    @State private var rotationAngle: Angle = .degrees(0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:143:37: warning: main actor-isolated property 'onAngleChanged' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    onAngleChanged(rotationAngle.degrees)
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:23:9: note: property declared here
    var onAngleChanged: (Double) -> Void
        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:143:52: warning: main actor-isolated property 'rotationAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    onAngleChanged(rotationAngle.degrees)
                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:11:24: note: property declared here
    @State private var rotationAngle: Angle = .degrees(0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:144:37: warning: main actor-isolated property 'lastVelocity' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                    lastVelocity *= (1 - friction)
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:13:24: note: mutation of this property is only permitted within the actor
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:144:58: warning: main actor-isolated property 'friction' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    lastVelocity *= (1 - friction)
                                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:16:18: note: property declared here
    @Binding var friction: CGFloat
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:145:40: warning: main actor-isolated property 'lastVelocity' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    if lastVelocity < 0.1 {
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:13:24: note: property declared here
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:147:41: warning: main actor-isolated property 'isSpinning' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                        isSpinning = false
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:14:24: note: mutation of this property is only permitted within the actor
    @State private var isSpinning = false
                       ^
SwiftDriverJobDiscovery normal arm64 Compiling AutoRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal armv7k Compiling\ ValueRotationInertia.swift /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/ValueRotationInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/ValueRotationInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:189:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: CGSize = .zero
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:189:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: CGSize = .zero
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:189:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    static var defaultValue: CGSize = .zero
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:189:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: CGSize = .zero
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:141:71: warning: main actor-isolated property 'lastVelocity' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    let angle = Angle(degrees: Double(lastVelocity) * rotationDirection)
                                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:13:24: note: property declared here
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:141:87: warning: main actor-isolated property 'rotationDirection' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    let angle = Angle(degrees: Double(lastVelocity) * rotationDirection)
                                                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:26:24: note: property declared here
    @State private var rotationDirection: Double = 1
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:142:37: warning: main actor-isolated property 'rotationAngle' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                    rotationAngle += angle
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:11:24: note: mutation of this property is only permitted within the actor
    @State private var rotationAngle: Angle = .degrees(0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:143:37: warning: main actor-isolated property 'onAngleChanged' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    onAngleChanged(rotationAngle.degrees)
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:23:9: note: property declared here
    var onAngleChanged: (Double) -> Void
        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:143:52: warning: main actor-isolated property 'rotationAngle' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    onAngleChanged(rotationAngle.degrees)
                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:11:24: note: property declared here
    @State private var rotationAngle: Angle = .degrees(0)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:144:37: warning: main actor-isolated property 'lastVelocity' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                    lastVelocity *= (1 - friction)
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:13:24: note: mutation of this property is only permitted within the actor
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:144:58: warning: main actor-isolated property 'friction' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    lastVelocity *= (1 - friction)
                                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:16:18: note: property declared here
    @Binding var friction: CGFloat
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:145:40: warning: main actor-isolated property 'lastVelocity' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    if lastVelocity < 0.1 {
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:13:24: note: property declared here
    @State private var lastVelocity: CGFloat = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:147:41: warning: main actor-isolated property 'isSpinning' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                        isSpinning = false
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/ValueRotationInertia.swift:14:24: note: mutation of this property is only permitted within the actor
    @State private var isSpinning = false
                       ^
SwiftDriverJobDiscovery normal arm64_32 Compiling ValueAutoRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal armv7k Compiling\ KnobRotation.swift /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/KnobRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version\ 1.0/KnobRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobRotation.swift:107:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: CGSize = .zero
               ^
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobRotation.swift:107:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: CGSize = .zero
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobRotation.swift:107:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    static var defaultValue: CGSize = .zero
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OneFingerRotation/Version 1.0/KnobRotation.swift:107:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: CGSize = .zero
               ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling SimpleRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftDriverJobDiscovery normal armv7k Compiling simpleRotationInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftDriverJobDiscovery normal arm64_32 Compiling ValueAutoRotationInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftDriverJobDiscovery normal armv7k Compiling ValueAutoRotationInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftDriverJobDiscovery normal arm64 Compiling ValueRotationInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftDriverJobDiscovery normal armv7k Compiling ValueRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftDriverJobDiscovery normal arm64 Compiling ValueAutoRotationInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftDriverJobDiscovery normal arm64 Compiling ValueRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftDriver\ Compilation OneFingerRotation normal arm64 com.apple.xcode.tools.swift.compiler (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name OneFingerRotation -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/OneFingerRotation.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos7.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/OneFingerRotation-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/OneFingerRotation.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/OneFingerRotation_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/OneFingerRotation-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/Binary/OneFingerRotation.o normal arm64 (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos7.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/OneFingerRotation.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/OneFingerRotation_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/OneFingerRotation_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/OneFingerRotation.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/Binary/OneFingerRotation.o
SwiftDriverJobDiscovery normal armv7k Compiling KnobRotation.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftDriverJobDiscovery normal arm64_32 Compiling ValueRotationInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftDriver\ Compilation OneFingerRotation normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name OneFingerRotation -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/OneFingerRotation.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos7.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/OneFingerRotation-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/OneFingerRotation.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/OneFingerRotation_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/OneFingerRotation-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/Binary/OneFingerRotation.o normal arm64_32 (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos7.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/OneFingerRotation.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/OneFingerRotation_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/OneFingerRotation_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/OneFingerRotation.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/Binary/OneFingerRotation.o
SwiftDriverJobDiscovery normal armv7k Compiling ValueRotationInertia.swift (in target 'OneFingerRotation' from project 'OneFingerRotation')
SwiftDriver\ Compilation OneFingerRotation normal armv7k com.apple.xcode.tools.swift.compiler (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name OneFingerRotation -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/OneFingerRotation.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos7.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/OneFingerRotation-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/OneFingerRotation.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/OneFingerRotation_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/OneFingerRotation-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/Binary/OneFingerRotation.o normal armv7k (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos7.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/OneFingerRotation.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/OneFingerRotation_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/OneFingerRotation_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/OneFingerRotation.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/Binary/OneFingerRotation.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.o normal arm64\ armv7k\ arm64_32 (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/Binary/OneFingerRotation.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/Binary/OneFingerRotation.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/Binary/OneFingerRotation.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.o
ExtractAppIntentsMetadata (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name OneFingerRotation --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 7.0 --bundle-identifier spi-builder-workspace.OneFingerRotation --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.appintents --target-triple arm64-apple-watchos7.0 --target-triple armv7k-apple-watchos7.0 --target-triple arm64_32-apple-watchos7.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/OneFingerRotation_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/OneFingerRotation_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/OneFingerRotation_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/OneFingerRotation.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/OneFingerRotation.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/OneFingerRotation.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/OneFingerRotation.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/OneFingerRotation.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64/OneFingerRotation.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/armv7k/OneFingerRotation.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OneFingerRotation.build/Debug-watchos/OneFingerRotation.build/Objects-normal/arm64_32/OneFingerRotation.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-30 00:38:30.632 appintentsmetadataprocessor[748:4402] Starting appintentsmetadataprocessor export
2025-04-30 00:38:30.669 appintentsmetadataprocessor[748:4402] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.o (in target 'OneFingerRotation' from project 'OneFingerRotation')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/OneFingerRotation.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "OneFingerRotation",
  "name" : "OneFingerRotation",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "macos",
      "version" : "11.0"
    },
    {
      "name" : "watchos",
      "version" : "7.0"
    }
  ],
  "products" : [
    {
      "name" : "OneFingerRotation",
      "targets" : [
        "OneFingerRotation"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "OneFingerRotationTests",
      "module_type" : "SwiftTarget",
      "name" : "OneFingerRotationTests",
      "path" : "Tests/OneFingerRotationTests",
      "sources" : [
        "OneFingerRotationTests.swift"
      ],
      "target_dependencies" : [
        "OneFingerRotation"
      ],
      "type" : "test"
    },
    {
      "c99name" : "OneFingerRotation",
      "module_type" : "SwiftTarget",
      "name" : "OneFingerRotation",
      "path" : "Sources/OneFingerRotation",
      "product_memberships" : [
        "OneFingerRotation"
      ],
      "sources" : [
        "OneFingerRotation.swift",
        "Version 1.0/AutoRotation.swift",
        "Version 1.0/KnobInertia.swift",
        "Version 1.0/KnobRotation.swift",
        "Version 1.0/ValueAutoRotation.swift",
        "Version 1.0/ValueAutoRotationInertia.swift",
        "Version 1.0/ValueRotation.swift",
        "Version 1.0/ValueRotationInertia.swift",
        "Version 2.0/SimpleRotation.swift",
        "Version 2.0/simpleRotationInertia.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
Done.