The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of SwiftBluetooth, reference 1.0.0 (c5a9f4), with Swift 6.0 for watchOS using Xcode 16.0 on 4 Nov 2024 18:32:10 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme SwiftBluetooth -destination generic/platform=watchOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:7:19: warning: capture of 'self' with non-sendable type 'Peripheral' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            guard state == .connected else {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift:4:14: note: class 'Peripheral' does not conform to the 'Sendable' protocol
public class Peripheral: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:8:17: warning: capture of 'completionHandler' with non-sendable type '(Result<Data, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                completionHandler(.failure(CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:8:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(.failure(CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:15:44: warning: capture of 'characteristic' with non-sendable type 'CBCharacteristic' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            task1 = responseMap.queue(key: characteristic.uuid) { result, done in
                                           ^
CoreBluetooth.CBCharacteristic:2:12: note: class 'CBCharacteristic' does not conform to the 'Sendable' protocol
open class CBCharacteristic : CBAttribute {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreBluetooth'
import CoreBluetooth
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:16:17: warning: capture of 'completionHandler' with non-sendable type '(Result<Data, any Error>) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                completionHandler(result)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:16:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(result)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:24:17: warning: capture of 'completionHandler' with non-sendable type '(Result<Data, any Error>) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                completionHandler(.failure(error ?? CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:24:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(.failure(error ?? CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:41:19: warning: capture of 'self' with non-sendable type 'Peripheral' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            guard state == .connected else {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift:4:14: note: class 'Peripheral' does not conform to the 'Sendable' protocol
public class Peripheral: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:42:17: warning: capture of 'completionHandler' with non-sendable type '(Result<Any?, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                completionHandler(.failure(CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:42:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(.failure(CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:49:46: warning: capture of 'descriptor' with non-sendable type 'CBDescriptor' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            task1 = descriptorMap.queue(key: descriptor.uuid) { result, done in
                                             ^
CoreBluetooth.CBDescriptor:2:12: note: class 'CBDescriptor' does not conform to the 'Sendable' protocol
open class CBDescriptor : CBAttribute {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:50:17: warning: capture of 'completionHandler' with non-sendable type '(Result<Any?, any Error>) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                completionHandler(result)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:50:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(result)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:58:17: warning: capture of 'completionHandler' with non-sendable type '(Result<Any?, any Error>) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                completionHandler(.failure(error ?? CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:58:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(.failure(error ?? CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:114:19: warning: capture of 'self' with non-sendable type 'Peripheral' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            guard state == .connected else {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift:4:14: note: class 'Peripheral' does not conform to the 'Sendable' protocol
public class Peripheral: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:115:17: warning: capture of 'completionHandler' with non-sendable type '((any Error)?) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                completionHandler(CBError(.peripheralDisconnected))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:115:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(CBError(.peripheralDisconnected))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:123:45: warning: capture of 'characteristic' with non-sendable type 'CBCharacteristic' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                task1 = writeMap.queue(key: characteristic.uuid) { error, done in
                                            ^
CoreBluetooth.CBCharacteristic:2:12: note: class 'CBCharacteristic' does not conform to the 'Sendable' protocol
open class CBCharacteristic : CBAttribute {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:124:21: warning: capture of 'completionHandler' with non-sendable type '((any Error)?) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                    completionHandler(error)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:124:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(error)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:132:21: warning: capture of 'completionHandler' with non-sendable type '((any Error)?) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                    completionHandler(error ?? CBError(.peripheralDisconnected))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:132:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(error ?? CBError(.peripheralDisconnected))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:148:13: warning: capture of 'self' with non-sendable type 'Peripheral' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            writeMap.queue(key: descriptor.uuid) { error, done in
            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift:4:14: note: class 'Peripheral' does not conform to the 'Sendable' protocol
public class Peripheral: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:148:33: warning: capture of 'descriptor' with non-sendable type 'CBDescriptor' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            writeMap.queue(key: descriptor.uuid) { error, done in
                                ^
CoreBluetooth.CBDescriptor:2:12: note: class 'CBDescriptor' does not conform to the 'Sendable' protocol
open class CBDescriptor : CBAttribute {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:149:17: warning: capture of 'completionHandler' with non-sendable type '((any Error)?) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                completionHandler(error)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:149:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(error)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:149:17: warning: capture of 'completionHandler' with non-sendable type '((any Error)?) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                completionHandler(error)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:149:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(error)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:159:19: warning: capture of 'self' with non-sendable type 'Peripheral' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            guard state == .connected else {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift:4:14: note: class 'Peripheral' does not conform to the 'Sendable' protocol
public class Peripheral: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:160:17: warning: capture of 'completionHandler' with non-sendable type '(Result<[CBService], any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                completionHandler(.failure(CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:160:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(.failure(CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:166:21: warning: capture of 'completionHandler' with non-sendable type '(Result<[CBService], any Error>) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                    completionHandler(.failure(error ?? CBError(.peripheralDisconnected)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:166:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(.failure(error ?? CBError(.peripheralDisconnected)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:188:19: warning: capture of 'self' with non-sendable type 'Peripheral' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            guard state == .connected else {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift:4:14: note: class 'Peripheral' does not conform to the 'Sendable' protocol
public class Peripheral: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:189:17: warning: capture of 'completionHandler' with non-sendable type '(Result<[CBCharacteristic], any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                completionHandler(.failure(CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:189:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(.failure(CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:201:42: warning: capture of 'service' with non-sendable type 'CBService' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                      forService.uuid == service.uuid else { return }
                                         ^
CoreBluetooth.CBService:2:12: note: class 'CBService' does not conform to the 'Sendable' protocol
open class CBService : CBAttribute {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:195:21: warning: capture of 'completionHandler' with non-sendable type '(Result<[CBCharacteristic], any Error>) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                    completionHandler(.failure(error ?? CBError(.peripheralDisconnected)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:195:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(.failure(error ?? CBError(.peripheralDisconnected)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:201:42: warning: capture of 'service' with non-sendable type 'CBService' in an isolated closure; this is an error in the Swift 6 language mode
                      forService.uuid == service.uuid else { return }
                                         ^
CoreBluetooth.CBService:2:12: note: class 'CBService' does not conform to the 'Sendable' protocol
open class CBService : CBAttribute {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:218:19: warning: capture of 'self' with non-sendable type 'Peripheral' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            guard state == .connected else {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift:4:14: note: class 'Peripheral' does not conform to the 'Sendable' protocol
public class Peripheral: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:219:17: warning: capture of 'completionHandler' with non-sendable type '(Result<[CBDescriptor], any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                completionHandler(.failure(CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:219:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(.failure(CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:231:49: warning: capture of 'characteristic' with non-sendable type 'CBCharacteristic' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                      forCharacteristic.uuid == characteristic.uuid else { return }
                                                ^
CoreBluetooth.CBCharacteristic:2:12: note: class 'CBCharacteristic' does not conform to the 'Sendable' protocol
open class CBCharacteristic : CBAttribute {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:225:21: warning: capture of 'completionHandler' with non-sendable type '(Result<[CBDescriptor], any Error>) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                    completionHandler(.failure(error ?? CBError(.peripheralDisconnected)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:225:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(.failure(error ?? CBError(.peripheralDisconnected)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:231:49: warning: capture of 'characteristic' with non-sendable type 'CBCharacteristic' in an isolated closure; this is an error in the Swift 6 language mode
                      forCharacteristic.uuid == characteristic.uuid else { return }
                                                ^
CoreBluetooth.CBCharacteristic:2:12: note: class 'CBCharacteristic' does not conform to the 'Sendable' protocol
open class CBCharacteristic : CBAttribute {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:258:32: warning: capture of 'self' with non-sendable type 'Peripheral' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            let shouldNotify = notifyingState.setExternal(value, forKey: characteristic.uuid)
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift:4:14: note: class 'Peripheral' does not conform to the 'Sendable' protocol
public class Peripheral: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:258:74: warning: capture of 'characteristic' with non-sendable type 'CBCharacteristic' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            let shouldNotify = notifyingState.setExternal(value, forKey: characteristic.uuid)
                                                                         ^
CoreBluetooth.CBCharacteristic:2:12: note: class 'CBCharacteristic' does not conform to the 'Sendable' protocol
open class CBCharacteristic : CBAttribute {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:261:17: warning: capture of 'completionHandler' with non-sendable type '(Result<Bool, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                completionHandler(.failure(CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:261:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(.failure(CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:272:21: warning: capture of 'completionHandler' with non-sendable type '(Result<Bool, any Error>) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                    completionHandler(.failure(error ?? CBError(.peripheralDisconnected)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:272:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(.failure(error ?? CBError(.peripheralDisconnected)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:278:49: warning: capture of 'characteristic' with non-sendable type 'CBCharacteristic' in an isolated closure; this is an error in the Swift 6 language mode
                      forCharacteristic.uuid == characteristic.uuid else { return }
                                                ^
CoreBluetooth.CBCharacteristic:2:12: note: class 'CBCharacteristic' does not conform to the 'Sendable' protocol
open class CBCharacteristic : CBAttribute {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:313:13: warning: capture of 'self' with non-sendable type 'Peripheral' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            eventSubscriptions.queue { event, done in
            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift:4:14: note: class 'Peripheral' does not conform to the 'Sendable' protocol
public class Peripheral: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:318:21: warning: capture of 'completionHandler' with non-sendable type '(Result<NSNumber, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                    completionHandler(.failure(error))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:318:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(.failure(error))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:318:21: warning: capture of 'completionHandler' with non-sendable type '(Result<NSNumber, any Error>) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                    completionHandler(.failure(error))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:318:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(.failure(error))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:332:13: warning: capture of 'self' with non-sendable type 'Peripheral' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            eventSubscriptions.queue { event, done in
            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift:4:14: note: class 'Peripheral' does not conform to the 'Sendable' protocol
public class Peripheral: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:337:21: warning: capture of 'completionHandler' with non-sendable type '(Result<CBL2CAPChannel, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                    completionHandler(.failure(error))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:337:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(.failure(error))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:337:21: warning: capture of 'completionHandler' with non-sendable type '(Result<CBL2CAPChannel, any Error>) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                    completionHandler(.failure(error))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:337:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(.failure(error))
                    ^
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscription.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscriptionQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscriptionQueueMap.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/CancellableTask.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CBCentralManagerFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+async.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerDelegateWrapper.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerError.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/AsyncStream+first.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/CBUUID+Sendable.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/DispatchQueue+safeSync.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Characteristic.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/NotifyingTracker.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+DiscoveryInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+async.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralDelegateWrapper.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralError.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralEvent.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/armv7k/Peripheral+callback.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/armv7k/Peripheral+callback.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/armv7k/Peripheral+callback.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/armv7k/Peripheral+callback.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/armv7k/Peripheral.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/armv7k/Peripheral.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/armv7k/Peripheral.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/armv7k/Peripheral.dia -target armv7k-apple-watchos7.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/armv7k/SwiftBluetooth_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftBluetooth -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/armv7k/Peripheral+callback.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/armv7k/Peripheral.o -index-unit-output-path /SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/armv7k/Peripheral+callback.o -index-unit-output-path /SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/armv7k/Peripheral.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64_32 Compiling Characteristic.swift, NotifyingTracker.swift (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
SwiftDriverJobDiscovery normal arm64_32 Compiling CancellableTask.swift, CBCentralManagerFactory.swift, CentralManager+async.swift (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
SwiftCompile normal arm64 Compiling\ CentralManager+callback.swift,\ CentralManager.swift,\ CentralManagerDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerDelegate.swift (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscription.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscriptionQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscriptionQueueMap.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/CancellableTask.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CBCentralManagerFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+async.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerDelegateWrapper.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerError.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/AsyncStream+first.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/CBUUID+Sendable.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/DispatchQueue+safeSync.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Characteristic.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/NotifyingTracker.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+DiscoveryInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+async.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralDelegateWrapper.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralError.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralEvent.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/supplementaryOutputs-9 -target arm64-apple-watchos7.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/SwiftBluetooth_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftBluetooth -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/CentralManager+callback.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/CentralManager.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/CentralManagerDelegate.o -index-unit-output-path /SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/CentralManager+callback.o -index-unit-output-path /SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/CentralManager.o -index-unit-output-path /SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/CentralManagerDelegate.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/SwiftBluetooth/CentralManager/CentralManager+callback.swift (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscription.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscriptionQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscriptionQueueMap.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/CancellableTask.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CBCentralManagerFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+async.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerDelegateWrapper.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerError.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/AsyncStream+first.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/CBUUID+Sendable.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/DispatchQueue+safeSync.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Characteristic.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/NotifyingTracker.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+DiscoveryInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+async.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralDelegateWrapper.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralError.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralEvent.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/supplementaryOutputs-9 -target arm64-apple-watchos7.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/SwiftBluetooth_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftBluetooth -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/CentralManager+callback.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/CentralManager.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/CentralManagerDelegate.o -index-unit-output-path /SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/CentralManager+callback.o -index-unit-output-path /SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/CentralManager.o -index-unit-output-path /SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/CentralManagerDelegate.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift:7:19: warning: capture of 'self' with non-sendable type 'CentralManager' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            guard state != .poweredOn else {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager.swift:4:14: note: class 'CentralManager' does not conform to the 'Sendable' protocol
public class CentralManager: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift:8:17: warning: capture of 'completionHandler' with non-sendable type '(Result<Void, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                completionHandler(.success(Void()))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift:8:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(.success(Void()))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift:27:21: warning: capture of 'completionHandler' with non-sendable type '(Result<Void, any Error>) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                    completionHandler(.success(Void()))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift:27:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(.success(Void()))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift:43:19: warning: capture of 'peripheral' with non-sendable type 'Peripheral' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            guard peripheral.state != .connected else {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift:4:14: note: class 'Peripheral' does not conform to the 'Sendable' protocol
public class Peripheral: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift:44:17: warning: capture of 'completionHandler' with non-sendable type '(Result<Peripheral, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                completionHandler(.success(peripheral))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift:44:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(.success(peripheral))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift:49:24: warning: capture of 'self' with non-sendable type 'CentralManager' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            let task = eventSubscriptions.queue { event, done in
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager.swift:4:14: note: class 'CentralManager' does not conform to the 'Sendable' protocol
public class CentralManager: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift:77:42: warning: capture of 'options' with non-sendable type '[String : Any]?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            connect(peripheral, options: options)
                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift:52:40: warning: capture of 'peripheral' with non-sendable type 'Peripheral' in an isolated closure; this is an error in the Swift 6 language mode
                    guard connected == peripheral else { return }
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift:4:14: note: class 'Peripheral' does not conform to the 'Sendable' protocol
public class Peripheral: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift:53:21: warning: capture of 'completionHandler' with non-sendable type '(Result<Peripheral, any Error>) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                    completionHandler(.success(peripheral))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift:53:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(.success(peripheral))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift:70:21: warning: capture of 'task' with non-sendable type 'AsyncSubscription<CentralManagerEvent>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                    task.cancel()
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscription.swift:3:17: note: consider making generic struct 'AsyncSubscription' conform to the 'Sendable' protocol
internal struct AsyncSubscription<Value>: Identifiable, Equatable, CancellableTask {
                ^
                                                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift:71:21: warning: capture of 'completionHandler' with non-sendable type '(Result<Peripheral, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                    completionHandler(.failure(CBError(.connectionTimeout)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift:71:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(.failure(CBError(.connectionTimeout)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift:102:25: warning: capture of 'subscription' with non-sendable type 'AsyncSubscription<CentralManagerEvent>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                        subscription.cancel()
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscription.swift:3:17: note: consider making generic struct 'AsyncSubscription' conform to the 'Sendable' protocol
internal struct AsyncSubscription<Value>: Identifiable, Equatable, CancellableTask {
                ^
                                                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift:117:19: warning: capture of 'self' with non-sendable type 'CentralManager' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            guard connectedPeripherals.contains(peripheral) else {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager.swift:4:14: note: class 'CentralManager' does not conform to the 'Sendable' protocol
public class CentralManager: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift:117:49: warning: capture of 'peripheral' with non-sendable type 'Peripheral' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            guard connectedPeripherals.contains(peripheral) else {
                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift:4:14: note: class 'Peripheral' does not conform to the 'Sendable' protocol
public class Peripheral: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift:118:17: warning: capture of 'completionHandler' with non-sendable type '(Result<Void, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                completionHandler(.success(Void()))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift:118:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(.success(Void()))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift:124:39: warning: capture of 'peripheral' with non-sendable type 'Peripheral' in an isolated closure; this is an error in the Swift 6 language mode
                      disconnected == peripheral else { return }
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift:4:14: note: class 'Peripheral' does not conform to the 'Sendable' protocol
public class Peripheral: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift:127:21: warning: capture of 'completionHandler' with non-sendable type '(Result<Void, any Error>) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                    completionHandler(.failure(error))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift:127:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(.failure(error))
                    ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager.swift (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscription.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscriptionQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscriptionQueueMap.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/CancellableTask.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CBCentralManagerFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+async.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerDelegateWrapper.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerError.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/AsyncStream+first.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/CBUUID+Sendable.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/DispatchQueue+safeSync.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Characteristic.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/NotifyingTracker.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+DiscoveryInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+async.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralDelegateWrapper.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralError.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralEvent.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/supplementaryOutputs-9 -target arm64-apple-watchos7.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/SwiftBluetooth_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftBluetooth -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/CentralManager+callback.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/CentralManager.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/CentralManagerDelegate.o -index-unit-output-path /SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/CentralManager+callback.o -index-unit-output-path /SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/CentralManager.o -index-unit-output-path /SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/CentralManagerDelegate.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager.swift:19:71: warning: 'authorization' was deprecated in watchOS 6.0
    public var authorization: CBManagerAuthorization { centralManager.authorization }
                                                                      ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerDelegate.swift (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscription.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscriptionQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscriptionQueueMap.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/CancellableTask.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CBCentralManagerFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+async.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerDelegateWrapper.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerError.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/AsyncStream+first.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/CBUUID+Sendable.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/DispatchQueue+safeSync.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Characteristic.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/NotifyingTracker.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+DiscoveryInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+async.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralDelegateWrapper.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralError.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralEvent.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/supplementaryOutputs-9 -target arm64-apple-watchos7.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/SwiftBluetooth_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftBluetooth -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/CentralManager+callback.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/CentralManager.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/CentralManagerDelegate.o -index-unit-output-path /SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/CentralManager+callback.o -index-unit-output-path /SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/CentralManager.o -index-unit-output-path /SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/CentralManagerDelegate.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal armv7k Compiling AsyncSubscription.swift, AsyncSubscriptionQueue.swift, AsyncSubscriptionQueueMap.swift (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
SwiftCompile normal arm64_32 Compiling\ PeripheralError.swift,\ PeripheralEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralError.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralEvent.swift (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscription.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscriptionQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscriptionQueueMap.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/CancellableTask.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CBCentralManagerFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+async.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerDelegateWrapper.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerError.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/AsyncStream+first.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/CBUUID+Sendable.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/DispatchQueue+safeSync.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Characteristic.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/NotifyingTracker.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+DiscoveryInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+async.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralDelegateWrapper.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralError.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralEvent.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralError.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralError.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralError.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralError.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralEvent.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralEvent.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralEvent.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralEvent.dia -target arm64_32-apple-watchos7.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/SwiftBluetooth_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftBluetooth -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralError.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralEvent.o -index-unit-output-path /SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralError.o -index-unit-output-path /SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralEvent.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralError.swift (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscription.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscriptionQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscriptionQueueMap.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/CancellableTask.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CBCentralManagerFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+async.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerDelegateWrapper.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerError.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/AsyncStream+first.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/CBUUID+Sendable.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/DispatchQueue+safeSync.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Characteristic.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/NotifyingTracker.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+DiscoveryInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+async.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralDelegateWrapper.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralError.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralEvent.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralError.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralError.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralError.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralError.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralEvent.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralEvent.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralEvent.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralEvent.dia -target arm64_32-apple-watchos7.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/SwiftBluetooth_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftBluetooth -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralError.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralEvent.o -index-unit-output-path /SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralError.o -index-unit-output-path /SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralEvent.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralEvent.swift (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscription.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscriptionQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscriptionQueueMap.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/CancellableTask.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CBCentralManagerFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+async.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerDelegateWrapper.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerError.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/AsyncStream+first.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/CBUUID+Sendable.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/DispatchQueue+safeSync.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Characteristic.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/NotifyingTracker.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+DiscoveryInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+async.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralDelegateWrapper.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralError.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralEvent.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralError.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralError.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralError.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralError.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralEvent.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralEvent.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralEvent.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralEvent.dia -target arm64_32-apple-watchos7.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/SwiftBluetooth_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftBluetooth -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralError.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralEvent.o -index-unit-output-path /SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralError.o -index-unit-output-path /SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/PeripheralEvent.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64_32 Compiling AsyncStream+first.swift, CBUUID+Sendable.swift, DispatchQueue+safeSync.swift (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
SwiftCompile normal arm64 Compiling\ Peripheral+callback.swift,\ Peripheral.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscription.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscriptionQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscriptionQueueMap.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/CancellableTask.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CBCentralManagerFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+async.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerDelegateWrapper.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerError.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/AsyncStream+first.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/CBUUID+Sendable.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/DispatchQueue+safeSync.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Characteristic.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/NotifyingTracker.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+DiscoveryInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+async.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralDelegateWrapper.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralError.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralEvent.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral+callback.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral+callback.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral+callback.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral+callback.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral.dia -target arm64-apple-watchos7.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/SwiftBluetooth_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftBluetooth -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral+callback.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral.o -index-unit-output-path /SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral+callback.o -index-unit-output-path /SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral.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/SwiftBluetooth/Peripheral/Peripheral+callback.swift (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscription.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscriptionQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscriptionQueueMap.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/CancellableTask.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CBCentralManagerFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+async.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerDelegateWrapper.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerError.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/AsyncStream+first.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/CBUUID+Sendable.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/DispatchQueue+safeSync.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Characteristic.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/NotifyingTracker.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+DiscoveryInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+async.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralDelegateWrapper.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralError.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralEvent.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral+callback.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral+callback.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral+callback.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral+callback.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral.dia -target arm64-apple-watchos7.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/SwiftBluetooth_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftBluetooth -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral+callback.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral.o -index-unit-output-path /SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral+callback.o -index-unit-output-path /SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:7:19: warning: capture of 'self' with non-sendable type 'Peripheral' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            guard state == .connected else {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift:4:14: note: class 'Peripheral' does not conform to the 'Sendable' protocol
public class Peripheral: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:8:17: warning: capture of 'completionHandler' with non-sendable type '(Result<Data, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                completionHandler(.failure(CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:8:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(.failure(CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:15:44: warning: capture of 'characteristic' with non-sendable type 'CBCharacteristic' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            task1 = responseMap.queue(key: characteristic.uuid) { result, done in
                                           ^
CoreBluetooth.CBCharacteristic:2:12: note: class 'CBCharacteristic' does not conform to the 'Sendable' protocol
open class CBCharacteristic : CBAttribute {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreBluetooth'
import CoreBluetooth
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:16:17: warning: capture of 'completionHandler' with non-sendable type '(Result<Data, any Error>) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                completionHandler(result)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:16:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(result)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:24:17: warning: capture of 'completionHandler' with non-sendable type '(Result<Data, any Error>) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                completionHandler(.failure(error ?? CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:24:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(.failure(error ?? CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:41:19: warning: capture of 'self' with non-sendable type 'Peripheral' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            guard state == .connected else {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift:4:14: note: class 'Peripheral' does not conform to the 'Sendable' protocol
public class Peripheral: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:42:17: warning: capture of 'completionHandler' with non-sendable type '(Result<Any?, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                completionHandler(.failure(CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:42:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(.failure(CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:49:46: warning: capture of 'descriptor' with non-sendable type 'CBDescriptor' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            task1 = descriptorMap.queue(key: descriptor.uuid) { result, done in
                                             ^
CoreBluetooth.CBDescriptor:2:12: note: class 'CBDescriptor' does not conform to the 'Sendable' protocol
open class CBDescriptor : CBAttribute {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:50:17: warning: capture of 'completionHandler' with non-sendable type '(Result<Any?, any Error>) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                completionHandler(result)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:50:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(result)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:58:17: warning: capture of 'completionHandler' with non-sendable type '(Result<Any?, any Error>) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                completionHandler(.failure(error ?? CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:58:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(.failure(error ?? CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:114:19: warning: capture of 'self' with non-sendable type 'Peripheral' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            guard state == .connected else {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift:4:14: note: class 'Peripheral' does not conform to the 'Sendable' protocol
public class Peripheral: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:115:17: warning: capture of 'completionHandler' with non-sendable type '((any Error)?) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                completionHandler(CBError(.peripheralDisconnected))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:115:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(CBError(.peripheralDisconnected))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:123:45: warning: capture of 'characteristic' with non-sendable type 'CBCharacteristic' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                task1 = writeMap.queue(key: characteristic.uuid) { error, done in
                                            ^
CoreBluetooth.CBCharacteristic:2:12: note: class 'CBCharacteristic' does not conform to the 'Sendable' protocol
open class CBCharacteristic : CBAttribute {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:124:21: warning: capture of 'completionHandler' with non-sendable type '((any Error)?) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                    completionHandler(error)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:124:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(error)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:132:21: warning: capture of 'completionHandler' with non-sendable type '((any Error)?) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                    completionHandler(error ?? CBError(.peripheralDisconnected))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:132:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(error ?? CBError(.peripheralDisconnected))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:148:13: warning: capture of 'self' with non-sendable type 'Peripheral' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            writeMap.queue(key: descriptor.uuid) { error, done in
            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift:4:14: note: class 'Peripheral' does not conform to the 'Sendable' protocol
public class Peripheral: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:148:33: warning: capture of 'descriptor' with non-sendable type 'CBDescriptor' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            writeMap.queue(key: descriptor.uuid) { error, done in
                                ^
CoreBluetooth.CBDescriptor:2:12: note: class 'CBDescriptor' does not conform to the 'Sendable' protocol
open class CBDescriptor : CBAttribute {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:149:17: warning: capture of 'completionHandler' with non-sendable type '((any Error)?) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                completionHandler(error)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:149:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(error)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:149:17: warning: capture of 'completionHandler' with non-sendable type '((any Error)?) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                completionHandler(error)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:149:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(error)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:159:19: warning: capture of 'self' with non-sendable type 'Peripheral' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            guard state == .connected else {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift:4:14: note: class 'Peripheral' does not conform to the 'Sendable' protocol
public class Peripheral: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:160:17: warning: capture of 'completionHandler' with non-sendable type '(Result<[CBService], any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                completionHandler(.failure(CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:160:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(.failure(CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:166:21: warning: capture of 'completionHandler' with non-sendable type '(Result<[CBService], any Error>) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                    completionHandler(.failure(error ?? CBError(.peripheralDisconnected)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:166:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(.failure(error ?? CBError(.peripheralDisconnected)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:188:19: warning: capture of 'self' with non-sendable type 'Peripheral' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            guard state == .connected else {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift:4:14: note: class 'Peripheral' does not conform to the 'Sendable' protocol
public class Peripheral: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:189:17: warning: capture of 'completionHandler' with non-sendable type '(Result<[CBCharacteristic], any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                completionHandler(.failure(CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:189:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(.failure(CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:201:42: warning: capture of 'service' with non-sendable type 'CBService' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                      forService.uuid == service.uuid else { return }
                                         ^
CoreBluetooth.CBService:2:12: note: class 'CBService' does not conform to the 'Sendable' protocol
open class CBService : CBAttribute {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:195:21: warning: capture of 'completionHandler' with non-sendable type '(Result<[CBCharacteristic], any Error>) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                    completionHandler(.failure(error ?? CBError(.peripheralDisconnected)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:195:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(.failure(error ?? CBError(.peripheralDisconnected)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:201:42: warning: capture of 'service' with non-sendable type 'CBService' in an isolated closure; this is an error in the Swift 6 language mode
                      forService.uuid == service.uuid else { return }
                                         ^
CoreBluetooth.CBService:2:12: note: class 'CBService' does not conform to the 'Sendable' protocol
open class CBService : CBAttribute {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:218:19: warning: capture of 'self' with non-sendable type 'Peripheral' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            guard state == .connected else {
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift:4:14: note: class 'Peripheral' does not conform to the 'Sendable' protocol
public class Peripheral: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:219:17: warning: capture of 'completionHandler' with non-sendable type '(Result<[CBDescriptor], any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                completionHandler(.failure(CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:219:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(.failure(CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:231:49: warning: capture of 'characteristic' with non-sendable type 'CBCharacteristic' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                      forCharacteristic.uuid == characteristic.uuid else { return }
                                                ^
CoreBluetooth.CBCharacteristic:2:12: note: class 'CBCharacteristic' does not conform to the 'Sendable' protocol
open class CBCharacteristic : CBAttribute {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:225:21: warning: capture of 'completionHandler' with non-sendable type '(Result<[CBDescriptor], any Error>) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                    completionHandler(.failure(error ?? CBError(.peripheralDisconnected)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:225:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(.failure(error ?? CBError(.peripheralDisconnected)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:231:49: warning: capture of 'characteristic' with non-sendable type 'CBCharacteristic' in an isolated closure; this is an error in the Swift 6 language mode
                      forCharacteristic.uuid == characteristic.uuid else { return }
                                                ^
CoreBluetooth.CBCharacteristic:2:12: note: class 'CBCharacteristic' does not conform to the 'Sendable' protocol
open class CBCharacteristic : CBAttribute {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:258:32: warning: capture of 'self' with non-sendable type 'Peripheral' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            let shouldNotify = notifyingState.setExternal(value, forKey: characteristic.uuid)
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift:4:14: note: class 'Peripheral' does not conform to the 'Sendable' protocol
public class Peripheral: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:258:74: warning: capture of 'characteristic' with non-sendable type 'CBCharacteristic' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            let shouldNotify = notifyingState.setExternal(value, forKey: characteristic.uuid)
                                                                         ^
CoreBluetooth.CBCharacteristic:2:12: note: class 'CBCharacteristic' does not conform to the 'Sendable' protocol
open class CBCharacteristic : CBAttribute {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:261:17: warning: capture of 'completionHandler' with non-sendable type '(Result<Bool, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                completionHandler(.failure(CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:261:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler(.failure(CBError(.peripheralDisconnected)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:272:21: warning: capture of 'completionHandler' with non-sendable type '(Result<Bool, any Error>) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                    completionHandler(.failure(error ?? CBError(.peripheralDisconnected)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:272:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(.failure(error ?? CBError(.peripheralDisconnected)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:278:49: warning: capture of 'characteristic' with non-sendable type 'CBCharacteristic' in an isolated closure; this is an error in the Swift 6 language mode
                      forCharacteristic.uuid == characteristic.uuid else { return }
                                                ^
CoreBluetooth.CBCharacteristic:2:12: note: class 'CBCharacteristic' does not conform to the 'Sendable' protocol
open class CBCharacteristic : CBAttribute {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:313:13: warning: capture of 'self' with non-sendable type 'Peripheral' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            eventSubscriptions.queue { event, done in
            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift:4:14: note: class 'Peripheral' does not conform to the 'Sendable' protocol
public class Peripheral: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:318:21: warning: capture of 'completionHandler' with non-sendable type '(Result<NSNumber, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                    completionHandler(.failure(error))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:318:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(.failure(error))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:318:21: warning: capture of 'completionHandler' with non-sendable type '(Result<NSNumber, any Error>) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                    completionHandler(.failure(error))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:318:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(.failure(error))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:332:13: warning: capture of 'self' with non-sendable type 'Peripheral' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            eventSubscriptions.queue { event, done in
            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift:4:14: note: class 'Peripheral' does not conform to the 'Sendable' protocol
public class Peripheral: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:337:21: warning: capture of 'completionHandler' with non-sendable type '(Result<CBL2CAPChannel, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                    completionHandler(.failure(error))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:337:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(.failure(error))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:337:21: warning: capture of 'completionHandler' with non-sendable type '(Result<CBL2CAPChannel, any Error>) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
                    completionHandler(.failure(error))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift:337:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(.failure(error))
                    ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscription.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscriptionQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/AsyncSubscriptionQueueMap.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Async/CancellableTask.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CBCentralManagerFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+async.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager+callback.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerDelegateWrapper.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerError.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/CentralManager/CentralManagerEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/AsyncStream+first.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/CBUUID+Sendable.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Extensions/DispatchQueue+safeSync.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Characteristic.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/NotifyingTracker.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+DiscoveryInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+async.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral+callback.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/Peripheral.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralDelegateWrapper.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralError.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftBluetooth/Peripheral/PeripheralEvent.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral+callback.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral+callback.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral+callback.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral+callback.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral.dia -target arm64-apple-watchos7.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/SwiftBluetooth_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftBluetooth -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral+callback.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral.o -index-unit-output-path /SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral+callback.o -index-unit-output-path /SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Peripheral.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64_32 Compiling CentralManager+callback.swift, CentralManager.swift, CentralManagerDelegate.swift (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
SwiftDriverJobDiscovery normal arm64 Compiling PeripheralDelegate.swift, PeripheralDelegateWrapper.swift (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
SwiftDriverJobDiscovery normal arm64_32 Compiling PeripheralDelegate.swift, PeripheralDelegateWrapper.swift (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
SwiftDriverJobDiscovery normal arm64_32 Compiling PeripheralError.swift, PeripheralEvent.swift (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
SwiftDriverJobDiscovery normal armv7k Compiling Peripheral+DiscoveryInfo.swift, Peripheral+async.swift (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
SwiftDriverJobDiscovery normal armv7k Compiling CentralManager+callback.swift, CentralManager.swift, CentralManagerDelegate.swift (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
SwiftDriverJobDiscovery normal arm64_32 Compiling Peripheral+callback.swift, Peripheral.swift (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
SwiftDriver\ Compilation SwiftBluetooth normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftBluetooth -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/SwiftBluetooth.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -target arm64_32-apple-watchos7.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/SwiftBluetooth-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/SwiftBluetooth.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/SwiftBluetooth_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/SwiftBluetooth-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/Binary/SwiftBluetooth.o normal arm64_32 (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos7.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/SwiftBluetooth.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/SwiftBluetooth_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/SwiftBluetooth.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/SwiftBluetooth_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/Binary/SwiftBluetooth.o
SwiftDriverJobDiscovery normal arm64 Compiling CentralManager+callback.swift, CentralManager.swift, CentralManagerDelegate.swift (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
SwiftDriverJobDiscovery normal armv7k Compiling Peripheral+callback.swift, Peripheral.swift (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
SwiftDriver\ Compilation SwiftBluetooth normal armv7k com.apple.xcode.tools.swift.compiler (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftBluetooth -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/armv7k/SwiftBluetooth.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -target armv7k-apple-watchos7.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/armv7k/SwiftBluetooth-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/armv7k/SwiftBluetooth.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/armv7k/SwiftBluetooth_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/armv7k/SwiftBluetooth-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/armv7k/Binary/SwiftBluetooth.o normal armv7k (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos7.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/armv7k/SwiftBluetooth.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/armv7k/SwiftBluetooth_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/armv7k/SwiftBluetooth.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/armv7k/SwiftBluetooth_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/armv7k/Binary/SwiftBluetooth.o
SwiftDriverJobDiscovery normal arm64 Compiling Peripheral+callback.swift, Peripheral.swift (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
SwiftDriver\ Compilation SwiftBluetooth normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftBluetooth -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/SwiftBluetooth.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -target arm64-apple-watchos7.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/SwiftBluetooth-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/SwiftBluetooth.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/SwiftBluetooth_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/SwiftBluetooth-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Binary/SwiftBluetooth.o normal arm64 (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos7.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/SwiftBluetooth.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/SwiftBluetooth_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/SwiftBluetooth.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/SwiftBluetooth_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Binary/SwiftBluetooth.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SwiftBluetooth.o normal arm64\ armv7k\ arm64_32 (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64/Binary/SwiftBluetooth.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/armv7k/Binary/SwiftBluetooth.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftBluetooth.build/Debug-watchos/SwiftBluetooth.build/Objects-normal/arm64_32/Binary/SwiftBluetooth.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SwiftBluetooth.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SwiftBluetooth.o (in target 'SwiftBluetooth' from project 'SwiftBluetooth')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SwiftBluetooth.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
    {
      "identity" : "ios-corebluetooth-mock",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.17.0",
            "upper_bound" : "0.18.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/NordicSemiconductor/IOS-CoreBluetooth-Mock.git"
    }
  ],
  "manifest_display_name" : "SwiftBluetooth",
  "name" : "SwiftBluetooth",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "tvos",
      "version" : "15.0"
    },
    {
      "name" : "watchos",
      "version" : "7.0"
    }
  ],
  "products" : [
    {
      "name" : "SwiftBluetooth",
      "targets" : [
        "SwiftBluetooth"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftBluetoothTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftBluetoothTests",
      "path" : "Tests/SwiftBluetoothTests",
      "sources" : [
        "CentralPeripheralTestCase.swift",
        "DisconnectedPeripheralTests.swift",
        "Extensions/XCTestCase+withTimeout.swift",
        "LostConnectionPeripheralTests.swift",
        "MockPeripheral.swift",
        "SwiftBluetoothTests.swift"
      ],
      "target_dependencies" : [
        "SwiftBluetoothMock"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftBluetoothMock",
      "module_type" : "SwiftTarget",
      "name" : "SwiftBluetoothMock",
      "path" : "Sources/SwiftBluetoothMock",
      "product_dependencies" : [
        "CoreBluetoothMock"
      ],
      "sources" : [
        "CoreBluetoothMock.swift",
        "SwiftBluetooth/Async/AsyncSubscription.swift",
        "SwiftBluetooth/Async/AsyncSubscriptionQueue.swift",
        "SwiftBluetooth/Async/AsyncSubscriptionQueueMap.swift",
        "SwiftBluetooth/Async/CancellableTask.swift",
        "SwiftBluetooth/CentralManager/CentralManager+async.swift",
        "SwiftBluetooth/CentralManager/CentralManager+callback.swift",
        "SwiftBluetooth/CentralManager/CentralManager.swift",
        "SwiftBluetooth/CentralManager/CentralManagerDelegate.swift",
        "SwiftBluetooth/CentralManager/CentralManagerDelegateWrapper.swift",
        "SwiftBluetooth/CentralManager/CentralManagerError.swift",
        "SwiftBluetooth/CentralManager/CentralManagerEvent.swift",
        "SwiftBluetooth/Extensions/AsyncStream+first.swift",
        "SwiftBluetooth/Extensions/CBUUID+Sendable.swift",
        "SwiftBluetooth/Extensions/DispatchQueue+safeSync.swift",
        "SwiftBluetooth/Peripheral/Characteristic.swift",
        "SwiftBluetooth/Peripheral/NotifyingTracker.swift",
        "SwiftBluetooth/Peripheral/Peripheral+DiscoveryInfo.swift",
        "SwiftBluetooth/Peripheral/Peripheral+async.swift",
        "SwiftBluetooth/Peripheral/Peripheral+callback.swift",
        "SwiftBluetooth/Peripheral/Peripheral.swift",
        "SwiftBluetooth/Peripheral/PeripheralDelegate.swift",
        "SwiftBluetooth/Peripheral/PeripheralDelegateWrapper.swift",
        "SwiftBluetooth/Peripheral/PeripheralError.swift",
        "SwiftBluetooth/Peripheral/PeripheralEvent.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SwiftBluetooth",
      "module_type" : "SwiftTarget",
      "name" : "SwiftBluetooth",
      "path" : "Sources/SwiftBluetooth",
      "product_memberships" : [
        "SwiftBluetooth"
      ],
      "sources" : [
        "Async/AsyncSubscription.swift",
        "Async/AsyncSubscriptionQueue.swift",
        "Async/AsyncSubscriptionQueueMap.swift",
        "Async/CancellableTask.swift",
        "CentralManager/CBCentralManagerFactory.swift",
        "CentralManager/CentralManager+async.swift",
        "CentralManager/CentralManager+callback.swift",
        "CentralManager/CentralManager.swift",
        "CentralManager/CentralManagerDelegate.swift",
        "CentralManager/CentralManagerDelegateWrapper.swift",
        "CentralManager/CentralManagerError.swift",
        "CentralManager/CentralManagerEvent.swift",
        "Extensions/AsyncStream+first.swift",
        "Extensions/CBUUID+Sendable.swift",
        "Extensions/DispatchQueue+safeSync.swift",
        "Peripheral/Characteristic.swift",
        "Peripheral/NotifyingTracker.swift",
        "Peripheral/Peripheral+DiscoveryInfo.swift",
        "Peripheral/Peripheral+async.swift",
        "Peripheral/Peripheral+callback.swift",
        "Peripheral/Peripheral.swift",
        "Peripheral/PeripheralDelegate.swift",
        "Peripheral/PeripheralDelegateWrapper.swift",
        "Peripheral/PeripheralError.swift",
        "Peripheral/PeripheralEvent.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.