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 CombineEx, reference master (8c55fe), with Swift 6.1 for watchOS using Xcode 16.3 on 24 Apr 2025 09:44:35 UTC.

Swift 6 data race errors: 3

Build Command

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

Build Log

                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:319:51: warning: mutation of captured var 'error' in concurrently-executing code
                proQueue.async(flags: .barrier) { error = .b(e) }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:330:51: warning: capture of 'resultC' with non-sendable type 'C?' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultC = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:286:23: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func all<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C, D), EitherFor<FA, FB, FC, FD>> where FA: Error, FB: Error, FC: Error, FD: Error {
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:330:61: warning: capture of 'v' with non-sendable type 'C' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultC = v }
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:286:23: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func all<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C, D), EitherFor<FA, FB, FC, FD>> where FA: Error, FB: Error, FC: Error, FD: Error {
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:330:51: warning: mutation of captured var 'resultC' in concurrently-executing code
                proQueue.async(flags: .barrier) { resultC = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:333:51: warning: mutation of captured var 'error' in concurrently-executing code
                proQueue.async(flags: .barrier) { error = .c(e) }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:344:51: warning: capture of 'resultD' with non-sendable type 'D?' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultD = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:286:26: note: consider making generic parameter 'D' conform to the 'Sendable' protocol
public func all<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C, D), EitherFor<FA, FB, FC, FD>> where FA: Error, FB: Error, FC: Error, FD: Error {
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:344:61: warning: capture of 'v' with non-sendable type 'D' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultD = v }
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:286:26: note: consider making generic parameter 'D' conform to the 'Sendable' protocol
public func all<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C, D), EitherFor<FA, FB, FC, FD>> where FA: Error, FB: Error, FC: Error, FD: Error {
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:344:51: warning: mutation of captured var 'resultD' in concurrently-executing code
                proQueue.async(flags: .barrier) { resultD = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:347:51: warning: mutation of captured var 'error' in concurrently-executing code
                proQueue.async(flags: .barrier) { error = .d(e) }
                                                  ^
SwiftCompile normal arm64 Compiling\ TokenManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift:14:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'TokenManager' may have shared mutable state; this is an error in the Swift 6 language mode
    static let shared = TokenManager()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift:13:13: note: class 'TokenManager' does not conform to the 'Sendable' protocol
final class TokenManager {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift:14:16: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    static let shared = TokenManager()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift:14:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let shared = TokenManager()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift:19:47: warning: capture of 'self' with non-sendable type 'TokenManager' in a '@Sendable' closure
        set { _queue.async(flags: .barrier) { self._tokenMap = newValue } }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift:13:13: note: class 'TokenManager' does not conform to the 'Sendable' protocol
final class TokenManager {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift:19:64: warning: capture of 'newValue' with non-sendable type '[UUID : AnyCancelableBox]' in a '@Sendable' closure
        set { _queue.async(flags: .barrier) { self._tokenMap = newValue } }
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift:4:8: note: consider making struct 'AnyCancelableBox' conform to the 'Sendable' protocol
struct AnyCancelableBox {
       ^
                        : Sendable
SwiftCompile normal arm64 Compiling\ Combine+Race.swift /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:16:25: warning: capture of 'promises' with non-sendable type '[AnyPublisher<Value, Failure>]' in a '@Sendable' closure
            for item in promises {
                        ^
Combine.AnyPublisher:2:23: note: generic struct 'AnyPublisher' does not conform to the 'Sendable' protocol
@frozen public struct AnyPublisher<Output, Failure> : CustomStringConvertible, CustomPlaygroundDisplayConvertible where Failure : Error {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Combine'
import Combine
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:26:25: warning: capture of 'completion' with non-sendable type 'PassthroughSubject<Value, Failure>' in a '@Sendable' closure
                        completion.send(completion: .failure(e))
                        ^
Combine.PassthroughSubject:2:20: note: generic class 'PassthroughSubject' does not conform to the 'Sendable' protocol
final public class PassthroughSubject<Output, Failure> : Subject where Failure : Error {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:26:25: warning: capture of 'completion' with non-sendable type 'PassthroughSubject<Value, Failure>' in an isolated closure; this is an error in the Swift 6 language mode
                        completion.send(completion: .failure(e))
                        ^
Combine.PassthroughSubject:2:20: note: generic class 'PassthroughSubject' does not conform to the 'Sendable' protocol
final public class PassthroughSubject<Output, Failure> : Subject where Failure : Error {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:25:59: warning: capture of 'firstValue' with non-sendable type 'Result<Value, Failure>?' in a '@Sendable' closure
                        proQueue.async(flags: .barrier) { firstValue = .failure(e) }
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:9:18: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
public func race<Value, Failure>(_ promises: [AnyPublisher<Value, Failure>], on queue: DispatchQueue = .main) -> AnyPublisher<Value, Failure> where Failure: Error {
                 ^
                      : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:25:59: warning: mutation of captured var 'firstValue' in concurrently-executing code
                        proQueue.async(flags: .barrier) { firstValue = .failure(e) }
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:35:21: warning: capture of 'completion' with non-sendable type 'PassthroughSubject<Value, Failure>' in an isolated closure; this is an error in the Swift 6 language mode
                    completion.send(value)
                    ^
Combine.PassthroughSubject:2:20: note: generic class 'PassthroughSubject' does not conform to the 'Sendable' protocol
final public class PassthroughSubject<Output, Failure> : Subject where Failure : Error {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:33:55: warning: capture of 'firstValue' with non-sendable type 'Result<Value, Failure>?' in a '@Sendable' closure
                    proQueue.async(flags: .barrier) { firstValue = .success(value) }
                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:9:18: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
public func race<Value, Failure>(_ promises: [AnyPublisher<Value, Failure>], on queue: DispatchQueue = .main) -> AnyPublisher<Value, Failure> where Failure: Error {
                 ^
                      : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:33:77: warning: capture of 'value' with non-sendable type 'Value' in a '@Sendable' closure
                    proQueue.async(flags: .barrier) { firstValue = .success(value) }
                                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:9:18: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
public func race<Value, Failure>(_ promises: [AnyPublisher<Value, Failure>], on queue: DispatchQueue = .main) -> AnyPublisher<Value, Failure> where Failure: Error {
                 ^
                      : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:33:55: warning: mutation of captured var 'firstValue' in concurrently-executing code
                    proQueue.async(flags: .barrier) { firstValue = .success(value) }
                                                      ^
SwiftCompile normal armv7k Compiling\ CombineEx+Subscriber.swift /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/CombineEx+Subscriber.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/CombineEx+Subscriber.swift (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ Combine+Any.swift /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:17:51: warning: capture of 'results' with non-sendable type '[Result<Value, Failure>]' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { results.append(result) }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:8:17: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
public func any<Value, Failure>(_ promises: [AnyPublisher<Value, Failure>], on queue: DispatchQueue = .main) -> AnyPublisher<[Result<Value, Failure>], Never> where Failure: Error {
                ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:17:66: warning: capture of 'result' with non-sendable type 'Result<Value, Failure>' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { results.append(result) }
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:8:17: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
public func any<Value, Failure>(_ promises: [AnyPublisher<Value, Failure>], on queue: DispatchQueue = .main) -> AnyPublisher<[Result<Value, Failure>], Never> where Failure: Error {
                ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:17:51: warning: mutation of captured var 'results' in concurrently-executing code
                proQueue.async(flags: .barrier) { results.append(result) }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:40:47: warning: capture of 'resultA' with non-sendable type 'Result<A, FA>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultA = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:31:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func any<A, B, FA, FB>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>), Never> where FA: Error, FB: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:40:57: warning: capture of 'result' with non-sendable type 'Result<A, FA>' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultA = result }
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:31:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func any<A, B, FA, FB>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>), Never> where FA: Error, FB: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:40:47: warning: mutation of captured var 'resultA' in concurrently-executing code
            proQueue.async(flags: .barrier) { resultA = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:43:47: warning: capture of 'resultB' with non-sendable type 'Result<B, FB>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultB = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:31:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func any<A, B, FA, FB>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>), Never> where FA: Error, FB: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:43:57: warning: capture of 'result' with non-sendable type 'Result<B, FB>' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultB = result }
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:31:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func any<A, B, FA, FB>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>), Never> where FA: Error, FB: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:43:47: warning: mutation of captured var 'resultB' in concurrently-executing code
            proQueue.async(flags: .barrier) { resultB = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:67:47: warning: capture of 'resultA' with non-sendable type 'Result<A, FA>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultA = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:58:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func any<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>), Never> where FA: Error, FB: Error, FC: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:67:57: warning: capture of 'result' with non-sendable type 'Result<A, FA>' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultA = result }
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:58:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func any<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>), Never> where FA: Error, FB: Error, FC: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:67:47: warning: mutation of captured var 'resultA' in concurrently-executing code
            proQueue.async(flags: .barrier) { resultA = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:70:47: warning: capture of 'resultB' with non-sendable type 'Result<B, FB>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultB = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:58:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func any<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>), Never> where FA: Error, FB: Error, FC: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:70:57: warning: capture of 'result' with non-sendable type 'Result<B, FB>' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultB = result }
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:58:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func any<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>), Never> where FA: Error, FB: Error, FC: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:70:47: warning: mutation of captured var 'resultB' in concurrently-executing code
            proQueue.async(flags: .barrier) { resultB = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:73:47: warning: capture of 'resultC' with non-sendable type 'Result<C, FC>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultC = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:58:23: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func any<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>), Never> where FA: Error, FB: Error, FC: Error {
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:73:57: warning: capture of 'result' with non-sendable type 'Result<C, FC>' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultC = result }
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:58:23: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func any<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>), Never> where FA: Error, FB: Error, FC: Error {
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:73:47: warning: mutation of captured var 'resultC' in concurrently-executing code
            proQueue.async(flags: .barrier) { resultC = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:100:47: warning: capture of 'resultA' with non-sendable type 'Result<A, FA>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultA = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:90:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func any<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>, Result<D, FD>), Never> where FA: Error, FB: Error, FC: Error, FD: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:100:57: warning: capture of 'result' with non-sendable type 'Result<A, FA>' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultA = result }
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:90:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func any<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>, Result<D, FD>), Never> where FA: Error, FB: Error, FC: Error, FD: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:100:47: warning: mutation of captured var 'resultA' in concurrently-executing code
            proQueue.async(flags: .barrier) { resultA = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:103:47: warning: capture of 'resultB' with non-sendable type 'Result<B, FB>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultB = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:90:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func any<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>, Result<D, FD>), Never> where FA: Error, FB: Error, FC: Error, FD: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:103:57: warning: capture of 'result' with non-sendable type 'Result<B, FB>' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultB = result }
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:90:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func any<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>, Result<D, FD>), Never> where FA: Error, FB: Error, FC: Error, FD: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:103:47: warning: mutation of captured var 'resultB' in concurrently-executing code
            proQueue.async(flags: .barrier) { resultB = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:106:47: warning: capture of 'resultC' with non-sendable type 'Result<C, FC>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultC = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:90:23: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func any<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>, Result<D, FD>), Never> where FA: Error, FB: Error, FC: Error, FD: Error {
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:106:57: warning: capture of 'result' with non-sendable type 'Result<C, FC>' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultC = result }
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:90:23: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func any<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>, Result<D, FD>), Never> where FA: Error, FB: Error, FC: Error, FD: Error {
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:106:47: warning: mutation of captured var 'resultC' in concurrently-executing code
            proQueue.async(flags: .barrier) { resultC = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:109:47: warning: capture of 'resultD' with non-sendable type 'Result<D, FD>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultD = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:90:26: note: consider making generic parameter 'D' conform to the 'Sendable' protocol
public func any<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>, Result<D, FD>), Never> where FA: Error, FB: Error, FC: Error, FD: Error {
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:109:57: warning: capture of 'result' with non-sendable type 'Result<D, FD>' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultD = result }
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:90:26: note: consider making generic parameter 'D' conform to the 'Sendable' protocol
public func any<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>, Result<D, FD>), Never> where FA: Error, FB: Error, FC: Error, FD: Error {
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:109:47: warning: mutation of captured var 'resultD' in concurrently-executing code
            proQueue.async(flags: .barrier) { resultD = result }
                                              ^
SwiftCompile normal arm64 Compiling\ Combine+Await.swift /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Await.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Await.swift (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Await.swift:12:69: warning: capture of 'result' with non-sendable type 'Result<Self.Output, Self.Failure>?' in a '@Sendable' closure
            case let .failure(e): proQueue.async(flags: .barrier) { result = .failure(e) }
                                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Await.swift:12:69: warning: mutation of captured var 'result' in concurrently-executing code
            case let .failure(e): proQueue.async(flags: .barrier) { result = .failure(e) }
                                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Await.swift:17:47: warning: capture of 'result' with non-sendable type 'Result<Self.Output, Self.Failure>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { result = .success(value) }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Await.swift:17:65: warning: capture of 'value' with non-sendable type 'Self.Output' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { result = .success(value) }
                                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Await.swift:17:47: warning: mutation of captured var 'result' in concurrently-executing code
            proQueue.async(flags: .barrier) { result = .success(value) }
                                              ^
SwiftCompile normal armv7k Compiling\ CombineEx+Publisher.swift /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/CombineEx+Publisher.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/CombineEx+Publisher.swift (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ Combine+All.swift /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:63:59: warning: capture of 'values' with non-sendable type '[Int : Value]' in a '@Sendable' closure
                        proQueue.async(flags: .barrier) { values[index] = v }
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:8:17: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
public func all<Value, Failure>(_ promises: [() -> AnyPublisher<Value, Failure>], on queue: DispatchQueue = .main, maxConcurrent: Int = 10) -> AnyPublisher<[Value], Failure> where Failure: Error {
                ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:63:75: warning: capture of 'v' with non-sendable type 'Value' in a '@Sendable' closure
                        proQueue.async(flags: .barrier) { values[index] = v }
                                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:8:17: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
public func all<Value, Failure>(_ promises: [() -> AnyPublisher<Value, Failure>], on queue: DispatchQueue = .main, maxConcurrent: Int = 10) -> AnyPublisher<[Value], Failure> where Failure: Error {
                ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:63:59: warning: mutation of captured var 'values' in concurrently-executing code
                        proQueue.async(flags: .barrier) { values[index] = v }
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:66:59: warning: mutation of captured var 'error' in concurrently-executing code
                        proQueue.async(flags: .barrier) { error = e }
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:94:29: warning: capture of 'values' with non-sendable type '[Int : Value]' in a '@Sendable' closure
                            values[index] = v
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:8:17: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
public func all<Value, Failure>(_ promises: [() -> AnyPublisher<Value, Failure>], on queue: DispatchQueue = .main, maxConcurrent: Int = 10) -> AnyPublisher<[Value], Failure> where Failure: Error {
                ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:94:45: warning: capture of 'v' with non-sendable type 'Value' in a '@Sendable' closure
                            values[index] = v
                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:8:17: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
public func all<Value, Failure>(_ promises: [() -> AnyPublisher<Value, Failure>], on queue: DispatchQueue = .main, maxConcurrent: Int = 10) -> AnyPublisher<[Value], Failure> where Failure: Error {
                ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:94:29: warning: mutation of captured var 'values' in concurrently-executing code
                            values[index] = v
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:98:59: warning: mutation of captured var 'error' in concurrently-executing code
                        proQueue.async(flags: .barrier) { error = e }
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:144:25: warning: capture of 'values' with non-sendable type '[Int : Value]' in a '@Sendable' closure
                        values[index] = v
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:116:17: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
public func all<Value, Failure>(_ promises: [AnyPublisher<Value, Failure>], on queue: DispatchQueue = .main) -> AnyPublisher<[Value], Failure> where Failure: Error {
                ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:144:41: warning: capture of 'v' with non-sendable type 'Value' in a '@Sendable' closure
                        values[index] = v
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:116:17: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
public func all<Value, Failure>(_ promises: [AnyPublisher<Value, Failure>], on queue: DispatchQueue = .main) -> AnyPublisher<[Value], Failure> where Failure: Error {
                ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:144:25: warning: mutation of captured var 'values' in concurrently-executing code
                        values[index] = v
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:148:55: warning: mutation of captured var 'error' in concurrently-executing code
                    proQueue.async(flags: .barrier) { error = e }
                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:179:51: warning: capture of 'resultA' with non-sendable type 'A?' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultA = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:166:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func all<A, B, FA, FB>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B), EitherBio<FA, FB>> where FA: Error, FB: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:179:61: warning: capture of 'v' with non-sendable type 'A' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultA = v }
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:166:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func all<A, B, FA, FB>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B), EitherBio<FA, FB>> where FA: Error, FB: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:179:51: warning: mutation of captured var 'resultA' in concurrently-executing code
                proQueue.async(flags: .barrier) { resultA = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:182:51: warning: mutation of captured var 'error' in concurrently-executing code
                proQueue.async(flags: .barrier) { error = .a(e) }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:193:51: warning: capture of 'resultB' with non-sendable type 'B?' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultB = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:166:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func all<A, B, FA, FB>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B), EitherBio<FA, FB>> where FA: Error, FB: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:193:61: warning: capture of 'v' with non-sendable type 'B' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultB = v }
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:166:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func all<A, B, FA, FB>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B), EitherBio<FA, FB>> where FA: Error, FB: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:193:51: warning: mutation of captured var 'resultB' in concurrently-executing code
                proQueue.async(flags: .barrier) { resultB = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:196:51: warning: mutation of captured var 'error' in concurrently-executing code
                proQueue.async(flags: .barrier) { error = .b(e) }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:232:51: warning: capture of 'resultA' with non-sendable type 'A?' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultA = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:217:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func all<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C), EitherTri<FA, FB, FC>> where FA: Error, FB: Error, FC: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:232:61: warning: capture of 'v' with non-sendable type 'A' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultA = v }
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:217:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func all<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C), EitherTri<FA, FB, FC>> where FA: Error, FB: Error, FC: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:232:51: warning: mutation of captured var 'resultA' in concurrently-executing code
                proQueue.async(flags: .barrier) { resultA = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:235:51: warning: mutation of captured var 'error' in concurrently-executing code
                proQueue.async(flags: .barrier) { error = .a(e) }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:246:51: warning: capture of 'resultB' with non-sendable type 'B?' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultB = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:217:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func all<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C), EitherTri<FA, FB, FC>> where FA: Error, FB: Error, FC: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:246:61: warning: capture of 'v' with non-sendable type 'B' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultB = v }
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:217:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func all<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C), EitherTri<FA, FB, FC>> where FA: Error, FB: Error, FC: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:246:51: warning: mutation of captured var 'resultB' in concurrently-executing code
                proQueue.async(flags: .barrier) { resultB = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:249:51: warning: mutation of captured var 'error' in concurrently-executing code
                proQueue.async(flags: .barrier) { error = .b(e) }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:260:51: warning: capture of 'resultC' with non-sendable type 'C?' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultC = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:217:23: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func all<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C), EitherTri<FA, FB, FC>> where FA: Error, FB: Error, FC: Error {
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:260:61: warning: capture of 'v' with non-sendable type 'C' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultC = v }
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:217:23: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func all<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C), EitherTri<FA, FB, FC>> where FA: Error, FB: Error, FC: Error {
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:260:51: warning: mutation of captured var 'resultC' in concurrently-executing code
                proQueue.async(flags: .barrier) { resultC = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:263:51: warning: mutation of captured var 'error' in concurrently-executing code
                proQueue.async(flags: .barrier) { error = .c(e) }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:302:51: warning: capture of 'resultA' with non-sendable type 'A?' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultA = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:286:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func all<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C, D), EitherFor<FA, FB, FC, FD>> where FA: Error, FB: Error, FC: Error, FD: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:302:61: warning: capture of 'v' with non-sendable type 'A' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultA = v }
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:286:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func all<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C, D), EitherFor<FA, FB, FC, FD>> where FA: Error, FB: Error, FC: Error, FD: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:302:51: warning: mutation of captured var 'resultA' in concurrently-executing code
                proQueue.async(flags: .barrier) { resultA = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:305:51: warning: mutation of captured var 'error' in concurrently-executing code
                proQueue.async(flags: .barrier) { error = .a(e) }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:316:51: warning: capture of 'resultB' with non-sendable type 'B?' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultB = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:286:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func all<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C, D), EitherFor<FA, FB, FC, FD>> where FA: Error, FB: Error, FC: Error, FD: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:316:61: warning: capture of 'v' with non-sendable type 'B' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultB = v }
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:286:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func all<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C, D), EitherFor<FA, FB, FC, FD>> where FA: Error, FB: Error, FC: Error, FD: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:316:51: warning: mutation of captured var 'resultB' in concurrently-executing code
                proQueue.async(flags: .barrier) { resultB = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:319:51: warning: mutation of captured var 'error' in concurrently-executing code
                proQueue.async(flags: .barrier) { error = .b(e) }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:330:51: warning: capture of 'resultC' with non-sendable type 'C?' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultC = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:286:23: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func all<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C, D), EitherFor<FA, FB, FC, FD>> where FA: Error, FB: Error, FC: Error, FD: Error {
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:330:61: warning: capture of 'v' with non-sendable type 'C' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultC = v }
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:286:23: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func all<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C, D), EitherFor<FA, FB, FC, FD>> where FA: Error, FB: Error, FC: Error, FD: Error {
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:330:51: warning: mutation of captured var 'resultC' in concurrently-executing code
                proQueue.async(flags: .barrier) { resultC = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:333:51: warning: mutation of captured var 'error' in concurrently-executing code
                proQueue.async(flags: .barrier) { error = .c(e) }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:344:51: warning: capture of 'resultD' with non-sendable type 'D?' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultD = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:286:26: note: consider making generic parameter 'D' conform to the 'Sendable' protocol
public func all<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C, D), EitherFor<FA, FB, FC, FD>> where FA: Error, FB: Error, FC: Error, FD: Error {
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:344:61: warning: capture of 'v' with non-sendable type 'D' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultD = v }
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:286:26: note: consider making generic parameter 'D' conform to the 'Sendable' protocol
public func all<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C, D), EitherFor<FA, FB, FC, FD>> where FA: Error, FB: Error, FC: Error, FD: Error {
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:344:51: warning: mutation of captured var 'resultD' in concurrently-executing code
                proQueue.async(flags: .barrier) { resultD = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:347:51: warning: mutation of captured var 'error' in concurrently-executing code
                proQueue.async(flags: .barrier) { error = .d(e) }
                                                  ^
SwiftDriverJobDiscovery normal armv7k Emitting module for CombineEx (in target 'CombineEx' from project 'CombineEx')
SwiftDriver\ Compilation\ Requirements CombineEx normal armv7k com.apple.xcode.tools.swift.compiler (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CombineEx -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/CombineEx.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/CombineEx-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/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/CombineEx.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/CombineEx.build/Debug-watchos/CombineEx.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/CombineEx_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/CombineEx.build/Debug-watchos/CombineEx.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.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/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/CombineEx-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64_32 Emitting module for CombineEx (in target 'CombineEx' from project 'CombineEx')
SwiftDriver\ Compilation\ Requirements CombineEx normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CombineEx -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/CombineEx.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/CombineEx-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/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/CombineEx.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/CombineEx.build/Debug-watchos/CombineEx.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/CombineEx_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/CombineEx.build/Debug-watchos/CombineEx.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.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/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/CombineEx-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/CombineEx.swiftmodule (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/CombineEx.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.swiftmodule/armv7k-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/CombineEx.swiftdoc (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/CombineEx.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/CombineEx.abi.json (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/CombineEx.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/CombineEx.swiftmodule (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/CombineEx.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/CombineEx.swiftdoc (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/CombineEx.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/CombineEx.abi.json (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/CombineEx.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/CombineEx.swiftsourceinfo (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/CombineEx.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/CombineEx.swiftsourceinfo (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/CombineEx.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64_32 Compiling\ CombineEx+Either.swift /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/CombineEx+Either.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/CombineEx+Either.swift (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ TokenManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift:14:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'TokenManager' may have shared mutable state; this is an error in the Swift 6 language mode
    static let shared = TokenManager()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift:13:13: note: class 'TokenManager' does not conform to the 'Sendable' protocol
final class TokenManager {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift:14:16: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    static let shared = TokenManager()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift:14:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let shared = TokenManager()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift:19:47: warning: capture of 'self' with non-sendable type 'TokenManager' in a '@Sendable' closure
        set { _queue.async(flags: .barrier) { self._tokenMap = newValue } }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift:13:13: note: class 'TokenManager' does not conform to the 'Sendable' protocol
final class TokenManager {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift:19:64: warning: capture of 'newValue' with non-sendable type '[UUID : AnyCancelableBox]' in a '@Sendable' closure
        set { _queue.async(flags: .barrier) { self._tokenMap = newValue } }
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift:4:8: note: consider making struct 'AnyCancelableBox' conform to the 'Sendable' protocol
struct AnyCancelableBox {
       ^
                        : Sendable
SwiftDriverJobDiscovery normal arm64 Emitting module for CombineEx (in target 'CombineEx' from project 'CombineEx')
SwiftDriver\ Compilation\ Requirements CombineEx normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CombineEx -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/CombineEx.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/CombineEx-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/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/CombineEx.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/CombineEx.build/Debug-watchos/CombineEx.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/CombineEx_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/CombineEx.build/Debug-watchos/CombineEx.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.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/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/CombineEx-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal armv7k Compiling CombineEx+Subscriber.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal arm64_32 Compiling\ Combine+Await.swift /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Await.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Await.swift (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Await.swift:12:69: warning: capture of 'result' with non-sendable type 'Result<Self.Output, Self.Failure>?' in a '@Sendable' closure
            case let .failure(e): proQueue.async(flags: .barrier) { result = .failure(e) }
                                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Await.swift:12:69: warning: mutation of captured var 'result' in concurrently-executing code
            case let .failure(e): proQueue.async(flags: .barrier) { result = .failure(e) }
                                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Await.swift:17:47: warning: capture of 'result' with non-sendable type 'Result<Self.Output, Self.Failure>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { result = .success(value) }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Await.swift:17:65: warning: capture of 'value' with non-sendable type 'Self.Output' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { result = .success(value) }
                                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Await.swift:17:47: warning: mutation of captured var 'result' in concurrently-executing code
            proQueue.async(flags: .barrier) { result = .success(value) }
                                              ^
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/CombineEx-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/CombineEx-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/CombineEx-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/CombineEx-Swift.h (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/CombineEx-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/CombineEx-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/CombineEx-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/CombineEx-Swift.h
SwiftDriverJobDiscovery normal armv7k Compiling CombineEx+Publisher.swift (in target 'CombineEx' from project 'CombineEx')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/CombineEx.swiftmodule (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/CombineEx.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/CombineEx.swiftdoc (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/CombineEx.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/CombineEx.abi.json (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/CombineEx.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/CombineEx.swiftsourceinfo (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/CombineEx.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64_32 Compiling\ Combine+All.swift /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:63:59: warning: capture of 'values' with non-sendable type '[Int : Value]' in a '@Sendable' closure
                        proQueue.async(flags: .barrier) { values[index] = v }
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:8:17: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
public func all<Value, Failure>(_ promises: [() -> AnyPublisher<Value, Failure>], on queue: DispatchQueue = .main, maxConcurrent: Int = 10) -> AnyPublisher<[Value], Failure> where Failure: Error {
                ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:63:75: warning: capture of 'v' with non-sendable type 'Value' in a '@Sendable' closure
                        proQueue.async(flags: .barrier) { values[index] = v }
                                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:8:17: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
public func all<Value, Failure>(_ promises: [() -> AnyPublisher<Value, Failure>], on queue: DispatchQueue = .main, maxConcurrent: Int = 10) -> AnyPublisher<[Value], Failure> where Failure: Error {
                ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:63:59: warning: mutation of captured var 'values' in concurrently-executing code
                        proQueue.async(flags: .barrier) { values[index] = v }
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:66:59: warning: mutation of captured var 'error' in concurrently-executing code
                        proQueue.async(flags: .barrier) { error = e }
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:94:29: warning: capture of 'values' with non-sendable type '[Int : Value]' in a '@Sendable' closure
                            values[index] = v
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:8:17: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
public func all<Value, Failure>(_ promises: [() -> AnyPublisher<Value, Failure>], on queue: DispatchQueue = .main, maxConcurrent: Int = 10) -> AnyPublisher<[Value], Failure> where Failure: Error {
                ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:94:45: warning: capture of 'v' with non-sendable type 'Value' in a '@Sendable' closure
                            values[index] = v
                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:8:17: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
public func all<Value, Failure>(_ promises: [() -> AnyPublisher<Value, Failure>], on queue: DispatchQueue = .main, maxConcurrent: Int = 10) -> AnyPublisher<[Value], Failure> where Failure: Error {
                ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:94:29: warning: mutation of captured var 'values' in concurrently-executing code
                            values[index] = v
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:98:59: warning: mutation of captured var 'error' in concurrently-executing code
                        proQueue.async(flags: .barrier) { error = e }
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:144:25: warning: capture of 'values' with non-sendable type '[Int : Value]' in a '@Sendable' closure
                        values[index] = v
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:116:17: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
public func all<Value, Failure>(_ promises: [AnyPublisher<Value, Failure>], on queue: DispatchQueue = .main) -> AnyPublisher<[Value], Failure> where Failure: Error {
                ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:144:41: warning: capture of 'v' with non-sendable type 'Value' in a '@Sendable' closure
                        values[index] = v
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:116:17: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
public func all<Value, Failure>(_ promises: [AnyPublisher<Value, Failure>], on queue: DispatchQueue = .main) -> AnyPublisher<[Value], Failure> where Failure: Error {
                ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:144:25: warning: mutation of captured var 'values' in concurrently-executing code
                        values[index] = v
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:148:55: warning: mutation of captured var 'error' in concurrently-executing code
                    proQueue.async(flags: .barrier) { error = e }
                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:179:51: warning: capture of 'resultA' with non-sendable type 'A?' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultA = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:166:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func all<A, B, FA, FB>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B), EitherBio<FA, FB>> where FA: Error, FB: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:179:61: warning: capture of 'v' with non-sendable type 'A' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultA = v }
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:166:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func all<A, B, FA, FB>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B), EitherBio<FA, FB>> where FA: Error, FB: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:179:51: warning: mutation of captured var 'resultA' in concurrently-executing code
                proQueue.async(flags: .barrier) { resultA = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:182:51: warning: mutation of captured var 'error' in concurrently-executing code
                proQueue.async(flags: .barrier) { error = .a(e) }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:193:51: warning: capture of 'resultB' with non-sendable type 'B?' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultB = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:166:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func all<A, B, FA, FB>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B), EitherBio<FA, FB>> where FA: Error, FB: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:193:61: warning: capture of 'v' with non-sendable type 'B' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultB = v }
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:166:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func all<A, B, FA, FB>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B), EitherBio<FA, FB>> where FA: Error, FB: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:193:51: warning: mutation of captured var 'resultB' in concurrently-executing code
                proQueue.async(flags: .barrier) { resultB = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:196:51: warning: mutation of captured var 'error' in concurrently-executing code
                proQueue.async(flags: .barrier) { error = .b(e) }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:232:51: warning: capture of 'resultA' with non-sendable type 'A?' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultA = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:217:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func all<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C), EitherTri<FA, FB, FC>> where FA: Error, FB: Error, FC: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:232:61: warning: capture of 'v' with non-sendable type 'A' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultA = v }
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:217:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func all<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C), EitherTri<FA, FB, FC>> where FA: Error, FB: Error, FC: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:232:51: warning: mutation of captured var 'resultA' in concurrently-executing code
                proQueue.async(flags: .barrier) { resultA = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:235:51: warning: mutation of captured var 'error' in concurrently-executing code
                proQueue.async(flags: .barrier) { error = .a(e) }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:246:51: warning: capture of 'resultB' with non-sendable type 'B?' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultB = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:217:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func all<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C), EitherTri<FA, FB, FC>> where FA: Error, FB: Error, FC: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:246:61: warning: capture of 'v' with non-sendable type 'B' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultB = v }
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:217:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func all<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C), EitherTri<FA, FB, FC>> where FA: Error, FB: Error, FC: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:246:51: warning: mutation of captured var 'resultB' in concurrently-executing code
                proQueue.async(flags: .barrier) { resultB = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:249:51: warning: mutation of captured var 'error' in concurrently-executing code
                proQueue.async(flags: .barrier) { error = .b(e) }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:260:51: warning: capture of 'resultC' with non-sendable type 'C?' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultC = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:217:23: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func all<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C), EitherTri<FA, FB, FC>> where FA: Error, FB: Error, FC: Error {
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:260:61: warning: capture of 'v' with non-sendable type 'C' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultC = v }
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:217:23: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func all<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C), EitherTri<FA, FB, FC>> where FA: Error, FB: Error, FC: Error {
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:260:51: warning: mutation of captured var 'resultC' in concurrently-executing code
                proQueue.async(flags: .barrier) { resultC = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:263:51: warning: mutation of captured var 'error' in concurrently-executing code
                proQueue.async(flags: .barrier) { error = .c(e) }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:302:51: warning: capture of 'resultA' with non-sendable type 'A?' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultA = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:286:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func all<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C, D), EitherFor<FA, FB, FC, FD>> where FA: Error, FB: Error, FC: Error, FD: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:302:61: warning: capture of 'v' with non-sendable type 'A' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultA = v }
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:286:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func all<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C, D), EitherFor<FA, FB, FC, FD>> where FA: Error, FB: Error, FC: Error, FD: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:302:51: warning: mutation of captured var 'resultA' in concurrently-executing code
                proQueue.async(flags: .barrier) { resultA = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:305:51: warning: mutation of captured var 'error' in concurrently-executing code
                proQueue.async(flags: .barrier) { error = .a(e) }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:316:51: warning: capture of 'resultB' with non-sendable type 'B?' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultB = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:286:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func all<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C, D), EitherFor<FA, FB, FC, FD>> where FA: Error, FB: Error, FC: Error, FD: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:316:61: warning: capture of 'v' with non-sendable type 'B' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultB = v }
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:286:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func all<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C, D), EitherFor<FA, FB, FC, FD>> where FA: Error, FB: Error, FC: Error, FD: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:316:51: warning: mutation of captured var 'resultB' in concurrently-executing code
                proQueue.async(flags: .barrier) { resultB = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:319:51: warning: mutation of captured var 'error' in concurrently-executing code
                proQueue.async(flags: .barrier) { error = .b(e) }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:330:51: warning: capture of 'resultC' with non-sendable type 'C?' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultC = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:286:23: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func all<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C, D), EitherFor<FA, FB, FC, FD>> where FA: Error, FB: Error, FC: Error, FD: Error {
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:330:61: warning: capture of 'v' with non-sendable type 'C' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultC = v }
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:286:23: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func all<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C, D), EitherFor<FA, FB, FC, FD>> where FA: Error, FB: Error, FC: Error, FD: Error {
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:330:51: warning: mutation of captured var 'resultC' in concurrently-executing code
                proQueue.async(flags: .barrier) { resultC = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:333:51: warning: mutation of captured var 'error' in concurrently-executing code
                proQueue.async(flags: .barrier) { error = .c(e) }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:344:51: warning: capture of 'resultD' with non-sendable type 'D?' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultD = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:286:26: note: consider making generic parameter 'D' conform to the 'Sendable' protocol
public func all<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C, D), EitherFor<FA, FB, FC, FD>> where FA: Error, FB: Error, FC: Error, FD: Error {
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:344:61: warning: capture of 'v' with non-sendable type 'D' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { resultD = v }
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:286:26: note: consider making generic parameter 'D' conform to the 'Sendable' protocol
public func all<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(A, B, C, D), EitherFor<FA, FB, FC, FD>> where FA: Error, FB: Error, FC: Error, FD: Error {
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:344:51: warning: mutation of captured var 'resultD' in concurrently-executing code
                proQueue.async(flags: .barrier) { resultD = v }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+All.swift:347:51: warning: mutation of captured var 'error' in concurrently-executing code
                proQueue.async(flags: .barrier) { error = .d(e) }
                                                  ^
SwiftCompile normal arm64 Compiling\ CombineEx+Subscriber.swift /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/CombineEx+Subscriber.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/CombineEx+Subscriber.swift (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling CombineEx+Either.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal armv7k Compiling\ Combine+Any.swift /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:17:51: warning: capture of 'results' with non-sendable type '[Result<Value, Failure>]' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { results.append(result) }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:8:17: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
public func any<Value, Failure>(_ promises: [AnyPublisher<Value, Failure>], on queue: DispatchQueue = .main) -> AnyPublisher<[Result<Value, Failure>], Never> where Failure: Error {
                ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:17:66: warning: capture of 'result' with non-sendable type 'Result<Value, Failure>' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { results.append(result) }
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:8:17: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
public func any<Value, Failure>(_ promises: [AnyPublisher<Value, Failure>], on queue: DispatchQueue = .main) -> AnyPublisher<[Result<Value, Failure>], Never> where Failure: Error {
                ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:17:51: warning: mutation of captured var 'results' in concurrently-executing code
                proQueue.async(flags: .barrier) { results.append(result) }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:40:47: warning: capture of 'resultA' with non-sendable type 'Result<A, FA>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultA = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:31:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func any<A, B, FA, FB>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>), Never> where FA: Error, FB: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:40:57: warning: capture of 'result' with non-sendable type 'Result<A, FA>' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultA = result }
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:31:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func any<A, B, FA, FB>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>), Never> where FA: Error, FB: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:40:47: warning: mutation of captured var 'resultA' in concurrently-executing code
            proQueue.async(flags: .barrier) { resultA = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:43:47: warning: capture of 'resultB' with non-sendable type 'Result<B, FB>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultB = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:31:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func any<A, B, FA, FB>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>), Never> where FA: Error, FB: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:43:57: warning: capture of 'result' with non-sendable type 'Result<B, FB>' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultB = result }
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:31:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func any<A, B, FA, FB>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>), Never> where FA: Error, FB: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:43:47: warning: mutation of captured var 'resultB' in concurrently-executing code
            proQueue.async(flags: .barrier) { resultB = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:67:47: warning: capture of 'resultA' with non-sendable type 'Result<A, FA>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultA = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:58:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func any<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>), Never> where FA: Error, FB: Error, FC: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:67:57: warning: capture of 'result' with non-sendable type 'Result<A, FA>' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultA = result }
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:58:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func any<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>), Never> where FA: Error, FB: Error, FC: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:67:47: warning: mutation of captured var 'resultA' in concurrently-executing code
            proQueue.async(flags: .barrier) { resultA = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:70:47: warning: capture of 'resultB' with non-sendable type 'Result<B, FB>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultB = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:58:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func any<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>), Never> where FA: Error, FB: Error, FC: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:70:57: warning: capture of 'result' with non-sendable type 'Result<B, FB>' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultB = result }
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:58:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func any<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>), Never> where FA: Error, FB: Error, FC: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:70:47: warning: mutation of captured var 'resultB' in concurrently-executing code
            proQueue.async(flags: .barrier) { resultB = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:73:47: warning: capture of 'resultC' with non-sendable type 'Result<C, FC>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultC = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:58:23: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func any<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>), Never> where FA: Error, FB: Error, FC: Error {
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:73:57: warning: capture of 'result' with non-sendable type 'Result<C, FC>' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultC = result }
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:58:23: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func any<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>), Never> where FA: Error, FB: Error, FC: Error {
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:73:47: warning: mutation of captured var 'resultC' in concurrently-executing code
            proQueue.async(flags: .barrier) { resultC = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:100:47: warning: capture of 'resultA' with non-sendable type 'Result<A, FA>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultA = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:90:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func any<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>, Result<D, FD>), Never> where FA: Error, FB: Error, FC: Error, FD: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:100:57: warning: capture of 'result' with non-sendable type 'Result<A, FA>' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultA = result }
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:90:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func any<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>, Result<D, FD>), Never> where FA: Error, FB: Error, FC: Error, FD: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:100:47: warning: mutation of captured var 'resultA' in concurrently-executing code
            proQueue.async(flags: .barrier) { resultA = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:103:47: warning: capture of 'resultB' with non-sendable type 'Result<B, FB>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultB = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:90:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func any<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>, Result<D, FD>), Never> where FA: Error, FB: Error, FC: Error, FD: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:103:57: warning: capture of 'result' with non-sendable type 'Result<B, FB>' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultB = result }
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:90:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func any<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>, Result<D, FD>), Never> where FA: Error, FB: Error, FC: Error, FD: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:103:47: warning: mutation of captured var 'resultB' in concurrently-executing code
            proQueue.async(flags: .barrier) { resultB = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:106:47: warning: capture of 'resultC' with non-sendable type 'Result<C, FC>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultC = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:90:23: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func any<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>, Result<D, FD>), Never> where FA: Error, FB: Error, FC: Error, FD: Error {
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:106:57: warning: capture of 'result' with non-sendable type 'Result<C, FC>' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultC = result }
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:90:23: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func any<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>, Result<D, FD>), Never> where FA: Error, FB: Error, FC: Error, FD: Error {
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:106:47: warning: mutation of captured var 'resultC' in concurrently-executing code
            proQueue.async(flags: .barrier) { resultC = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:109:47: warning: capture of 'resultD' with non-sendable type 'Result<D, FD>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultD = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:90:26: note: consider making generic parameter 'D' conform to the 'Sendable' protocol
public func any<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>, Result<D, FD>), Never> where FA: Error, FB: Error, FC: Error, FD: Error {
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:109:57: warning: capture of 'result' with non-sendable type 'Result<D, FD>' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultD = result }
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:90:26: note: consider making generic parameter 'D' conform to the 'Sendable' protocol
public func any<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>, Result<D, FD>), Never> where FA: Error, FB: Error, FC: Error, FD: Error {
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:109:47: warning: mutation of captured var 'resultD' in concurrently-executing code
            proQueue.async(flags: .barrier) { resultD = result }
                                              ^
SwiftDriverJobDiscovery normal arm64_32 Compiling Combine+Any.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal arm64_32 Compiling\ CombineEx+Subscriber.swift /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/CombineEx+Subscriber.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/CombineEx+Subscriber.swift (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling TokenManager.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal arm64_32 Compiling\ CombineEx+Publisher.swift /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/CombineEx+Publisher.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/CombineEx+Publisher.swift (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Combine+All.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal arm64_32 Compiling\ Combine+Race.swift /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:16:25: warning: capture of 'promises' with non-sendable type '[AnyPublisher<Value, Failure>]' in a '@Sendable' closure
            for item in promises {
                        ^
Combine.AnyPublisher:2:23: note: generic struct 'AnyPublisher' does not conform to the 'Sendable' protocol
@frozen public struct AnyPublisher<Output, Failure> : CustomStringConvertible, CustomPlaygroundDisplayConvertible where Failure : Error {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Combine'
import Combine
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:26:25: warning: capture of 'completion' with non-sendable type 'PassthroughSubject<Value, Failure>' in a '@Sendable' closure
                        completion.send(completion: .failure(e))
                        ^
Combine.PassthroughSubject:2:20: note: generic class 'PassthroughSubject' does not conform to the 'Sendable' protocol
final public class PassthroughSubject<Output, Failure> : Subject where Failure : Error {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:26:25: warning: capture of 'completion' with non-sendable type 'PassthroughSubject<Value, Failure>' in an isolated closure; this is an error in the Swift 6 language mode
                        completion.send(completion: .failure(e))
                        ^
Combine.PassthroughSubject:2:20: note: generic class 'PassthroughSubject' does not conform to the 'Sendable' protocol
final public class PassthroughSubject<Output, Failure> : Subject where Failure : Error {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:25:59: warning: capture of 'firstValue' with non-sendable type 'Result<Value, Failure>?' in a '@Sendable' closure
                        proQueue.async(flags: .barrier) { firstValue = .failure(e) }
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:9:18: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
public func race<Value, Failure>(_ promises: [AnyPublisher<Value, Failure>], on queue: DispatchQueue = .main) -> AnyPublisher<Value, Failure> where Failure: Error {
                 ^
                      : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:25:59: warning: mutation of captured var 'firstValue' in concurrently-executing code
                        proQueue.async(flags: .barrier) { firstValue = .failure(e) }
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:35:21: warning: capture of 'completion' with non-sendable type 'PassthroughSubject<Value, Failure>' in an isolated closure; this is an error in the Swift 6 language mode
                    completion.send(value)
                    ^
Combine.PassthroughSubject:2:20: note: generic class 'PassthroughSubject' does not conform to the 'Sendable' protocol
final public class PassthroughSubject<Output, Failure> : Subject where Failure : Error {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:33:55: warning: capture of 'firstValue' with non-sendable type 'Result<Value, Failure>?' in a '@Sendable' closure
                    proQueue.async(flags: .barrier) { firstValue = .success(value) }
                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:9:18: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
public func race<Value, Failure>(_ promises: [AnyPublisher<Value, Failure>], on queue: DispatchQueue = .main) -> AnyPublisher<Value, Failure> where Failure: Error {
                 ^
                      : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:33:77: warning: capture of 'value' with non-sendable type 'Value' in a '@Sendable' closure
                    proQueue.async(flags: .barrier) { firstValue = .success(value) }
                                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:9:18: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
public func race<Value, Failure>(_ promises: [AnyPublisher<Value, Failure>], on queue: DispatchQueue = .main) -> AnyPublisher<Value, Failure> where Failure: Error {
                 ^
                      : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:33:55: warning: mutation of captured var 'firstValue' in concurrently-executing code
                    proQueue.async(flags: .barrier) { firstValue = .success(value) }
                                                      ^
SwiftDriverJobDiscovery normal arm64 Compiling TokenManager.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal armv7k Compiling\ TokenManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift:14:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'TokenManager' may have shared mutable state; this is an error in the Swift 6 language mode
    static let shared = TokenManager()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift:13:13: note: class 'TokenManager' does not conform to the 'Sendable' protocol
final class TokenManager {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift:14:16: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    static let shared = TokenManager()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift:14:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let shared = TokenManager()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift:19:47: warning: capture of 'self' with non-sendable type 'TokenManager' in a '@Sendable' closure
        set { _queue.async(flags: .barrier) { self._tokenMap = newValue } }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift:13:13: note: class 'TokenManager' does not conform to the 'Sendable' protocol
final class TokenManager {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift:19:64: warning: capture of 'newValue' with non-sendable type '[UUID : AnyCancelableBox]' in a '@Sendable' closure
        set { _queue.async(flags: .barrier) { self._tokenMap = newValue } }
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/TokenManager.swift:4:8: note: consider making struct 'AnyCancelableBox' conform to the 'Sendable' protocol
struct AnyCancelableBox {
       ^
                        : Sendable
SwiftDriverJobDiscovery normal armv7k Compiling Combine+All.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal arm64 Compiling\ CombineEx+Publisher.swift /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/CombineEx+Publisher.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/CombineEx+Publisher.swift (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Combine+Race.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal armv7k Compiling\ CombineEx+Either.swift /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/CombineEx+Either.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/CombineEx+Either.swift (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Combine+Await.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal armv7k Compiling\ Combine+Await.swift /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Await.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Await.swift (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Await.swift:12:69: warning: capture of 'result' with non-sendable type 'Result<Self.Output, Self.Failure>?' in a '@Sendable' closure
            case let .failure(e): proQueue.async(flags: .barrier) { result = .failure(e) }
                                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Await.swift:12:69: warning: mutation of captured var 'result' in concurrently-executing code
            case let .failure(e): proQueue.async(flags: .barrier) { result = .failure(e) }
                                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Await.swift:17:47: warning: capture of 'result' with non-sendable type 'Result<Self.Output, Self.Failure>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { result = .success(value) }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Await.swift:17:65: warning: capture of 'value' with non-sendable type 'Self.Output' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { result = .success(value) }
                                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Await.swift:17:47: warning: mutation of captured var 'result' in concurrently-executing code
            proQueue.async(flags: .barrier) { result = .success(value) }
                                              ^
SwiftDriverJobDiscovery normal arm64 Compiling CombineEx+Subscriber.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal arm64 Compiling\ CombineEx+Either.swift /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/CombineEx+Either.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/CombineEx+Either.swift (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling CombineEx+Subscriber.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal armv7k Compiling\ Combine+Race.swift /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:16:25: warning: capture of 'promises' with non-sendable type '[AnyPublisher<Value, Failure>]' in a '@Sendable' closure
            for item in promises {
                        ^
Combine.AnyPublisher:2:23: note: generic struct 'AnyPublisher' does not conform to the 'Sendable' protocol
@frozen public struct AnyPublisher<Output, Failure> : CustomStringConvertible, CustomPlaygroundDisplayConvertible where Failure : Error {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Combine'
import Combine
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:26:25: warning: capture of 'completion' with non-sendable type 'PassthroughSubject<Value, Failure>' in a '@Sendable' closure
                        completion.send(completion: .failure(e))
                        ^
Combine.PassthroughSubject:2:20: note: generic class 'PassthroughSubject' does not conform to the 'Sendable' protocol
final public class PassthroughSubject<Output, Failure> : Subject where Failure : Error {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:26:25: warning: capture of 'completion' with non-sendable type 'PassthroughSubject<Value, Failure>' in an isolated closure; this is an error in the Swift 6 language mode
                        completion.send(completion: .failure(e))
                        ^
Combine.PassthroughSubject:2:20: note: generic class 'PassthroughSubject' does not conform to the 'Sendable' protocol
final public class PassthroughSubject<Output, Failure> : Subject where Failure : Error {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:25:59: warning: capture of 'firstValue' with non-sendable type 'Result<Value, Failure>?' in a '@Sendable' closure
                        proQueue.async(flags: .barrier) { firstValue = .failure(e) }
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:9:18: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
public func race<Value, Failure>(_ promises: [AnyPublisher<Value, Failure>], on queue: DispatchQueue = .main) -> AnyPublisher<Value, Failure> where Failure: Error {
                 ^
                      : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:25:59: warning: mutation of captured var 'firstValue' in concurrently-executing code
                        proQueue.async(flags: .barrier) { firstValue = .failure(e) }
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:35:21: warning: capture of 'completion' with non-sendable type 'PassthroughSubject<Value, Failure>' in an isolated closure; this is an error in the Swift 6 language mode
                    completion.send(value)
                    ^
Combine.PassthroughSubject:2:20: note: generic class 'PassthroughSubject' does not conform to the 'Sendable' protocol
final public class PassthroughSubject<Output, Failure> : Subject where Failure : Error {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:33:55: warning: capture of 'firstValue' with non-sendable type 'Result<Value, Failure>?' in a '@Sendable' closure
                    proQueue.async(flags: .barrier) { firstValue = .success(value) }
                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:9:18: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
public func race<Value, Failure>(_ promises: [AnyPublisher<Value, Failure>], on queue: DispatchQueue = .main) -> AnyPublisher<Value, Failure> where Failure: Error {
                 ^
                      : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:33:77: warning: capture of 'value' with non-sendable type 'Value' in a '@Sendable' closure
                    proQueue.async(flags: .barrier) { firstValue = .success(value) }
                                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:9:18: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
public func race<Value, Failure>(_ promises: [AnyPublisher<Value, Failure>], on queue: DispatchQueue = .main) -> AnyPublisher<Value, Failure> where Failure: Error {
                 ^
                      : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Race.swift:33:55: warning: mutation of captured var 'firstValue' in concurrently-executing code
                    proQueue.async(flags: .barrier) { firstValue = .success(value) }
                                                      ^
SwiftDriverJobDiscovery normal arm64_32 Compiling Combine+Await.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal arm64 Compiling\ Combine+Any.swift /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift (in target 'CombineEx' from project 'CombineEx')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:17:51: warning: capture of 'results' with non-sendable type '[Result<Value, Failure>]' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { results.append(result) }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:8:17: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
public func any<Value, Failure>(_ promises: [AnyPublisher<Value, Failure>], on queue: DispatchQueue = .main) -> AnyPublisher<[Result<Value, Failure>], Never> where Failure: Error {
                ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:17:66: warning: capture of 'result' with non-sendable type 'Result<Value, Failure>' in a '@Sendable' closure
                proQueue.async(flags: .barrier) { results.append(result) }
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:8:17: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
public func any<Value, Failure>(_ promises: [AnyPublisher<Value, Failure>], on queue: DispatchQueue = .main) -> AnyPublisher<[Result<Value, Failure>], Never> where Failure: Error {
                ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:17:51: warning: mutation of captured var 'results' in concurrently-executing code
                proQueue.async(flags: .barrier) { results.append(result) }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:40:47: warning: capture of 'resultA' with non-sendable type 'Result<A, FA>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultA = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:31:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func any<A, B, FA, FB>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>), Never> where FA: Error, FB: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:40:57: warning: capture of 'result' with non-sendable type 'Result<A, FA>' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultA = result }
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:31:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func any<A, B, FA, FB>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>), Never> where FA: Error, FB: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:40:47: warning: mutation of captured var 'resultA' in concurrently-executing code
            proQueue.async(flags: .barrier) { resultA = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:43:47: warning: capture of 'resultB' with non-sendable type 'Result<B, FB>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultB = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:31:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func any<A, B, FA, FB>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>), Never> where FA: Error, FB: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:43:57: warning: capture of 'result' with non-sendable type 'Result<B, FB>' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultB = result }
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:31:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func any<A, B, FA, FB>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>), Never> where FA: Error, FB: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:43:47: warning: mutation of captured var 'resultB' in concurrently-executing code
            proQueue.async(flags: .barrier) { resultB = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:67:47: warning: capture of 'resultA' with non-sendable type 'Result<A, FA>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultA = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:58:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func any<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>), Never> where FA: Error, FB: Error, FC: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:67:57: warning: capture of 'result' with non-sendable type 'Result<A, FA>' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultA = result }
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:58:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func any<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>), Never> where FA: Error, FB: Error, FC: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:67:47: warning: mutation of captured var 'resultA' in concurrently-executing code
            proQueue.async(flags: .barrier) { resultA = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:70:47: warning: capture of 'resultB' with non-sendable type 'Result<B, FB>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultB = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:58:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func any<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>), Never> where FA: Error, FB: Error, FC: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:70:57: warning: capture of 'result' with non-sendable type 'Result<B, FB>' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultB = result }
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:58:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func any<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>), Never> where FA: Error, FB: Error, FC: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:70:47: warning: mutation of captured var 'resultB' in concurrently-executing code
            proQueue.async(flags: .barrier) { resultB = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:73:47: warning: capture of 'resultC' with non-sendable type 'Result<C, FC>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultC = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:58:23: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func any<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>), Never> where FA: Error, FB: Error, FC: Error {
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:73:57: warning: capture of 'result' with non-sendable type 'Result<C, FC>' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultC = result }
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:58:23: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func any<A, B, C, FA, FB, FC>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>), Never> where FA: Error, FB: Error, FC: Error {
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:73:47: warning: mutation of captured var 'resultC' in concurrently-executing code
            proQueue.async(flags: .barrier) { resultC = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:100:47: warning: capture of 'resultA' with non-sendable type 'Result<A, FA>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultA = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:90:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func any<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>, Result<D, FD>), Never> where FA: Error, FB: Error, FC: Error, FD: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:100:57: warning: capture of 'result' with non-sendable type 'Result<A, FA>' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultA = result }
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:90:17: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func any<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>, Result<D, FD>), Never> where FA: Error, FB: Error, FC: Error, FD: Error {
                ^
                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:100:47: warning: mutation of captured var 'resultA' in concurrently-executing code
            proQueue.async(flags: .barrier) { resultA = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:103:47: warning: capture of 'resultB' with non-sendable type 'Result<B, FB>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultB = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:90:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func any<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>, Result<D, FD>), Never> where FA: Error, FB: Error, FC: Error, FD: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:103:57: warning: capture of 'result' with non-sendable type 'Result<B, FB>' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultB = result }
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:90:20: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func any<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>, Result<D, FD>), Never> where FA: Error, FB: Error, FC: Error, FD: Error {
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:103:47: warning: mutation of captured var 'resultB' in concurrently-executing code
            proQueue.async(flags: .barrier) { resultB = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:106:47: warning: capture of 'resultC' with non-sendable type 'Result<C, FC>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultC = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:90:23: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func any<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>, Result<D, FD>), Never> where FA: Error, FB: Error, FC: Error, FD: Error {
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:106:57: warning: capture of 'result' with non-sendable type 'Result<C, FC>' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultC = result }
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:90:23: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func any<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>, Result<D, FD>), Never> where FA: Error, FB: Error, FC: Error, FD: Error {
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:106:47: warning: mutation of captured var 'resultC' in concurrently-executing code
            proQueue.async(flags: .barrier) { resultC = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:109:47: warning: capture of 'resultD' with non-sendable type 'Result<D, FD>?' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultD = result }
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:90:26: note: consider making generic parameter 'D' conform to the 'Sendable' protocol
public func any<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>, Result<D, FD>), Never> where FA: Error, FB: Error, FC: Error, FD: Error {
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:109:57: warning: capture of 'result' with non-sendable type 'Result<D, FD>' in a '@Sendable' closure
            proQueue.async(flags: .barrier) { resultD = result }
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:90:26: note: consider making generic parameter 'D' conform to the 'Sendable' protocol
public func any<A, B, C, D, FA, FB, FC, FD>(_ a: AnyPublisher<A, FA>, _ b: AnyPublisher<B, FB>, _ c: AnyPublisher<C, FC>, _ d: AnyPublisher<D, FD>, on queue: DispatchQueue = .main) -> AnyPublisher<(Result<A, FA>, Result<B, FB>, Result<C, FC>, Result<D, FD>), Never> where FA: Error, FB: Error, FC: Error, FD: Error {
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CombineEx/Combine+Any.swift:109:47: warning: mutation of captured var 'resultD' in concurrently-executing code
            proQueue.async(flags: .barrier) { resultD = result }
                                              ^
SwiftDriverJobDiscovery normal arm64_32 Compiling CombineEx+Publisher.swift (in target 'CombineEx' from project 'CombineEx')
SwiftDriverJobDiscovery normal arm64 Compiling CombineEx+Publisher.swift (in target 'CombineEx' from project 'CombineEx')
SwiftDriverJobDiscovery normal armv7k Compiling TokenManager.swift (in target 'CombineEx' from project 'CombineEx')
SwiftDriverJobDiscovery normal armv7k Compiling CombineEx+Either.swift (in target 'CombineEx' from project 'CombineEx')
SwiftDriverJobDiscovery normal armv7k Compiling Combine+Any.swift (in target 'CombineEx' from project 'CombineEx')
SwiftDriverJobDiscovery normal arm64 Compiling CombineEx+Either.swift (in target 'CombineEx' from project 'CombineEx')
SwiftDriverJobDiscovery normal armv7k Compiling Combine+Await.swift (in target 'CombineEx' from project 'CombineEx')
SwiftDriverJobDiscovery normal arm64_32 Compiling Combine+Race.swift (in target 'CombineEx' from project 'CombineEx')
SwiftDriverJobDiscovery normal arm64_32 Compiling Combine+All.swift (in target 'CombineEx' from project 'CombineEx')
SwiftDriver\ Compilation CombineEx normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CombineEx -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/CombineEx.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/CombineEx-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/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/CombineEx.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/CombineEx.build/Debug-watchos/CombineEx.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/CombineEx_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/CombineEx.build/Debug-watchos/CombineEx.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.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/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/CombineEx-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/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/Binary/CombineEx.o normal arm64_32 (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos6.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/CombineEx.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/CombineEx_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/CombineEx_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/CombineEx.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/Binary/CombineEx.o
SwiftDriverJobDiscovery normal armv7k Compiling Combine+Race.swift (in target 'CombineEx' from project 'CombineEx')
SwiftDriver\ Compilation CombineEx normal armv7k com.apple.xcode.tools.swift.compiler (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CombineEx -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/CombineEx.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/CombineEx-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/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/CombineEx.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/CombineEx.build/Debug-watchos/CombineEx.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/CombineEx_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/CombineEx.build/Debug-watchos/CombineEx.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.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/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/CombineEx-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/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/Binary/CombineEx.o normal armv7k (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos6.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/CombineEx.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/CombineEx_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/CombineEx_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/CombineEx.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/Binary/CombineEx.o
SwiftDriverJobDiscovery normal arm64 Compiling Combine+Any.swift (in target 'CombineEx' from project 'CombineEx')
SwiftDriver\ Compilation CombineEx normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CombineEx -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/CombineEx.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/CombineEx-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/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/CombineEx.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/CombineEx.build/Debug-watchos/CombineEx.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/CombineEx_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/CombineEx.build/Debug-watchos/CombineEx.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.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/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/CombineEx-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/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/Binary/CombineEx.o normal arm64 (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos6.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/CombineEx.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/CombineEx_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/CombineEx_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/CombineEx.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/Binary/CombineEx.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.o normal arm64\ armv7k\ arm64_32 (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/Binary/CombineEx.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/Binary/CombineEx.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/Binary/CombineEx.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.o
ExtractAppIntentsMetadata (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name CombineEx --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 6.0 --bundle-identifier spi-builder-workspace.CombineEx --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.appintents --target-triple arm64-apple-watchos6.0 --target-triple armv7k-apple-watchos6.0 --target-triple arm64_32-apple-watchos6.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/CombineEx_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/CombineEx_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/CombineEx_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/CombineEx.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/CombineEx.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/CombineEx.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/CombineEx.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/CombineEx.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64/CombineEx.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/armv7k/CombineEx.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CombineEx.build/Debug-watchos/CombineEx.build/Objects-normal/arm64_32/CombineEx.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-24 02:44:34.401 appintentsmetadataprocessor[738:4194] Starting appintentsmetadataprocessor export
2025-04-24 02:44:34.436 appintentsmetadataprocessor[738:4194] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.o (in target 'CombineEx' from project 'CombineEx')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineEx.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "CombineEx",
  "name" : "CombineEx",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "CombineEx",
      "targets" : [
        "CombineEx"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CombineExTests",
      "module_type" : "SwiftTarget",
      "name" : "CombineExTests",
      "path" : "Tests/CombineExTests",
      "sources" : [
        "CombineExTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "CombineEx"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CombineEx",
      "module_type" : "SwiftTarget",
      "name" : "CombineEx",
      "path" : "Sources/CombineEx",
      "product_memberships" : [
        "CombineEx"
      ],
      "sources" : [
        "Combine+All.swift",
        "Combine+Any.swift",
        "Combine+Await.swift",
        "Combine+Race.swift",
        "CombineEx+Either.swift",
        "CombineEx+Publisher.swift",
        "CombineEx+Subscriber.swift",
        "TokenManager.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
Done.