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

The Swift Package Index logo.Swift Package Index

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

Build Information

Failed to build SwiftySensors with Swift 6.0 for tvOS using Xcode 16.0.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme SwiftySensors -destination generic/platform=tvos OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

    |                           |- note: annotate 'powerMeasurementSupported' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |         public static let forceOnBeltAndPowerOutputSupported    = MachineFeatures(rawValue: 1 << 15)
 34 |         public static let userDataRetentionSupported            = MachineFeatures(rawValue: 1 << 16)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:33:27: warning: static property 'forceOnBeltAndPowerOutputSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.MachineFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | open class FitnessMachineSerializer {
 14 |
 15 |     public struct MachineFeatures: OptionSet {
    |                   `- note: consider making struct 'MachineFeatures' conform to the 'Sendable' protocol
 16 |         public let rawValue: UInt32
 17 |
    :
 31 |         public static let remainingTimeSupported                = MachineFeatures(rawValue: 1 << 13)
 32 |         public static let powerMeasurementSupported             = MachineFeatures(rawValue: 1 << 14)
 33 |         public static let forceOnBeltAndPowerOutputSupported    = MachineFeatures(rawValue: 1 << 15)
    |                           |- warning: static property 'forceOnBeltAndPowerOutputSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.MachineFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'forceOnBeltAndPowerOutputSupported' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |         public static let userDataRetentionSupported            = MachineFeatures(rawValue: 1 << 16)
 35 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:34:27: warning: static property 'userDataRetentionSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.MachineFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | open class FitnessMachineSerializer {
 14 |
 15 |     public struct MachineFeatures: OptionSet {
    |                   `- note: consider making struct 'MachineFeatures' conform to the 'Sendable' protocol
 16 |         public let rawValue: UInt32
 17 |
    :
 32 |         public static let powerMeasurementSupported             = MachineFeatures(rawValue: 1 << 14)
 33 |         public static let forceOnBeltAndPowerOutputSupported    = MachineFeatures(rawValue: 1 << 15)
 34 |         public static let userDataRetentionSupported            = MachineFeatures(rawValue: 1 << 16)
    |                           |- warning: static property 'userDataRetentionSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.MachineFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'userDataRetentionSupported' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |         public init(rawValue: UInt32) {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:44:27: warning: static property 'speedTargetSettingSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
 39 |     }
 40 |
 41 |     public struct TargetSettingFeatures: OptionSet {
    |                   `- note: consider making struct 'TargetSettingFeatures' conform to the 'Sendable' protocol
 42 |         public let rawValue: UInt32
 43 |
 44 |         public static let speedTargetSettingSupported                               = TargetSettingFeatures(rawValue: 1 << 0)
    |                           |- warning: static property 'speedTargetSettingSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'speedTargetSettingSupported' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 45 |         public static let inclinationTargetSettingSupported                         = TargetSettingFeatures(rawValue: 1 << 1)
 46 |         public static let resistanceTargetSettingSupported                          = TargetSettingFeatures(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:45:27: warning: static property 'inclinationTargetSettingSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
 39 |     }
 40 |
 41 |     public struct TargetSettingFeatures: OptionSet {
    |                   `- note: consider making struct 'TargetSettingFeatures' conform to the 'Sendable' protocol
 42 |         public let rawValue: UInt32
 43 |
 44 |         public static let speedTargetSettingSupported                               = TargetSettingFeatures(rawValue: 1 << 0)
 45 |         public static let inclinationTargetSettingSupported                         = TargetSettingFeatures(rawValue: 1 << 1)
    |                           |- warning: static property 'inclinationTargetSettingSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'inclinationTargetSettingSupported' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 |         public static let resistanceTargetSettingSupported                          = TargetSettingFeatures(rawValue: 1 << 2)
 47 |         public static let powerTargetSettingSupported                               = TargetSettingFeatures(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:46:27: warning: static property 'resistanceTargetSettingSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
 39 |     }
 40 |
 41 |     public struct TargetSettingFeatures: OptionSet {
    |                   `- note: consider making struct 'TargetSettingFeatures' conform to the 'Sendable' protocol
 42 |         public let rawValue: UInt32
 43 |
 44 |         public static let speedTargetSettingSupported                               = TargetSettingFeatures(rawValue: 1 << 0)
 45 |         public static let inclinationTargetSettingSupported                         = TargetSettingFeatures(rawValue: 1 << 1)
 46 |         public static let resistanceTargetSettingSupported                          = TargetSettingFeatures(rawValue: 1 << 2)
    |                           |- warning: static property 'resistanceTargetSettingSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'resistanceTargetSettingSupported' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |         public static let powerTargetSettingSupported                               = TargetSettingFeatures(rawValue: 1 << 3)
 48 |         public static let heartRateTargetSettingSupported                           = TargetSettingFeatures(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:47:27: warning: static property 'powerTargetSettingSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
 39 |     }
 40 |
 41 |     public struct TargetSettingFeatures: OptionSet {
    |                   `- note: consider making struct 'TargetSettingFeatures' conform to the 'Sendable' protocol
 42 |         public let rawValue: UInt32
 43 |
    :
 45 |         public static let inclinationTargetSettingSupported                         = TargetSettingFeatures(rawValue: 1 << 1)
 46 |         public static let resistanceTargetSettingSupported                          = TargetSettingFeatures(rawValue: 1 << 2)
 47 |         public static let powerTargetSettingSupported                               = TargetSettingFeatures(rawValue: 1 << 3)
    |                           |- warning: static property 'powerTargetSettingSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'powerTargetSettingSupported' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 48 |         public static let heartRateTargetSettingSupported                           = TargetSettingFeatures(rawValue: 1 << 4)
 49 |         public static let targetedExpendedEnergyConfigurationSupported              = TargetSettingFeatures(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:48:27: warning: static property 'heartRateTargetSettingSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
 39 |     }
 40 |
 41 |     public struct TargetSettingFeatures: OptionSet {
    |                   `- note: consider making struct 'TargetSettingFeatures' conform to the 'Sendable' protocol
 42 |         public let rawValue: UInt32
 43 |
    :
 46 |         public static let resistanceTargetSettingSupported                          = TargetSettingFeatures(rawValue: 1 << 2)
 47 |         public static let powerTargetSettingSupported                               = TargetSettingFeatures(rawValue: 1 << 3)
 48 |         public static let heartRateTargetSettingSupported                           = TargetSettingFeatures(rawValue: 1 << 4)
    |                           |- warning: static property 'heartRateTargetSettingSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'heartRateTargetSettingSupported' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 49 |         public static let targetedExpendedEnergyConfigurationSupported              = TargetSettingFeatures(rawValue: 1 << 5)
 50 |         public static let targetedStepNumberConfigurationSupported                  = TargetSettingFeatures(rawValue: 1 << 6)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:49:27: warning: static property 'targetedExpendedEnergyConfigurationSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
 39 |     }
 40 |
 41 |     public struct TargetSettingFeatures: OptionSet {
    |                   `- note: consider making struct 'TargetSettingFeatures' conform to the 'Sendable' protocol
 42 |         public let rawValue: UInt32
 43 |
    :
 47 |         public static let powerTargetSettingSupported                               = TargetSettingFeatures(rawValue: 1 << 3)
 48 |         public static let heartRateTargetSettingSupported                           = TargetSettingFeatures(rawValue: 1 << 4)
 49 |         public static let targetedExpendedEnergyConfigurationSupported              = TargetSettingFeatures(rawValue: 1 << 5)
    |                           |- warning: static property 'targetedExpendedEnergyConfigurationSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'targetedExpendedEnergyConfigurationSupported' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |         public static let targetedStepNumberConfigurationSupported                  = TargetSettingFeatures(rawValue: 1 << 6)
 51 |         public static let targetedStrideNumberConfigurationSupported                = TargetSettingFeatures(rawValue: 1 << 7)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:50:27: warning: static property 'targetedStepNumberConfigurationSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
 39 |     }
 40 |
 41 |     public struct TargetSettingFeatures: OptionSet {
    |                   `- note: consider making struct 'TargetSettingFeatures' conform to the 'Sendable' protocol
 42 |         public let rawValue: UInt32
 43 |
    :
 48 |         public static let heartRateTargetSettingSupported                           = TargetSettingFeatures(rawValue: 1 << 4)
 49 |         public static let targetedExpendedEnergyConfigurationSupported              = TargetSettingFeatures(rawValue: 1 << 5)
 50 |         public static let targetedStepNumberConfigurationSupported                  = TargetSettingFeatures(rawValue: 1 << 6)
    |                           |- warning: static property 'targetedStepNumberConfigurationSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'targetedStepNumberConfigurationSupported' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 51 |         public static let targetedStrideNumberConfigurationSupported                = TargetSettingFeatures(rawValue: 1 << 7)
 52 |         public static let targetedDistanceConfigurationSupported                    = TargetSettingFeatures(rawValue: 1 << 8)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:51:27: warning: static property 'targetedStrideNumberConfigurationSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
 39 |     }
 40 |
 41 |     public struct TargetSettingFeatures: OptionSet {
    |                   `- note: consider making struct 'TargetSettingFeatures' conform to the 'Sendable' protocol
 42 |         public let rawValue: UInt32
 43 |
    :
 49 |         public static let targetedExpendedEnergyConfigurationSupported              = TargetSettingFeatures(rawValue: 1 << 5)
 50 |         public static let targetedStepNumberConfigurationSupported                  = TargetSettingFeatures(rawValue: 1 << 6)
 51 |         public static let targetedStrideNumberConfigurationSupported                = TargetSettingFeatures(rawValue: 1 << 7)
    |                           |- warning: static property 'targetedStrideNumberConfigurationSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'targetedStrideNumberConfigurationSupported' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |         public static let targetedDistanceConfigurationSupported                    = TargetSettingFeatures(rawValue: 1 << 8)
 53 |         public static let targetedTrainingTimeConfigurationSupported                = TargetSettingFeatures(rawValue: 1 << 9)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:52:27: warning: static property 'targetedDistanceConfigurationSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
 39 |     }
 40 |
 41 |     public struct TargetSettingFeatures: OptionSet {
    |                   `- note: consider making struct 'TargetSettingFeatures' conform to the 'Sendable' protocol
 42 |         public let rawValue: UInt32
 43 |
    :
 50 |         public static let targetedStepNumberConfigurationSupported                  = TargetSettingFeatures(rawValue: 1 << 6)
 51 |         public static let targetedStrideNumberConfigurationSupported                = TargetSettingFeatures(rawValue: 1 << 7)
 52 |         public static let targetedDistanceConfigurationSupported                    = TargetSettingFeatures(rawValue: 1 << 8)
    |                           |- warning: static property 'targetedDistanceConfigurationSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'targetedDistanceConfigurationSupported' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 53 |         public static let targetedTrainingTimeConfigurationSupported                = TargetSettingFeatures(rawValue: 1 << 9)
 54 |         public static let targetedTimeInTwoHeartRateZonesConfigurationSupported     = TargetSettingFeatures(rawValue: 1 << 10)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:53:27: warning: static property 'targetedTrainingTimeConfigurationSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
 39 |     }
 40 |
 41 |     public struct TargetSettingFeatures: OptionSet {
    |                   `- note: consider making struct 'TargetSettingFeatures' conform to the 'Sendable' protocol
 42 |         public let rawValue: UInt32
 43 |
    :
 51 |         public static let targetedStrideNumberConfigurationSupported                = TargetSettingFeatures(rawValue: 1 << 7)
 52 |         public static let targetedDistanceConfigurationSupported                    = TargetSettingFeatures(rawValue: 1 << 8)
 53 |         public static let targetedTrainingTimeConfigurationSupported                = TargetSettingFeatures(rawValue: 1 << 9)
    |                           |- warning: static property 'targetedTrainingTimeConfigurationSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'targetedTrainingTimeConfigurationSupported' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 54 |         public static let targetedTimeInTwoHeartRateZonesConfigurationSupported     = TargetSettingFeatures(rawValue: 1 << 10)
 55 |         public static let targetedTimeInThreeHeartRateZonesConfigurationSupported   = TargetSettingFeatures(rawValue: 1 << 11)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:54:27: warning: static property 'targetedTimeInTwoHeartRateZonesConfigurationSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
 39 |     }
 40 |
 41 |     public struct TargetSettingFeatures: OptionSet {
    |                   `- note: consider making struct 'TargetSettingFeatures' conform to the 'Sendable' protocol
 42 |         public let rawValue: UInt32
 43 |
    :
 52 |         public static let targetedDistanceConfigurationSupported                    = TargetSettingFeatures(rawValue: 1 << 8)
 53 |         public static let targetedTrainingTimeConfigurationSupported                = TargetSettingFeatures(rawValue: 1 << 9)
 54 |         public static let targetedTimeInTwoHeartRateZonesConfigurationSupported     = TargetSettingFeatures(rawValue: 1 << 10)
    |                           |- warning: static property 'targetedTimeInTwoHeartRateZonesConfigurationSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'targetedTimeInTwoHeartRateZonesConfigurationSupported' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 55 |         public static let targetedTimeInThreeHeartRateZonesConfigurationSupported   = TargetSettingFeatures(rawValue: 1 << 11)
 56 |         public static let targetedTimeInFiveHeartRateZonesConfigurationSupported    = TargetSettingFeatures(rawValue: 1 << 12)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:55:27: warning: static property 'targetedTimeInThreeHeartRateZonesConfigurationSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
 39 |     }
 40 |
 41 |     public struct TargetSettingFeatures: OptionSet {
    |                   `- note: consider making struct 'TargetSettingFeatures' conform to the 'Sendable' protocol
 42 |         public let rawValue: UInt32
 43 |
    :
 53 |         public static let targetedTrainingTimeConfigurationSupported                = TargetSettingFeatures(rawValue: 1 << 9)
 54 |         public static let targetedTimeInTwoHeartRateZonesConfigurationSupported     = TargetSettingFeatures(rawValue: 1 << 10)
 55 |         public static let targetedTimeInThreeHeartRateZonesConfigurationSupported   = TargetSettingFeatures(rawValue: 1 << 11)
    |                           |- warning: static property 'targetedTimeInThreeHeartRateZonesConfigurationSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'targetedTimeInThreeHeartRateZonesConfigurationSupported' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 56 |         public static let targetedTimeInFiveHeartRateZonesConfigurationSupported    = TargetSettingFeatures(rawValue: 1 << 12)
 57 |         public static let indoorBikeSimulationParametersSupported                   = TargetSettingFeatures(rawValue: 1 << 13)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:56:27: warning: static property 'targetedTimeInFiveHeartRateZonesConfigurationSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
 39 |     }
 40 |
 41 |     public struct TargetSettingFeatures: OptionSet {
    |                   `- note: consider making struct 'TargetSettingFeatures' conform to the 'Sendable' protocol
 42 |         public let rawValue: UInt32
 43 |
    :
 54 |         public static let targetedTimeInTwoHeartRateZonesConfigurationSupported     = TargetSettingFeatures(rawValue: 1 << 10)
 55 |         public static let targetedTimeInThreeHeartRateZonesConfigurationSupported   = TargetSettingFeatures(rawValue: 1 << 11)
 56 |         public static let targetedTimeInFiveHeartRateZonesConfigurationSupported    = TargetSettingFeatures(rawValue: 1 << 12)
    |                           |- warning: static property 'targetedTimeInFiveHeartRateZonesConfigurationSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'targetedTimeInFiveHeartRateZonesConfigurationSupported' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 57 |         public static let indoorBikeSimulationParametersSupported                   = TargetSettingFeatures(rawValue: 1 << 13)
 58 |         public static let wheelCircumferenceConfigurationSupported                  = TargetSettingFeatures(rawValue: 1 << 14)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:57:27: warning: static property 'indoorBikeSimulationParametersSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
 39 |     }
 40 |
 41 |     public struct TargetSettingFeatures: OptionSet {
    |                   `- note: consider making struct 'TargetSettingFeatures' conform to the 'Sendable' protocol
 42 |         public let rawValue: UInt32
 43 |
    :
 55 |         public static let targetedTimeInThreeHeartRateZonesConfigurationSupported   = TargetSettingFeatures(rawValue: 1 << 11)
 56 |         public static let targetedTimeInFiveHeartRateZonesConfigurationSupported    = TargetSettingFeatures(rawValue: 1 << 12)
 57 |         public static let indoorBikeSimulationParametersSupported                   = TargetSettingFeatures(rawValue: 1 << 13)
    |                           |- warning: static property 'indoorBikeSimulationParametersSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'indoorBikeSimulationParametersSupported' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |         public static let wheelCircumferenceConfigurationSupported                  = TargetSettingFeatures(rawValue: 1 << 14)
 59 |         public static let spinDownControlSupported                                  = TargetSettingFeatures(rawValue: 1 << 15)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:58:27: warning: static property 'wheelCircumferenceConfigurationSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
 39 |     }
 40 |
 41 |     public struct TargetSettingFeatures: OptionSet {
    |                   `- note: consider making struct 'TargetSettingFeatures' conform to the 'Sendable' protocol
 42 |         public let rawValue: UInt32
 43 |
    :
 56 |         public static let targetedTimeInFiveHeartRateZonesConfigurationSupported    = TargetSettingFeatures(rawValue: 1 << 12)
 57 |         public static let indoorBikeSimulationParametersSupported                   = TargetSettingFeatures(rawValue: 1 << 13)
 58 |         public static let wheelCircumferenceConfigurationSupported                  = TargetSettingFeatures(rawValue: 1 << 14)
    |                           |- warning: static property 'wheelCircumferenceConfigurationSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'wheelCircumferenceConfigurationSupported' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 59 |         public static let spinDownControlSupported                                  = TargetSettingFeatures(rawValue: 1 << 15)
 60 |         public static let targetedCadenceConfigurationSupported                     = TargetSettingFeatures(rawValue: 1 << 16)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:59:27: warning: static property 'spinDownControlSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
 39 |     }
 40 |
 41 |     public struct TargetSettingFeatures: OptionSet {
    |                   `- note: consider making struct 'TargetSettingFeatures' conform to the 'Sendable' protocol
 42 |         public let rawValue: UInt32
 43 |
    :
 57 |         public static let indoorBikeSimulationParametersSupported                   = TargetSettingFeatures(rawValue: 1 << 13)
 58 |         public static let wheelCircumferenceConfigurationSupported                  = TargetSettingFeatures(rawValue: 1 << 14)
 59 |         public static let spinDownControlSupported                                  = TargetSettingFeatures(rawValue: 1 << 15)
    |                           |- warning: static property 'spinDownControlSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'spinDownControlSupported' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 60 |         public static let targetedCadenceConfigurationSupported                     = TargetSettingFeatures(rawValue: 1 << 16)
 61 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:60:27: warning: static property 'targetedCadenceConfigurationSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
 39 |     }
 40 |
 41 |     public struct TargetSettingFeatures: OptionSet {
    |                   `- note: consider making struct 'TargetSettingFeatures' conform to the 'Sendable' protocol
 42 |         public let rawValue: UInt32
 43 |
    :
 58 |         public static let wheelCircumferenceConfigurationSupported                  = TargetSettingFeatures(rawValue: 1 << 14)
 59 |         public static let spinDownControlSupported                                  = TargetSettingFeatures(rawValue: 1 << 15)
 60 |         public static let targetedCadenceConfigurationSupported                     = TargetSettingFeatures(rawValue: 1 << 16)
    |                           |- warning: static property 'targetedCadenceConfigurationSupported' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TargetSettingFeatures' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'targetedCadenceConfigurationSupported' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |
 62 |         public init(rawValue: UInt32) {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:84:20: warning: static property 'TrainingStatusStringPresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TrainerStatusFlags' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |
 80 |
 81 |     public struct TrainerStatusFlags: OptionSet {
    |                   `- note: consider making struct 'TrainerStatusFlags' conform to the 'Sendable' protocol
 82 |         public let rawValue: UInt8
 83 |
 84 |         static let TrainingStatusStringPresent  = TrainerStatusFlags(rawValue: 1 << 0)
    |                    |- warning: static property 'TrainingStatusStringPresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TrainerStatusFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'TrainingStatusStringPresent' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 85 |         static let ExtendedStringPresent        = TrainerStatusFlags(rawValue: 1 << 2)
 86 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:85:20: warning: static property 'ExtendedStringPresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TrainerStatusFlags' may have shared mutable state; this is an error in the Swift 6 language mode
 79 |
 80 |
 81 |     public struct TrainerStatusFlags: OptionSet {
    |                   `- note: consider making struct 'TrainerStatusFlags' conform to the 'Sendable' protocol
 82 |         public let rawValue: UInt8
 83 |
 84 |         static let TrainingStatusStringPresent  = TrainerStatusFlags(rawValue: 1 << 0)
 85 |         static let ExtendedStringPresent        = TrainerStatusFlags(rawValue: 1 << 2)
    |                    |- warning: static property 'ExtendedStringPresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.TrainerStatusFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'ExtendedStringPresent' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 86 |
 87 |         public init(rawValue: UInt8) {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:292:27: warning: static property 'MoreData' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.IndoorBikeDataFlags' may have shared mutable state; this is an error in the Swift 6 language mode
287 |     }
288 |
289 |     public struct IndoorBikeDataFlags: OptionSet {
    |                   `- note: consider making struct 'IndoorBikeDataFlags' conform to the 'Sendable' protocol
290 |         public let rawValue: UInt16
291 |
292 |         public static let MoreData                      = IndoorBikeDataFlags(rawValue: 1 << 0)
    |                           |- warning: static property 'MoreData' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.IndoorBikeDataFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'MoreData' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
293 |         public static let AverageSpeedPresent           = IndoorBikeDataFlags(rawValue: 1 << 1)
294 |         public static let InstantaneousCadencePresent   = IndoorBikeDataFlags(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:293:27: warning: static property 'AverageSpeedPresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.IndoorBikeDataFlags' may have shared mutable state; this is an error in the Swift 6 language mode
287 |     }
288 |
289 |     public struct IndoorBikeDataFlags: OptionSet {
    |                   `- note: consider making struct 'IndoorBikeDataFlags' conform to the 'Sendable' protocol
290 |         public let rawValue: UInt16
291 |
292 |         public static let MoreData                      = IndoorBikeDataFlags(rawValue: 1 << 0)
293 |         public static let AverageSpeedPresent           = IndoorBikeDataFlags(rawValue: 1 << 1)
    |                           |- warning: static property 'AverageSpeedPresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.IndoorBikeDataFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'AverageSpeedPresent' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
294 |         public static let InstantaneousCadencePresent   = IndoorBikeDataFlags(rawValue: 1 << 2)
295 |         public static let AverageCadencePresent         = IndoorBikeDataFlags(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:294:27: warning: static property 'InstantaneousCadencePresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.IndoorBikeDataFlags' may have shared mutable state; this is an error in the Swift 6 language mode
287 |     }
288 |
289 |     public struct IndoorBikeDataFlags: OptionSet {
    |                   `- note: consider making struct 'IndoorBikeDataFlags' conform to the 'Sendable' protocol
290 |         public let rawValue: UInt16
291 |
292 |         public static let MoreData                      = IndoorBikeDataFlags(rawValue: 1 << 0)
293 |         public static let AverageSpeedPresent           = IndoorBikeDataFlags(rawValue: 1 << 1)
294 |         public static let InstantaneousCadencePresent   = IndoorBikeDataFlags(rawValue: 1 << 2)
    |                           |- warning: static property 'InstantaneousCadencePresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.IndoorBikeDataFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'InstantaneousCadencePresent' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
295 |         public static let AverageCadencePresent         = IndoorBikeDataFlags(rawValue: 1 << 3)
296 |         public static let TotalDistancePresent          = IndoorBikeDataFlags(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:295:27: warning: static property 'AverageCadencePresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.IndoorBikeDataFlags' may have shared mutable state; this is an error in the Swift 6 language mode
287 |     }
288 |
289 |     public struct IndoorBikeDataFlags: OptionSet {
    |                   `- note: consider making struct 'IndoorBikeDataFlags' conform to the 'Sendable' protocol
290 |         public let rawValue: UInt16
291 |
    :
293 |         public static let AverageSpeedPresent           = IndoorBikeDataFlags(rawValue: 1 << 1)
294 |         public static let InstantaneousCadencePresent   = IndoorBikeDataFlags(rawValue: 1 << 2)
295 |         public static let AverageCadencePresent         = IndoorBikeDataFlags(rawValue: 1 << 3)
    |                           |- warning: static property 'AverageCadencePresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.IndoorBikeDataFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'AverageCadencePresent' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
296 |         public static let TotalDistancePresent          = IndoorBikeDataFlags(rawValue: 1 << 4)
297 |         public static let ResistanceLevelPresent        = IndoorBikeDataFlags(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:296:27: warning: static property 'TotalDistancePresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.IndoorBikeDataFlags' may have shared mutable state; this is an error in the Swift 6 language mode
287 |     }
288 |
289 |     public struct IndoorBikeDataFlags: OptionSet {
    |                   `- note: consider making struct 'IndoorBikeDataFlags' conform to the 'Sendable' protocol
290 |         public let rawValue: UInt16
291 |
    :
294 |         public static let InstantaneousCadencePresent   = IndoorBikeDataFlags(rawValue: 1 << 2)
295 |         public static let AverageCadencePresent         = IndoorBikeDataFlags(rawValue: 1 << 3)
296 |         public static let TotalDistancePresent          = IndoorBikeDataFlags(rawValue: 1 << 4)
    |                           |- warning: static property 'TotalDistancePresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.IndoorBikeDataFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'TotalDistancePresent' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
297 |         public static let ResistanceLevelPresent        = IndoorBikeDataFlags(rawValue: 1 << 5)
298 |         public static let InstantaneousPowerPresent     = IndoorBikeDataFlags(rawValue: 1 << 6)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:297:27: warning: static property 'ResistanceLevelPresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.IndoorBikeDataFlags' may have shared mutable state; this is an error in the Swift 6 language mode
287 |     }
288 |
289 |     public struct IndoorBikeDataFlags: OptionSet {
    |                   `- note: consider making struct 'IndoorBikeDataFlags' conform to the 'Sendable' protocol
290 |         public let rawValue: UInt16
291 |
    :
295 |         public static let AverageCadencePresent         = IndoorBikeDataFlags(rawValue: 1 << 3)
296 |         public static let TotalDistancePresent          = IndoorBikeDataFlags(rawValue: 1 << 4)
297 |         public static let ResistanceLevelPresent        = IndoorBikeDataFlags(rawValue: 1 << 5)
    |                           |- warning: static property 'ResistanceLevelPresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.IndoorBikeDataFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'ResistanceLevelPresent' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
298 |         public static let InstantaneousPowerPresent     = IndoorBikeDataFlags(rawValue: 1 << 6)
299 |         public static let AveragePowerPresent           = IndoorBikeDataFlags(rawValue: 1 << 7)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:298:27: warning: static property 'InstantaneousPowerPresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.IndoorBikeDataFlags' may have shared mutable state; this is an error in the Swift 6 language mode
287 |     }
288 |
289 |     public struct IndoorBikeDataFlags: OptionSet {
    |                   `- note: consider making struct 'IndoorBikeDataFlags' conform to the 'Sendable' protocol
290 |         public let rawValue: UInt16
291 |
    :
296 |         public static let TotalDistancePresent          = IndoorBikeDataFlags(rawValue: 1 << 4)
297 |         public static let ResistanceLevelPresent        = IndoorBikeDataFlags(rawValue: 1 << 5)
298 |         public static let InstantaneousPowerPresent     = IndoorBikeDataFlags(rawValue: 1 << 6)
    |                           |- warning: static property 'InstantaneousPowerPresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.IndoorBikeDataFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'InstantaneousPowerPresent' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
299 |         public static let AveragePowerPresent           = IndoorBikeDataFlags(rawValue: 1 << 7)
300 |         public static let ExpendedEnergyPresent         = IndoorBikeDataFlags(rawValue: 1 << 8)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:299:27: warning: static property 'AveragePowerPresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.IndoorBikeDataFlags' may have shared mutable state; this is an error in the Swift 6 language mode
287 |     }
288 |
289 |     public struct IndoorBikeDataFlags: OptionSet {
    |                   `- note: consider making struct 'IndoorBikeDataFlags' conform to the 'Sendable' protocol
290 |         public let rawValue: UInt16
291 |
    :
297 |         public static let ResistanceLevelPresent        = IndoorBikeDataFlags(rawValue: 1 << 5)
298 |         public static let InstantaneousPowerPresent     = IndoorBikeDataFlags(rawValue: 1 << 6)
299 |         public static let AveragePowerPresent           = IndoorBikeDataFlags(rawValue: 1 << 7)
    |                           |- warning: static property 'AveragePowerPresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.IndoorBikeDataFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'AveragePowerPresent' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
300 |         public static let ExpendedEnergyPresent         = IndoorBikeDataFlags(rawValue: 1 << 8)
301 |         public static let HeartRatePresent              = IndoorBikeDataFlags(rawValue: 1 << 9)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:300:27: warning: static property 'ExpendedEnergyPresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.IndoorBikeDataFlags' may have shared mutable state; this is an error in the Swift 6 language mode
287 |     }
288 |
289 |     public struct IndoorBikeDataFlags: OptionSet {
    |                   `- note: consider making struct 'IndoorBikeDataFlags' conform to the 'Sendable' protocol
290 |         public let rawValue: UInt16
291 |
    :
298 |         public static let InstantaneousPowerPresent     = IndoorBikeDataFlags(rawValue: 1 << 6)
299 |         public static let AveragePowerPresent           = IndoorBikeDataFlags(rawValue: 1 << 7)
300 |         public static let ExpendedEnergyPresent         = IndoorBikeDataFlags(rawValue: 1 << 8)
    |                           |- warning: static property 'ExpendedEnergyPresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.IndoorBikeDataFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'ExpendedEnergyPresent' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
301 |         public static let HeartRatePresent              = IndoorBikeDataFlags(rawValue: 1 << 9)
302 |         public static let MetabolicEquivalentPresent    = IndoorBikeDataFlags(rawValue: 1 << 10)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:301:27: warning: static property 'HeartRatePresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.IndoorBikeDataFlags' may have shared mutable state; this is an error in the Swift 6 language mode
287 |     }
288 |
289 |     public struct IndoorBikeDataFlags: OptionSet {
    |                   `- note: consider making struct 'IndoorBikeDataFlags' conform to the 'Sendable' protocol
290 |         public let rawValue: UInt16
291 |
    :
299 |         public static let AveragePowerPresent           = IndoorBikeDataFlags(rawValue: 1 << 7)
300 |         public static let ExpendedEnergyPresent         = IndoorBikeDataFlags(rawValue: 1 << 8)
301 |         public static let HeartRatePresent              = IndoorBikeDataFlags(rawValue: 1 << 9)
    |                           |- warning: static property 'HeartRatePresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.IndoorBikeDataFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'HeartRatePresent' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
302 |         public static let MetabolicEquivalentPresent    = IndoorBikeDataFlags(rawValue: 1 << 10)
303 |         public static let ElapsedTimePresent            = IndoorBikeDataFlags(rawValue: 1 << 11)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:302:27: warning: static property 'MetabolicEquivalentPresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.IndoorBikeDataFlags' may have shared mutable state; this is an error in the Swift 6 language mode
287 |     }
288 |
289 |     public struct IndoorBikeDataFlags: OptionSet {
    |                   `- note: consider making struct 'IndoorBikeDataFlags' conform to the 'Sendable' protocol
290 |         public let rawValue: UInt16
291 |
    :
300 |         public static let ExpendedEnergyPresent         = IndoorBikeDataFlags(rawValue: 1 << 8)
301 |         public static let HeartRatePresent              = IndoorBikeDataFlags(rawValue: 1 << 9)
302 |         public static let MetabolicEquivalentPresent    = IndoorBikeDataFlags(rawValue: 1 << 10)
    |                           |- warning: static property 'MetabolicEquivalentPresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.IndoorBikeDataFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'MetabolicEquivalentPresent' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
303 |         public static let ElapsedTimePresent            = IndoorBikeDataFlags(rawValue: 1 << 11)
304 |         public static let RemainingTimePresent          = IndoorBikeDataFlags(rawValue: 1 << 12)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:303:27: warning: static property 'ElapsedTimePresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.IndoorBikeDataFlags' may have shared mutable state; this is an error in the Swift 6 language mode
287 |     }
288 |
289 |     public struct IndoorBikeDataFlags: OptionSet {
    |                   `- note: consider making struct 'IndoorBikeDataFlags' conform to the 'Sendable' protocol
290 |         public let rawValue: UInt16
291 |
    :
301 |         public static let HeartRatePresent              = IndoorBikeDataFlags(rawValue: 1 << 9)
302 |         public static let MetabolicEquivalentPresent    = IndoorBikeDataFlags(rawValue: 1 << 10)
303 |         public static let ElapsedTimePresent            = IndoorBikeDataFlags(rawValue: 1 << 11)
    |                           |- warning: static property 'ElapsedTimePresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.IndoorBikeDataFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'ElapsedTimePresent' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
304 |         public static let RemainingTimePresent          = IndoorBikeDataFlags(rawValue: 1 << 12)
305 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift:304:27: warning: static property 'RemainingTimePresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.IndoorBikeDataFlags' may have shared mutable state; this is an error in the Swift 6 language mode
287 |     }
288 |
289 |     public struct IndoorBikeDataFlags: OptionSet {
    |                   `- note: consider making struct 'IndoorBikeDataFlags' conform to the 'Sendable' protocol
290 |         public let rawValue: UInt16
291 |
    :
302 |         public static let MetabolicEquivalentPresent    = IndoorBikeDataFlags(rawValue: 1 << 10)
303 |         public static let ElapsedTimePresent            = IndoorBikeDataFlags(rawValue: 1 << 11)
304 |         public static let RemainingTimePresent          = IndoorBikeDataFlags(rawValue: 1 << 12)
    |                           |- warning: static property 'RemainingTimePresent' is not concurrency-safe because non-'Sendable' type 'FitnessMachineSerializer.IndoorBikeDataFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'RemainingTimePresent' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
305 |
306 |         public init(rawValue: UInt16) {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineService.swift:21:23: warning: static property 'characteristicTypes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 19 |     public static var uuid: String { return "1826" }
 20 |
 21 |     public static var characteristicTypes: Dictionary<String, Characteristic.Type> = [
    |                       |- warning: static property 'characteristicTypes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'characteristicTypes' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'characteristicTypes' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |         Feature.uuid:                       Feature.self,
 23 |         ControlPoint.uuid:                  ControlPoint.self,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateService.swift:21:23: warning: static property 'characteristicTypes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 19 |     public static var uuid: String { return "180D" }
 20 |
 21 |     public static var characteristicTypes: Dictionary<String, Characteristic.Type> = [
    |                       |- warning: static property 'characteristicTypes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'characteristicTypes' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'characteristicTypes' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |         Measurement.uuid:           Measurement.self,
 23 |         BodySensorLocation.uuid:    BodySensorLocation.self,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/SensorManager.swift:23:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'SensorManager' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |  An extensible Bluetooth LE Sensor Manager with concrete Service and Characteristic types, hierarchy, forwarding and observation to simplify BLE.
 15 |  */
 16 | public class SensorManager: NSObject {
    |              `- note: class 'SensorManager' does not conform to the 'Sendable' protocol
 17 |
 18 |     /**
    :
 21 |      No internal reference is made to this instance.
 22 |      */
 23 |     public static let instance = SensorManager()
    |                       |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'SensorManager' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'instance' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |
 25 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/SensorManager.swift:29:23: warning: static property 'logSensorMessage' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 27 |      or set your own closure at the project level to direct all logging to your logger of choice.
 28 |      */
 29 |     public static var logSensorMessage: ((_: String) -> ())? = { message in
    |                       |- warning: static property 'logSensorMessage' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'logSensorMessage' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'logSensorMessage' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |         print(message)
 31 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/SensorManager.swift:144:48: warning: 'CBCentralManagerState' was deprecated in tvOS 10.0: Use CBManagerState instead
142 |
143 |     /// Bluetooth State Change Signal
144 |     public let onBluetoothStateChange = Signal<CBCentralManagerState>()
    |                                                `- warning: 'CBCentralManagerState' was deprecated in tvOS 10.0: Use CBManagerState instead
145 |
146 |     /// Sensor Discovered Signal
SwiftCompile normal arm64 Compiling\ Sensor.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Sensor.swift (in target 'SwiftySensors' from project 'SwiftySensors')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Characteristic.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/DeviceInformationService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/RSSINormalizer.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Sensor.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/SensorManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Service.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Sensor.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Sensor.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Sensor.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Sensor.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/SwiftySensors_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftySensors -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Sensor.o -index-unit-output-path /SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Sensor.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Sensor.swift (in target 'SwiftySensors' from project 'SwiftySensors')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Characteristic.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/DeviceInformationService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/RSSINormalizer.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Sensor.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/SensorManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Service.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Sensor.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Sensor.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Sensor.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Sensor.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/SwiftySensors_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftySensors -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Sensor.o -index-unit-output-path /SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Sensor.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/SensorManager.swift:29:23: warning: static property 'logSensorMessage' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var logSensorMessage: ((_: String) -> ())? = { message in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/SensorManager.swift:29:23: note: convert 'logSensorMessage' to a 'let' constant to make 'Sendable' shared state immutable
    public static var logSensorMessage: ((_: String) -> ())? = { message in
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/SensorManager.swift:29:23: note: annotate 'logSensorMessage' with '@MainActor' if property should only be accessed from the main actor
    public static var logSensorMessage: ((_: String) -> ())? = { message in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/SensorManager.swift:29:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var logSensorMessage: ((_: String) -> ())? = { message in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Sensor.swift:278:53: error: value of optional type 'CBService?' must be unwrapped to refer to member 'uuid' of wrapped base type 'CBService'
        guard let service = services[characteristic.service.uuid.uuidString] else { return }
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Sensor.swift:278:53: note: chain the optional using '?' to access member 'uuid' only for non-'nil' base values
        guard let service = services[characteristic.service.uuid.uuidString] else { return }
                                                    ^
                                                           ?
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Sensor.swift:278:53: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
        guard let service = services[characteristic.service.uuid.uuidString] else { return }
                                                    ^
                                                           !
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Sensor.swift:289:53: error: value of optional type 'CBService?' must be unwrapped to refer to member 'uuid' of wrapped base type 'CBService'
        guard let service = services[characteristic.service.uuid.uuidString] else { return }
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Sensor.swift:289:53: note: chain the optional using '?' to access member 'uuid' only for non-'nil' base values
        guard let service = services[characteristic.service.uuid.uuidString] else { return }
                                                    ^
                                                           ?
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Sensor.swift:289:53: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
        guard let service = services[characteristic.service.uuid.uuidString] else { return }
                                                    ^
                                                           !
SwiftCompile normal arm64 Compiling\ Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Operators.swift (in target 'SwiftySensors' from project 'SwiftySensors')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Characteristic.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/DeviceInformationService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateService.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/RSSINormalizer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Sensor.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/SensorManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Service.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Operators.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Operators.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Operators.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Operators.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/SwiftySensors_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftySensors -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Operators.o -index-unit-output-path /SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Operators.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Operators.swift (in target 'SwiftySensors' from project 'SwiftySensors')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Characteristic.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/DeviceInformationService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateService.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/RSSINormalizer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Sensor.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/SensorManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Service.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Operators.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Operators.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Operators.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Operators.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/SwiftySensors_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftySensors -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Operators.o -index-unit-output-path /SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Operators.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ HeartRateService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateService.swift (in target 'SwiftySensors' from project 'SwiftySensors')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Characteristic.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/DeviceInformationService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateSerializer.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/RSSINormalizer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Sensor.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/SensorManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Service.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/HeartRateService.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/HeartRateService.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/HeartRateService.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/HeartRateService.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/SwiftySensors_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftySensors -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/HeartRateService.o -index-unit-output-path /SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/HeartRateService.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateService.swift (in target 'SwiftySensors' from project 'SwiftySensors')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Characteristic.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/DeviceInformationService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateSerializer.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/RSSINormalizer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Sensor.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/SensorManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Service.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/HeartRateService.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/HeartRateService.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/HeartRateService.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/HeartRateService.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/SwiftySensors_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftySensors -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/HeartRateService.o -index-unit-output-path /SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/HeartRateService.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateService.swift:21:23: warning: static property 'characteristicTypes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var characteristicTypes: Dictionary<String, Characteristic.Type> = [
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateService.swift:21:23: note: convert 'characteristicTypes' to a 'let' constant to make 'Sendable' shared state immutable
    public static var characteristicTypes: Dictionary<String, Characteristic.Type> = [
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateService.swift:21:23: note: annotate 'characteristicTypes' with '@MainActor' if property should only be accessed from the main actor
    public static var characteristicTypes: Dictionary<String, Characteristic.Type> = [
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateService.swift:21:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var characteristicTypes: Dictionary<String, Characteristic.Type> = [
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ HeartRateSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateSerializer.swift (in target 'SwiftySensors' from project 'SwiftySensors')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Characteristic.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/DeviceInformationService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineService.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/RSSINormalizer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Sensor.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/SensorManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Service.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/HeartRateSerializer.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/HeartRateSerializer.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/HeartRateSerializer.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/HeartRateSerializer.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/SwiftySensors_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftySensors -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/HeartRateSerializer.o -index-unit-output-path /SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/HeartRateSerializer.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateSerializer.swift (in target 'SwiftySensors' from project 'SwiftySensors')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Characteristic.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/DeviceInformationService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineService.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/RSSINormalizer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Sensor.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/SensorManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Service.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/HeartRateSerializer.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/HeartRateSerializer.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/HeartRateSerializer.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/HeartRateSerializer.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/SwiftySensors_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftySensors -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/HeartRateSerializer.o -index-unit-output-path /SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/HeartRateSerializer.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ CyclingSerializer.swift,\ CyclingSpeedCadenceSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceSerializer.swift (in target 'SwiftySensors' from project 'SwiftySensors')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Characteristic.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerService.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSerializer.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/DeviceInformationService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/RSSINormalizer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Sensor.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/SensorManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Service.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSerializer.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSerializer.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSerializer.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSerializer.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSpeedCadenceSerializer.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSpeedCadenceSerializer.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSpeedCadenceSerializer.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSpeedCadenceSerializer.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/SwiftySensors_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftySensors -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSerializer.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSpeedCadenceSerializer.o -index-unit-output-path /SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSerializer.o -index-unit-output-path /SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSpeedCadenceSerializer.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSerializer.swift (in target 'SwiftySensors' from project 'SwiftySensors')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Characteristic.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerService.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSerializer.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/DeviceInformationService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/RSSINormalizer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Sensor.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/SensorManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Service.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSerializer.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSerializer.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSerializer.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSerializer.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSpeedCadenceSerializer.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSpeedCadenceSerializer.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSpeedCadenceSerializer.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSpeedCadenceSerializer.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/SwiftySensors_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftySensors -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSerializer.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSpeedCadenceSerializer.o -index-unit-output-path /SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSerializer.o -index-unit-output-path /SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSpeedCadenceSerializer.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceSerializer.swift (in target 'SwiftySensors' from project 'SwiftySensors')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Characteristic.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerService.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSerializer.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/DeviceInformationService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/RSSINormalizer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Sensor.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/SensorManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Service.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSerializer.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSerializer.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSerializer.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSerializer.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSpeedCadenceSerializer.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSpeedCadenceSerializer.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSpeedCadenceSerializer.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSpeedCadenceSerializer.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/SwiftySensors_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftySensors -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSerializer.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSpeedCadenceSerializer.o -index-unit-output-path /SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSerializer.o -index-unit-output-path /SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CyclingSpeedCadenceSerializer.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ Characteristic.swift,\ CoreBluetooth.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Characteristic.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift (in target 'SwiftySensors' from project 'SwiftySensors')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Characteristic.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/DeviceInformationService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/RSSINormalizer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Sensor.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/SensorManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Service.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Characteristic.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Characteristic.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Characteristic.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Characteristic.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CoreBluetooth.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CoreBluetooth.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CoreBluetooth.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CoreBluetooth.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/SwiftySensors_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftySensors -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Characteristic.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CoreBluetooth.o -index-unit-output-path /SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Characteristic.o -index-unit-output-path /SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CoreBluetooth.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Characteristic.swift (in target 'SwiftySensors' from project 'SwiftySensors')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Characteristic.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/DeviceInformationService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/RSSINormalizer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Sensor.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/SensorManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Service.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Characteristic.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Characteristic.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Characteristic.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Characteristic.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CoreBluetooth.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CoreBluetooth.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CoreBluetooth.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CoreBluetooth.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/SwiftySensors_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftySensors -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Characteristic.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CoreBluetooth.o -index-unit-output-path /SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Characteristic.o -index-unit-output-path /SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CoreBluetooth.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift (in target 'SwiftySensors' from project 'SwiftySensors')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Characteristic.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/DeviceInformationService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/RSSINormalizer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Sensor.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/SensorManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Service.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Characteristic.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Characteristic.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Characteristic.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Characteristic.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CoreBluetooth.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CoreBluetooth.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CoreBluetooth.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CoreBluetooth.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/SwiftySensors_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftySensors -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Characteristic.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CoreBluetooth.o -index-unit-output-path /SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/Characteristic.o -index-unit-output-path /SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/CoreBluetooth.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift:20:9: error: value of optional type 'CBService?' must be unwrapped to refer to member 'peripheral' of wrapped base type 'CBService'
        service.peripheral.setNotifyValue(enabled, for: self)
        ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift:20:9: note: chain the optional using '?' to access member 'peripheral' only for non-'nil' base values
        service.peripheral.setNotifyValue(enabled, for: self)
        ^
               ?
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift:20:17: error: value of optional type 'CBPeripheral?' must be unwrapped to refer to member 'setNotifyValue' of wrapped base type 'CBPeripheral'
        service.peripheral.setNotifyValue(enabled, for: self)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift:20:17: note: chain the optional using '?' to access member 'setNotifyValue' only for non-'nil' base values
        service.peripheral.setNotifyValue(enabled, for: self)
                ^
                          ?
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift:20:17: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
        service.peripheral.setNotifyValue(enabled, for: self)
                ^
                          !
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift:25:9: error: value of optional type 'CBService?' must be unwrapped to refer to member 'peripheral' of wrapped base type 'CBService'
        service.peripheral.readValue(for: self)
        ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift:25:9: note: chain the optional using '?' to access member 'peripheral' only for non-'nil' base values
        service.peripheral.readValue(for: self)
        ^
               ?
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift:25:17: error: value of optional type 'CBPeripheral?' must be unwrapped to refer to member 'readValue' of wrapped base type 'CBPeripheral'
        service.peripheral.readValue(for: self)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift:25:17: note: chain the optional using '?' to access member 'readValue' only for non-'nil' base values
        service.peripheral.readValue(for: self)
                ^
                          ?
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift:25:17: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
        service.peripheral.readValue(for: self)
                ^
                          !
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift:37:12: error: value of optional type 'CBService?' must be unwrapped to refer to member 'peripheral' of wrapped base type 'CBService'
        if service.peripheral.state == .connected {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift:37:12: note: chain the optional using '?' to access member 'peripheral' only for non-'nil' base values
        if service.peripheral.state == .connected {
           ^
                  ?
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift:37:20: error: value of optional type 'CBPeripheral?' must be unwrapped to refer to member 'state' of wrapped base type 'CBPeripheral'
        if service.peripheral.state == .connected {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift:37:20: note: chain the optional using '?' to access member 'state' only for non-'nil' base values
        if service.peripheral.state == .connected {
                   ^
                             ?
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift:37:20: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
        if service.peripheral.state == .connected {
                   ^
                             !
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift:38:13: error: value of optional type 'CBService?' must be unwrapped to refer to member 'peripheral' of wrapped base type 'CBService'
            service.peripheral.writeValue(data, for: self, type: writeType)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift:38:13: note: chain the optional using '?' to access member 'peripheral' only for non-'nil' base values
            service.peripheral.writeValue(data, for: self, type: writeType)
            ^
                   ?
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift:38:21: error: value of optional type 'CBPeripheral?' must be unwrapped to refer to member 'writeValue' of wrapped base type 'CBPeripheral'
            service.peripheral.writeValue(data, for: self, type: writeType)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift:38:21: note: chain the optional using '?' to access member 'writeValue' only for non-'nil' base values
            service.peripheral.writeValue(data, for: self, type: writeType)
                    ^
                              ?
/Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift:38:21: note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
            service.peripheral.writeValue(data, for: self, type: writeType)
                    ^
                              !
SwiftCompile normal arm64 Compiling\ FitnessMachineSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift (in target 'SwiftySensors' from project 'SwiftySensors')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Characteristic.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/DeviceInformationService.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/RSSINormalizer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Sensor.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/SensorManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Service.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/FitnessMachineSerializer.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/FitnessMachineSerializer.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/FitnessMachineSerializer.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/FitnessMachineSerializer.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/SwiftySensors_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftySensors -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/FitnessMachineSerializer.o -index-unit-output-path /SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/FitnessMachineSerializer.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
Command SwiftCompile failed with a nonzero exit code
SwiftCompile normal arm64 Compiling\ FitnessMachineService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineService.swift (in target 'SwiftySensors' from project 'SwiftySensors')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Characteristic.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingPowerService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CyclingSpeedCadenceService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/DeviceInformationService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/HeartRateService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/RSSINormalizer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Sensor.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/SensorManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Service.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/FitnessMachineService.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/FitnessMachineService.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/FitnessMachineService.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/FitnessMachineService.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/SwiftySensors_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftySensors -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/FitnessMachineService.o -index-unit-output-path /SwiftySensors.build/Debug-appletvos/SwiftySensors.build/Objects-normal/arm64/FitnessMachineService.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
Command SwiftCompile failed with a nonzero exit code
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'SwiftySensors' from project 'SwiftySensors')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Signals' from project 'Signals')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Signals' from project 'Signals')
** BUILD FAILED **
The following build commands failed:
	SwiftCompile normal arm64 Compiling\ Sensor.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Sensor.swift (in target 'SwiftySensors' from project 'SwiftySensors')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Sensor.swift (in target 'SwiftySensors' from project 'SwiftySensors')
	SwiftCompile normal arm64 Compiling\ Characteristic.swift,\ CoreBluetooth.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/Characteristic.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift (in target 'SwiftySensors' from project 'SwiftySensors')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/CoreBluetooth.swift (in target 'SwiftySensors' from project 'SwiftySensors')
	SwiftCompile normal arm64 Compiling\ FitnessMachineSerializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineSerializer.swift (in target 'SwiftySensors' from project 'SwiftySensors')
	SwiftCompile normal arm64 Compiling\ FitnessMachineService.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftySensors/FitnessMachineService.swift (in target 'SwiftySensors' from project 'SwiftySensors')
(6 failures)
BUILD FAILURE 6.0 tvOS
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.