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 RxSwift, reference main (5dd190), with Swift 6.1 for Linux on 30 Apr 2025 15:02:04 UTC.

Swift 6 data race errors: 25

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1

Build Log

 36 | ///
 37 | /// This scheduler is also sometimes called `trampoline scheduler`.
 38 | public class CurrentThreadScheduler : ImmediateSchedulerType {
    |              `- note: class 'CurrentThreadScheduler' does not conform to the 'Sendable' protocol
 39 |     typealias ScheduleQueue = RxMutableBox<Queue<ScheduledItemType>>
 40 |
 41 |     /// The singleton instance of the current thread scheduler.
 42 |     public static let instance = CurrentThreadScheduler()
    |                       |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'CurrentThreadScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |
 44 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
/host/spi-builder-workspace/Sources/RxSwift/CurrentThreadScheduler.swift:44:24: warning: static property 'isScheduleRequiredKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 42 |     public static let instance = CurrentThreadScheduler()
 43 |
 44 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                        |- warning: static property 'isScheduleRequiredKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'isScheduleRequiredKey' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'isScheduleRequiredKey' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 45 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 46 |         defer { key.deallocate() }
/host/spi-builder-workspace/Sources/RxSwift/CurrentThreadScheduler.swift:55:24: warning: static property 'scheduleInProgressSentinel' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 53 |     }()
 54 |
 55 |     private static var scheduleInProgressSentinel: UnsafeRawPointer = { () -> UnsafeRawPointer in
    |                        |- warning: static property 'scheduleInProgressSentinel' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'scheduleInProgressSentinel' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'scheduleInProgressSentinel' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 56 |         return UnsafeRawPointer(UnsafeMutablePointer<Int>.allocate(capacity: 1))
 57 |     }()
/host/spi-builder-workspace/Sources/RxSwift/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
[152/188] Compiling RxSwift Dematerialize.swift
/host/spi-builder-workspace/Sources/RxSwift/ConcurrentMainScheduler.swift:36:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'ConcurrentMainScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
16 | `MainScheduler` is more suitable for that purpose.
17 | */
18 | public final class ConcurrentMainScheduler : SchedulerType {
   |                    `- note: class 'ConcurrentMainScheduler' does not conform to the 'Sendable' protocol
19 |     public typealias TimeInterval = Foundation.TimeInterval
20 |     public typealias Time = Date
   :
34 |
35 |     /// Singleton instance of `ConcurrentMainScheduler`
36 |     public static let instance = ConcurrentMainScheduler(mainScheduler: MainScheduler.instance)
   |                       |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'ConcurrentMainScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /**
/host/spi-builder-workspace/Sources/RxSwift/ConcurrentMainScheduler.swift:53:16: warning: capture of 'cancel' with non-sendable type 'SingleAssignmentDisposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
51 |
52 |         self.mainQueue.async {
53 |             if cancel.isDisposed {
   |                `- warning: capture of 'cancel' with non-sendable type 'SingleAssignmentDisposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
54 |                 return
55 |             }
/host/spi-builder-workspace/Sources/RxSwift/SingleAssignmentDisposable.swift:14:20: note: class 'SingleAssignmentDisposable' does not conform to the 'Sendable' protocol
12 | If an underlying disposable resource has already been set, future attempts to set the underlying disposable resource will throw an exception.
13 | */
14 | public final class SingleAssignmentDisposable : DisposeBase, Cancelable {
   |                    `- note: class 'SingleAssignmentDisposable' does not conform to the 'Sendable' protocol
15 |
16 |     private struct DisposeState: OptionSet {
/host/spi-builder-workspace/Sources/RxSwift/ConcurrentMainScheduler.swift:57:34: warning: capture of 'action' with non-sendable type '(StateType) -> any Disposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
55 |             }
56 |
57 |             cancel.setDisposable(action(state))
   |                                  |- warning: capture of 'action' with non-sendable type '(StateType) -> any Disposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
   |                                  `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
58 |         }
59 |
/host/spi-builder-workspace/Sources/RxSwift/ConcurrentMainScheduler.swift:57:41: warning: capture of 'state' with non-sendable type 'StateType' in a '@Sendable' closure; this is an error in the Swift 6 language mode
43 |     - returns: The disposable object used to cancel the scheduled action (best effort).
44 |     */
45 |     public func schedule<StateType>(_ state: StateType, action: @escaping (StateType) -> Disposable) -> Disposable {
   |                          `- note: consider making generic parameter 'StateType' conform to the 'Sendable' protocol
46 |         if DispatchQueue.isMain {
47 |             return action(state)
   :
55 |             }
56 |
57 |             cancel.setDisposable(action(state))
   |                                         `- warning: capture of 'state' with non-sendable type 'StateType' in a '@Sendable' closure; this is an error in the Swift 6 language mode
58 |         }
59 |
/host/spi-builder-workspace/Sources/RxSwift/CurrentThreadScheduler.swift:42:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'CurrentThreadScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
 36 | ///
 37 | /// This scheduler is also sometimes called `trampoline scheduler`.
 38 | public class CurrentThreadScheduler : ImmediateSchedulerType {
    |              `- note: class 'CurrentThreadScheduler' does not conform to the 'Sendable' protocol
 39 |     typealias ScheduleQueue = RxMutableBox<Queue<ScheduledItemType>>
 40 |
 41 |     /// The singleton instance of the current thread scheduler.
 42 |     public static let instance = CurrentThreadScheduler()
    |                       |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'CurrentThreadScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |
 44 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
/host/spi-builder-workspace/Sources/RxSwift/CurrentThreadScheduler.swift:44:24: warning: static property 'isScheduleRequiredKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 42 |     public static let instance = CurrentThreadScheduler()
 43 |
 44 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                        |- warning: static property 'isScheduleRequiredKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'isScheduleRequiredKey' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'isScheduleRequiredKey' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 45 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 46 |         defer { key.deallocate() }
/host/spi-builder-workspace/Sources/RxSwift/CurrentThreadScheduler.swift:55:24: warning: static property 'scheduleInProgressSentinel' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 53 |     }()
 54 |
 55 |     private static var scheduleInProgressSentinel: UnsafeRawPointer = { () -> UnsafeRawPointer in
    |                        |- warning: static property 'scheduleInProgressSentinel' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'scheduleInProgressSentinel' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'scheduleInProgressSentinel' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 56 |         return UnsafeRawPointer(UnsafeMutablePointer<Int>.allocate(capacity: 1))
 57 |     }()
/host/spi-builder-workspace/Sources/RxSwift/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
[153/188] Compiling RxSwift DispatchQueue+Extensions.swift
/host/spi-builder-workspace/Sources/RxSwift/ConcurrentMainScheduler.swift:36:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'ConcurrentMainScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
16 | `MainScheduler` is more suitable for that purpose.
17 | */
18 | public final class ConcurrentMainScheduler : SchedulerType {
   |                    `- note: class 'ConcurrentMainScheduler' does not conform to the 'Sendable' protocol
19 |     public typealias TimeInterval = Foundation.TimeInterval
20 |     public typealias Time = Date
   :
34 |
35 |     /// Singleton instance of `ConcurrentMainScheduler`
36 |     public static let instance = ConcurrentMainScheduler(mainScheduler: MainScheduler.instance)
   |                       |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'ConcurrentMainScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /**
/host/spi-builder-workspace/Sources/RxSwift/ConcurrentMainScheduler.swift:53:16: warning: capture of 'cancel' with non-sendable type 'SingleAssignmentDisposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
51 |
52 |         self.mainQueue.async {
53 |             if cancel.isDisposed {
   |                `- warning: capture of 'cancel' with non-sendable type 'SingleAssignmentDisposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
54 |                 return
55 |             }
/host/spi-builder-workspace/Sources/RxSwift/SingleAssignmentDisposable.swift:14:20: note: class 'SingleAssignmentDisposable' does not conform to the 'Sendable' protocol
12 | If an underlying disposable resource has already been set, future attempts to set the underlying disposable resource will throw an exception.
13 | */
14 | public final class SingleAssignmentDisposable : DisposeBase, Cancelable {
   |                    `- note: class 'SingleAssignmentDisposable' does not conform to the 'Sendable' protocol
15 |
16 |     private struct DisposeState: OptionSet {
/host/spi-builder-workspace/Sources/RxSwift/ConcurrentMainScheduler.swift:57:34: warning: capture of 'action' with non-sendable type '(StateType) -> any Disposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
55 |             }
56 |
57 |             cancel.setDisposable(action(state))
   |                                  |- warning: capture of 'action' with non-sendable type '(StateType) -> any Disposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
   |                                  `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
58 |         }
59 |
/host/spi-builder-workspace/Sources/RxSwift/ConcurrentMainScheduler.swift:57:41: warning: capture of 'state' with non-sendable type 'StateType' in a '@Sendable' closure; this is an error in the Swift 6 language mode
43 |     - returns: The disposable object used to cancel the scheduled action (best effort).
44 |     */
45 |     public func schedule<StateType>(_ state: StateType, action: @escaping (StateType) -> Disposable) -> Disposable {
   |                          `- note: consider making generic parameter 'StateType' conform to the 'Sendable' protocol
46 |         if DispatchQueue.isMain {
47 |             return action(state)
   :
55 |             }
56 |
57 |             cancel.setDisposable(action(state))
   |                                         `- warning: capture of 'state' with non-sendable type 'StateType' in a '@Sendable' closure; this is an error in the Swift 6 language mode
58 |         }
59 |
/host/spi-builder-workspace/Sources/RxSwift/CurrentThreadScheduler.swift:42:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'CurrentThreadScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
 36 | ///
 37 | /// This scheduler is also sometimes called `trampoline scheduler`.
 38 | public class CurrentThreadScheduler : ImmediateSchedulerType {
    |              `- note: class 'CurrentThreadScheduler' does not conform to the 'Sendable' protocol
 39 |     typealias ScheduleQueue = RxMutableBox<Queue<ScheduledItemType>>
 40 |
 41 |     /// The singleton instance of the current thread scheduler.
 42 |     public static let instance = CurrentThreadScheduler()
    |                       |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'CurrentThreadScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |
 44 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
/host/spi-builder-workspace/Sources/RxSwift/CurrentThreadScheduler.swift:44:24: warning: static property 'isScheduleRequiredKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 42 |     public static let instance = CurrentThreadScheduler()
 43 |
 44 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                        |- warning: static property 'isScheduleRequiredKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'isScheduleRequiredKey' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'isScheduleRequiredKey' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 45 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 46 |         defer { key.deallocate() }
/host/spi-builder-workspace/Sources/RxSwift/CurrentThreadScheduler.swift:55:24: warning: static property 'scheduleInProgressSentinel' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 53 |     }()
 54 |
 55 |     private static var scheduleInProgressSentinel: UnsafeRawPointer = { () -> UnsafeRawPointer in
    |                        |- warning: static property 'scheduleInProgressSentinel' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'scheduleInProgressSentinel' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'scheduleInProgressSentinel' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 56 |         return UnsafeRawPointer(UnsafeMutablePointer<Int>.allocate(capacity: 1))
 57 |     }()
/host/spi-builder-workspace/Sources/RxSwift/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
[154/188] Compiling RxSwift SynchronizedOnType.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[155/188] Compiling RxSwift SynchronizedUnsubscribeType.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[156/188] Compiling RxSwift TailRecursiveSink.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[157/188] Compiling RxSwift Take.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[158/188] Compiling RxSwift TakeLast.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[159/188] Compiling RxSwift TakeWithPredicate.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[160/188] Compiling RxSwift Throttle.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[161/188] Compiling RxSwift Timeout.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[162/188] Compiling RxSwift Timer.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[163/188] Compiling RxSwift ToArray.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[164/188] Compiling RxSwift Using.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[165/188] Compiling RxSwift VirtualTimeConverterType.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[166/188] Compiling RxSwift VirtualTimeScheduler.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[167/188] Compiling RxSwift Window.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[168/188] Compiling RxSwift WithLatestFrom.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[169/188] Compiling RxSwift WithUnretained.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[170/188] Compiling RxSwift Zip+Collection.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[171/188] Compiling RxSwift Zip+arity.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[172/188] Compiling RxSwift Zip.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[173/188] Compiling RxSwift resource_bundle_accessor.swift
/host/spi-builder-workspace/Sources/RxSwift/TailRecursiveSink.swift:15:16: warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | #if DEBUG || TRACE_RESOURCES
 15 |     public var maxTailRecursiveSinkStackSize = 0
    |                |- warning: var 'maxTailRecursiveSinkStackSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'maxTailRecursiveSinkStackSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make var 'maxTailRecursiveSinkStackSize' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | #endif
 17 |
[174/189] Wrapping AST for RxSwift for debugging
[175/189] Write Objects.LinkFileList
[177/219] Compiling RxBlocking BlockingObservable.swift
[178/219] Compiling RxBlocking ObservableConvertibleType+Blocking.swift
[179/220] Compiling RxBlocking Resources.swift
[180/220] Compiling RxBlocking Platform.Linux.swift
[181/220] Compiling RxBlocking RecursiveLock.swift
[182/220] Compiling RxBlocking Platform.Darwin.swift
[183/220] Compiling RxTest TestableObserver.swift
[184/221] Compiling RxRelay resource_bundle_accessor.swift
[185/221] Compiling RxRelay ReplayRelay.swift
[186/221] Compiling RxRelay PublishRelay.swift
[187/221] Compiling RxRelay Utils.swift
[188/221] Compiling RxRelay BehaviorRelay.swift
[189/221] Compiling RxRelay Observable+Bind.swift
[190/221] Emitting module RxRelay
[191/222] Compiling RxTest TestSchedulerVirtualTimeConverter.swift
[192/222] Compiling RxTest TestableObservable.swift
[193/222] Emitting module RxBlocking
/host/spi-builder-workspace/Sources/RxBlocking/RunLoopLock.swift:16:9: warning: let 'runLoopModeRaw' is not concurrency-safe because non-'Sendable' type 'CFString' may have shared mutable state; this is an error in the Swift 6 language mode
14 |     import Foundation
15 |     let runLoopMode: RunLoop.Mode = .default
16 |     let runLoopModeRaw: CFString = unsafeBitCast(runLoopMode.rawValue._bridgeToObjectiveC(), to: CFString.self)
   |         `- warning: let 'runLoopModeRaw' is not concurrency-safe because non-'Sendable' type 'CFString' may have shared mutable state; this is an error in the Swift 6 language mode
17 | #else
18 |     let runLoopMode: CFRunLoopMode = CFRunLoopMode.defaultMode
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString {
  |              `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/host/spi-builder-workspace/Sources/RxBlocking/RunLoopLock.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
 7 | //
 8 |
 9 | import CoreFoundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
10 | import Foundation
11 | import RxSwift
   :
14 |     import Foundation
15 |     let runLoopMode: RunLoop.Mode = .default
16 |     let runLoopModeRaw: CFString = unsafeBitCast(runLoopMode.rawValue._bridgeToObjectiveC(), to: CFString.self)
   |         |- note: add '@MainActor' to make let 'runLoopModeRaw' part of global actor 'MainActor'
   |         `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | #else
18 |     let runLoopMode: CFRunLoopMode = CFRunLoopMode.defaultMode
[194/222] Compiling RxTest ColdObservable.swift
[195/222] Compiling RxTest Event+Equatable.swift
[195/222] Linking libRxSwift-Dynamic.so
[197/222] Compiling RxTest Recorded.swift
[198/222] Compiling RxTest RxTest.swift
[199/222] Compiling RxTest Subscription.swift
[200/222] Compiling RxTest TestScheduler.swift
[203/222] Compiling RxTest HotObservable.swift
[204/222] Compiling RxTest Recorded+Event.swift
[205/222] Compiling RxBlocking RunLoopLock.swift
/host/spi-builder-workspace/Sources/RxBlocking/RunLoopLock.swift:16:9: warning: let 'runLoopModeRaw' is not concurrency-safe because non-'Sendable' type 'CFString' may have shared mutable state; this is an error in the Swift 6 language mode
14 |     import Foundation
15 |     let runLoopMode: RunLoop.Mode = .default
16 |     let runLoopModeRaw: CFString = unsafeBitCast(runLoopMode.rawValue._bridgeToObjectiveC(), to: CFString.self)
   |         `- warning: let 'runLoopModeRaw' is not concurrency-safe because non-'Sendable' type 'CFString' may have shared mutable state; this is an error in the Swift 6 language mode
17 | #else
18 |     let runLoopMode: CFRunLoopMode = CFRunLoopMode.defaultMode
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString {
  |              `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/host/spi-builder-workspace/Sources/RxBlocking/RunLoopLock.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
 7 | //
 8 |
 9 | import CoreFoundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
10 | import Foundation
11 | import RxSwift
   :
14 |     import Foundation
15 |     let runLoopMode: RunLoop.Mode = .default
16 |     let runLoopModeRaw: CFString = unsafeBitCast(runLoopMode.rawValue._bridgeToObjectiveC(), to: CFString.self)
   |         |- note: add '@MainActor' to make let 'runLoopModeRaw' part of global actor 'MainActor'
   |         `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | #else
18 |     let runLoopMode: CFRunLoopMode = CFRunLoopMode.defaultMode
[207/223] Emitting module RxTest
[208/223] Compiling RxTest Any+Equatable.swift
[209/223] Compiling RxTest Bag.swift
[210/223] Wrapping AST for RxRelay for debugging
[211/223] Write Objects.LinkFileList
[212/223] Wrapping AST for RxBlocking for debugging
[213/223] Write Objects.LinkFileList
[215/308] Compiling RxTest XCTest+Rx.swift
[216/309] Compiling RxCocoa UIButton+Rx.swift
[217/309] Compiling RxCocoa UICollectionView+Rx.swift
[218/309] Compiling RxCocoa UIControl+Rx.swift
[219/309] Compiling RxCocoa UIDatePicker+Rx.swift
[220/309] Compiling RxCocoa UIGestureRecognizer+Rx.swift
[221/309] Compiling RxCocoa UINavigationController+Rx.swift
[222/309] Compiling RxCocoa UIPickerView+Rx.swift
[223/309] Compiling RxCocoa UIRefreshControl+Rx.swift
[224/309] Compiling RxCocoa UIScrollView+Rx.swift
[225/309] Compiling RxCocoa UISearchBar+Rx.swift
[226/309] Compiling RxCocoa UISearchController+Rx.swift
[227/309] Compiling RxCocoa UISegmentedControl+Rx.swift
[228/320] Wrapping AST for RxTest for debugging
[229/320] Write Objects.LinkFileList
[231/320] Emitting module RxCocoa
/host/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:26:10: warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 24 |     case unknown
 25 |     /// Invalid operation was attempted.
 26 |     case invalidOperation(object: Any)
    |          `- warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:28:10: warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |     case invalidOperation(object: Any)
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
    |          `- warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:30:10: warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case itemsNotYetBound(object: Any)
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
    |          `- warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:36:10: warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 34 |     case errorDuringSwizzling
 35 |     /// Casting error.
 36 |     case castingError(object: Any, targetType: Any.Type)
    |          `- warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 37 | }
 38 |
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 |     /// Default scheduler used in SharedSequence based traits.
13 |     public private(set) static var make: () -> SchedulerType = { MainScheduler() }
   |                                    |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                                    |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
   |                                    |- note: add '@MainActor' to make static property 'make' part of global actor 'MainActor'
   |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     /**
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 |     /// Log URL requests to standard output in curl format.
233 |     public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
    |                       |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'shouldLogRequest' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         #if DEBUG
235 |             return true
[231/320] Linking libRxRelay-Dynamic.so
[233/320] Compiling RxCocoa RxCollectionViewDataSourcePrefetchingProxy.swift
[234/320] Compiling RxCocoa RxCollectionViewDataSourceProxy.swift
[235/320] Compiling RxCocoa RxCollectionViewDataSourceType.swift
[236/320] Compiling RxCocoa RxCollectionViewDelegateProxy.swift
[237/320] Compiling RxCocoa RxCollectionViewReactiveArrayDataSource.swift
[238/320] Compiling RxCocoa RxNavigationControllerDelegateProxy.swift
[239/320] Compiling RxCocoa RxPickerViewAdapter.swift
[240/320] Compiling RxCocoa RxPickerViewDataSourceProxy.swift
[241/320] Compiling RxCocoa RxPickerViewDataSourceType.swift
[242/320] Compiling RxCocoa RxPickerViewDelegateProxy.swift
[243/320] Compiling RxCocoa RxScrollViewDelegateProxy.swift
[244/320] Compiling RxCocoa RxSearchBarDelegateProxy.swift
[245/320] Compiling RxCocoa NSTextField+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:23:17: warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
21 |         return Observable.create { [weak object] observer in
22 |             let nsObserver = self.base.addObserver(forName: name, object: object, queue: nil) { notification in
23 |                 observer.on(.next(notification))
   |                 `- warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
24 |             }
25 |
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 8 |
 9 | import Foundation
10 | import RxSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | extension Reactive where Base: NotificationCenter {
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:26:10: warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 24 |     case unknown
 25 |     /// Invalid operation was attempted.
 26 |     case invalidOperation(object: Any)
    |          `- warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:28:10: warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |     case invalidOperation(object: Any)
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
    |          `- warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:30:10: warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case itemsNotYetBound(object: Any)
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
    |          `- warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:36:10: warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 34 |     case errorDuringSwizzling
 35 |     /// Casting error.
 36 |     case castingError(object: Any, targetType: Any.Type)
    |          `- warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 37 | }
 38 |
[246/320] Compiling RxCocoa NSTextStorage+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:23:17: warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
21 |         return Observable.create { [weak object] observer in
22 |             let nsObserver = self.base.addObserver(forName: name, object: object, queue: nil) { notification in
23 |                 observer.on(.next(notification))
   |                 `- warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
24 |             }
25 |
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 8 |
 9 | import Foundation
10 | import RxSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | extension Reactive where Base: NotificationCenter {
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:26:10: warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 24 |     case unknown
 25 |     /// Invalid operation was attempted.
 26 |     case invalidOperation(object: Any)
    |          `- warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:28:10: warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |     case invalidOperation(object: Any)
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
    |          `- warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:30:10: warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case itemsNotYetBound(object: Any)
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
    |          `- warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:36:10: warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 34 |     case errorDuringSwizzling
 35 |     /// Casting error.
 36 |     case castingError(object: Any, targetType: Any.Type)
    |          `- warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 37 | }
 38 |
[247/320] Compiling RxCocoa NSTextView+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:23:17: warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
21 |         return Observable.create { [weak object] observer in
22 |             let nsObserver = self.base.addObserver(forName: name, object: object, queue: nil) { notification in
23 |                 observer.on(.next(notification))
   |                 `- warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
24 |             }
25 |
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 8 |
 9 | import Foundation
10 | import RxSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | extension Reactive where Base: NotificationCenter {
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:26:10: warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 24 |     case unknown
 25 |     /// Invalid operation was attempted.
 26 |     case invalidOperation(object: Any)
    |          `- warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:28:10: warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |     case invalidOperation(object: Any)
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
    |          `- warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:30:10: warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case itemsNotYetBound(object: Any)
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
    |          `- warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:36:10: warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 34 |     case errorDuringSwizzling
 35 |     /// Casting error.
 36 |     case castingError(object: Any, targetType: Any.Type)
    |          `- warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 37 | }
 38 |
[248/320] Compiling RxCocoa NSView+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:23:17: warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
21 |         return Observable.create { [weak object] observer in
22 |             let nsObserver = self.base.addObserver(forName: name, object: object, queue: nil) { notification in
23 |                 observer.on(.next(notification))
   |                 `- warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
24 |             }
25 |
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 8 |
 9 | import Foundation
10 | import RxSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | extension Reactive where Base: NotificationCenter {
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:26:10: warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 24 |     case unknown
 25 |     /// Invalid operation was attempted.
 26 |     case invalidOperation(object: Any)
    |          `- warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:28:10: warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |     case invalidOperation(object: Any)
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
    |          `- warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:30:10: warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case itemsNotYetBound(object: Any)
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
    |          `- warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:36:10: warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 34 |     case errorDuringSwizzling
 35 |     /// Casting error.
 36 |     case castingError(object: Any, targetType: Any.Type)
    |          `- warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 37 | }
 38 |
[249/320] Compiling RxCocoa NotificationCenter+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:23:17: warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
21 |         return Observable.create { [weak object] observer in
22 |             let nsObserver = self.base.addObserver(forName: name, object: object, queue: nil) { notification in
23 |                 observer.on(.next(notification))
   |                 `- warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
24 |             }
25 |
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 8 |
 9 | import Foundation
10 | import RxSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | extension Reactive where Base: NotificationCenter {
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:26:10: warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 24 |     case unknown
 25 |     /// Invalid operation was attempted.
 26 |     case invalidOperation(object: Any)
    |          `- warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:28:10: warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |     case invalidOperation(object: Any)
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
    |          `- warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:30:10: warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case itemsNotYetBound(object: Any)
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
    |          `- warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:36:10: warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 34 |     case errorDuringSwizzling
 35 |     /// Casting error.
 36 |     case castingError(object: Any, targetType: Any.Type)
    |          `- warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 37 | }
 38 |
[250/320] Compiling RxCocoa Observable+Bind.swift
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:23:17: warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
21 |         return Observable.create { [weak object] observer in
22 |             let nsObserver = self.base.addObserver(forName: name, object: object, queue: nil) { notification in
23 |                 observer.on(.next(notification))
   |                 `- warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
24 |             }
25 |
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 8 |
 9 | import Foundation
10 | import RxSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | extension Reactive where Base: NotificationCenter {
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:26:10: warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 24 |     case unknown
 25 |     /// Invalid operation was attempted.
 26 |     case invalidOperation(object: Any)
    |          `- warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:28:10: warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |     case invalidOperation(object: Any)
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
    |          `- warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:30:10: warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case itemsNotYetBound(object: Any)
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
    |          `- warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:36:10: warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 34 |     case errorDuringSwizzling
 35 |     /// Casting error.
 36 |     case castingError(object: Any, targetType: Any.Type)
    |          `- warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 37 | }
 38 |
[251/320] Compiling RxCocoa ObservableConvertibleType+Driver.swift
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:23:17: warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
21 |         return Observable.create { [weak object] observer in
22 |             let nsObserver = self.base.addObserver(forName: name, object: object, queue: nil) { notification in
23 |                 observer.on(.next(notification))
   |                 `- warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
24 |             }
25 |
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 8 |
 9 | import Foundation
10 | import RxSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | extension Reactive where Base: NotificationCenter {
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:26:10: warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 24 |     case unknown
 25 |     /// Invalid operation was attempted.
 26 |     case invalidOperation(object: Any)
    |          `- warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:28:10: warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |     case invalidOperation(object: Any)
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
    |          `- warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:30:10: warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case itemsNotYetBound(object: Any)
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
    |          `- warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:36:10: warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 34 |     case errorDuringSwizzling
 35 |     /// Casting error.
 36 |     case castingError(object: Any, targetType: Any.Type)
    |          `- warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 37 | }
 38 |
[252/320] Compiling RxCocoa ObservableConvertibleType+SharedSequence.swift
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:23:17: warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
21 |         return Observable.create { [weak object] observer in
22 |             let nsObserver = self.base.addObserver(forName: name, object: object, queue: nil) { notification in
23 |                 observer.on(.next(notification))
   |                 `- warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
24 |             }
25 |
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 8 |
 9 | import Foundation
10 | import RxSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | extension Reactive where Base: NotificationCenter {
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:26:10: warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 24 |     case unknown
 25 |     /// Invalid operation was attempted.
 26 |     case invalidOperation(object: Any)
    |          `- warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:28:10: warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |     case invalidOperation(object: Any)
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
    |          `- warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:30:10: warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case itemsNotYetBound(object: Any)
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
    |          `- warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:36:10: warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 34 |     case errorDuringSwizzling
 35 |     /// Casting error.
 36 |     case castingError(object: Any, targetType: Any.Type)
    |          `- warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 37 | }
 38 |
[253/320] Compiling RxCocoa ObservableConvertibleType+Signal.swift
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:23:17: warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
21 |         return Observable.create { [weak object] observer in
22 |             let nsObserver = self.base.addObserver(forName: name, object: object, queue: nil) { notification in
23 |                 observer.on(.next(notification))
   |                 `- warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
24 |             }
25 |
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 8 |
 9 | import Foundation
10 | import RxSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | extension Reactive where Base: NotificationCenter {
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:26:10: warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 24 |     case unknown
 25 |     /// Invalid operation was attempted.
 26 |     case invalidOperation(object: Any)
    |          `- warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:28:10: warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |     case invalidOperation(object: Any)
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
    |          `- warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:30:10: warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case itemsNotYetBound(object: Any)
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
    |          `- warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:36:10: warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 34 |     case errorDuringSwizzling
 35 |     /// Casting error.
 36 |     case castingError(object: Any, targetType: Any.Type)
    |          `- warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 37 | }
 38 |
[254/320] Compiling RxCocoa PublishRelay+Signal.swift
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:23:17: warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
21 |         return Observable.create { [weak object] observer in
22 |             let nsObserver = self.base.addObserver(forName: name, object: object, queue: nil) { notification in
23 |                 observer.on(.next(notification))
   |                 `- warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
24 |             }
25 |
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 8 |
 9 | import Foundation
10 | import RxSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | extension Reactive where Base: NotificationCenter {
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:26:10: warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 24 |     case unknown
 25 |     /// Invalid operation was attempted.
 26 |     case invalidOperation(object: Any)
    |          `- warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:28:10: warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |     case invalidOperation(object: Any)
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
    |          `- warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:30:10: warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case itemsNotYetBound(object: Any)
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
    |          `- warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:36:10: warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 34 |     case errorDuringSwizzling
 35 |     /// Casting error.
 36 |     case castingError(object: Any, targetType: Any.Type)
    |          `- warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 37 | }
 38 |
[255/320] Compiling RxCocoa RxCocoa.swift
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:23:17: warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
21 |         return Observable.create { [weak object] observer in
22 |             let nsObserver = self.base.addObserver(forName: name, object: object, queue: nil) { notification in
23 |                 observer.on(.next(notification))
   |                 `- warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
24 |             }
25 |
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 8 |
 9 | import Foundation
10 | import RxSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | extension Reactive where Base: NotificationCenter {
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:26:10: warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 24 |     case unknown
 25 |     /// Invalid operation was attempted.
 26 |     case invalidOperation(object: Any)
    |          `- warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:28:10: warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |     case invalidOperation(object: Any)
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
    |          `- warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:30:10: warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case itemsNotYetBound(object: Any)
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
    |          `- warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:36:10: warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 34 |     case errorDuringSwizzling
 35 |     /// Casting error.
 36 |     case castingError(object: Any, targetType: Any.Type)
    |          `- warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 37 | }
 38 |
[256/320] Compiling RxCocoa RxCocoaObjCRuntimeError+Extensions.swift
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:23:17: warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
21 |         return Observable.create { [weak object] observer in
22 |             let nsObserver = self.base.addObserver(forName: name, object: object, queue: nil) { notification in
23 |                 observer.on(.next(notification))
   |                 `- warning: capture of 'observer' with non-sendable type 'AnyObserver<Notification>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
24 |             }
25 |
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/NotificationCenter+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 8 |
 9 | import Foundation
10 | import RxSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | extension Reactive where Base: NotificationCenter {
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:26:10: warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 24 |     case unknown
 25 |     /// Invalid operation was attempted.
 26 |     case invalidOperation(object: Any)
    |          `- warning: associated value 'invalidOperation(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:28:10: warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |     case invalidOperation(object: Any)
 27 |     /// Items are not yet bound to user interface but have been requested.
 28 |     case itemsNotYetBound(object: Any)
    |          `- warning: associated value 'itemsNotYetBound(object:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:30:10: warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case itemsNotYetBound(object: Any)
 29 |     /// Invalid KVO Path.
 30 |     case invalidPropertyName(object: Any, propertyName: String)
    |          `- warning: associated value 'invalidPropertyName(object:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:32:10: warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 30 |     case invalidPropertyName(object: Any, propertyName: String)
 31 |     /// Invalid object on key path.
 32 |     case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String)
    |          `- warning: associated value 'invalidObjectOnKeyPath(object:sourceObject:propertyName:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
 33 |     /// Error during swizzling.
 34 |     case errorDuringSwizzling
/host/spi-builder-workspace/Sources/RxCocoa/RxCocoa.swift:36:10: warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 34 |     case errorDuringSwizzling
 35 |     /// Casting error.
 36 |     case castingError(object: Any, targetType: Any.Type)
    |          `- warning: associated value 'castingError(object:targetType:)' of 'Sendable'-conforming enum 'RxCocoaError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 37 | }
 38 |
[256/320] Linking libRxBlocking-Dynamic.so
[258/320] Compiling RxCocoa BehaviorRelay+Driver.swift
/host/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
[259/320] Compiling RxCocoa ControlEvent+Driver.swift
/host/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
[260/320] Compiling RxCocoa ControlEvent+Signal.swift
/host/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
[261/320] Compiling RxCocoa ControlEvent.swift
/host/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
[262/320] Compiling RxCocoa ControlProperty+Driver.swift
/host/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
[263/320] Compiling RxCocoa ControlProperty.swift
/host/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
[264/320] Compiling RxCocoa ControlTarget.swift
/host/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
[265/320] Compiling RxCocoa DelegateProxy.swift
/host/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
[266/320] Compiling RxCocoa DelegateProxyType.swift
/host/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
[267/320] Compiling RxCocoa DispatchQueue+Extensions.swift
/host/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
[268/320] Compiling RxCocoa Driver+Subscription.swift
/host/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
[269/320] Compiling RxCocoa Driver.swift
/host/spi-builder-workspace/Sources/RxCocoa/DispatchQueue+Extensions.swift:12:24: warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension DispatchQueue {
12 |     private static var token: DispatchSpecificKey<()> = {
   |                        |- warning: static property 'token' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'token' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'token' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |         let key = DispatchSpecificKey<()>()
14 |         DispatchQueue.main.setSpecific(key: key, value: ())
[270/320] Compiling RxCocoa Infallible+Bind.swift
[271/320] Compiling RxCocoa Infallible+Driver.swift
[272/320] Compiling RxCocoa ItemEvents.swift
[273/320] Compiling RxCocoa KVORepresentable+CoreGraphics.swift
[274/320] Compiling RxCocoa KVORepresentable+Swift.swift
[275/320] Compiling RxCocoa KVORepresentable.swift
[276/320] Compiling RxCocoa NSButton+Rx.swift
[277/320] Compiling RxCocoa NSControl+Rx.swift
[278/320] Compiling RxCocoa NSObject+Rx+KVORepresentable.swift
[279/320] Compiling RxCocoa NSObject+Rx+RawRepresentable.swift
[280/320] Compiling RxCocoa NSObject+Rx.swift
[281/320] Compiling RxCocoa NSSlider+Rx.swift
[281/320] Linking libRxTest-Dynamic.so
[283/320] Compiling RxCocoa UISlider+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 |     /// Log URL requests to standard output in curl format.
233 |     public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
    |                       |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'shouldLogRequest' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         #if DEBUG
235 |             return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
135 |
136 |                 guard let response = response, let data = data else {
137 |                     observer.on(.error(error ?? RxCocoaURLError.unknown))
    |                     `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
138 |                     return
139 |                 }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
  8 |
  9 | import Foundation
 10 | import RxSwift
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 11 |
 12 | #if canImport(FoundationNetworking)
[284/320] Compiling RxCocoa UIStepper+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 |     /// Log URL requests to standard output in curl format.
233 |     public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
    |                       |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'shouldLogRequest' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         #if DEBUG
235 |             return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
135 |
136 |                 guard let response = response, let data = data else {
137 |                     observer.on(.error(error ?? RxCocoaURLError.unknown))
    |                     `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
138 |                     return
139 |                 }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
  8 |
  9 | import Foundation
 10 | import RxSwift
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 11 |
 12 | #if canImport(FoundationNetworking)
[285/320] Compiling RxCocoa UISwitch+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 |     /// Log URL requests to standard output in curl format.
233 |     public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
    |                       |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'shouldLogRequest' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         #if DEBUG
235 |             return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
135 |
136 |                 guard let response = response, let data = data else {
137 |                     observer.on(.error(error ?? RxCocoaURLError.unknown))
    |                     `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
138 |                     return
139 |                 }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
  8 |
  9 | import Foundation
 10 | import RxSwift
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 11 |
 12 | #if canImport(FoundationNetworking)
[286/320] Compiling RxCocoa UITabBar+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 |     /// Log URL requests to standard output in curl format.
233 |     public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
    |                       |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'shouldLogRequest' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         #if DEBUG
235 |             return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
135 |
136 |                 guard let response = response, let data = data else {
137 |                     observer.on(.error(error ?? RxCocoaURLError.unknown))
    |                     `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
138 |                     return
139 |                 }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
  8 |
  9 | import Foundation
 10 | import RxSwift
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 11 |
 12 | #if canImport(FoundationNetworking)
[287/320] Compiling RxCocoa UITabBarController+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 |     /// Log URL requests to standard output in curl format.
233 |     public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
    |                       |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'shouldLogRequest' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         #if DEBUG
235 |             return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
135 |
136 |                 guard let response = response, let data = data else {
137 |                     observer.on(.error(error ?? RxCocoaURLError.unknown))
    |                     `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
138 |                     return
139 |                 }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
  8 |
  9 | import Foundation
 10 | import RxSwift
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 11 |
 12 | #if canImport(FoundationNetworking)
[288/320] Compiling RxCocoa UITableView+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 |     /// Log URL requests to standard output in curl format.
233 |     public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
    |                       |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'shouldLogRequest' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         #if DEBUG
235 |             return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
135 |
136 |                 guard let response = response, let data = data else {
137 |                     observer.on(.error(error ?? RxCocoaURLError.unknown))
    |                     `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
138 |                     return
139 |                 }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
  8 |
  9 | import Foundation
 10 | import RxSwift
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 11 |
 12 | #if canImport(FoundationNetworking)
[289/320] Compiling RxCocoa UITextField+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 |     /// Log URL requests to standard output in curl format.
233 |     public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
    |                       |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'shouldLogRequest' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         #if DEBUG
235 |             return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
135 |
136 |                 guard let response = response, let data = data else {
137 |                     observer.on(.error(error ?? RxCocoaURLError.unknown))
    |                     `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
138 |                     return
139 |                 }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
  8 |
  9 | import Foundation
 10 | import RxSwift
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 11 |
 12 | #if canImport(FoundationNetworking)
[290/320] Compiling RxCocoa UITextView+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 |     /// Log URL requests to standard output in curl format.
233 |     public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
    |                       |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'shouldLogRequest' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         #if DEBUG
235 |             return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
135 |
136 |                 guard let response = response, let data = data else {
137 |                     observer.on(.error(error ?? RxCocoaURLError.unknown))
    |                     `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
138 |                     return
139 |                 }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
  8 |
  9 | import Foundation
 10 | import RxSwift
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 11 |
 12 | #if canImport(FoundationNetworking)
[291/320] Compiling RxCocoa URLSession+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 |     /// Log URL requests to standard output in curl format.
233 |     public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
    |                       |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'shouldLogRequest' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         #if DEBUG
235 |             return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
135 |
136 |                 guard let response = response, let data = data else {
137 |                     observer.on(.error(error ?? RxCocoaURLError.unknown))
    |                     `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
138 |                     return
139 |                 }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
  8 |
  9 | import Foundation
 10 | import RxSwift
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 11 |
 12 | #if canImport(FoundationNetworking)
[292/320] Compiling RxCocoa WKWebView+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 |     /// Log URL requests to standard output in curl format.
233 |     public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
    |                       |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'shouldLogRequest' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         #if DEBUG
235 |             return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
135 |
136 |                 guard let response = response, let data = data else {
137 |                     observer.on(.error(error ?? RxCocoaURLError.unknown))
    |                     `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
138 |                     return
139 |                 }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
  8 |
  9 | import Foundation
 10 | import RxSwift
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 11 |
 12 | #if canImport(FoundationNetworking)
[293/320] Compiling RxCocoa resource_bundle_accessor.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 |     /// Log URL requests to standard output in curl format.
233 |     public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
    |                       |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'shouldLogRequest' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         #if DEBUG
235 |             return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
135 |
136 |                 guard let response = response, let data = data else {
137 |                     observer.on(.error(error ?? RxCocoaURLError.unknown))
    |                     `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
138 |                     return
139 |                 }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
   |               `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 |     /// Anonymous event handler type.
14 |     public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
  8 |
  9 | import Foundation
 10 | import RxSwift
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
 11 |
 12 | #if canImport(FoundationNetworking)
[294/320] Compiling RxCocoa RxSearchControllerDelegateProxy.swift
[295/320] Compiling RxCocoa RxTabBarControllerDelegateProxy.swift
[296/320] Compiling RxCocoa RxTabBarDelegateProxy.swift
[297/320] Compiling RxCocoa RxTableViewDataSourcePrefetchingProxy.swift
[298/320] Compiling RxCocoa RxTableViewDataSourceProxy.swift
[299/320] Compiling RxCocoa RxTableViewDataSourceType.swift
[300/320] Compiling RxCocoa RxTableViewDelegateProxy.swift
[301/320] Compiling RxCocoa RxTableViewReactiveArrayDataSource.swift
[302/320] Compiling RxCocoa RxTarget.swift
[303/320] Compiling RxCocoa RxTextStorageDelegateProxy.swift
[304/320] Compiling RxCocoa RxTextViewDelegateProxy.swift
[305/320] Compiling RxCocoa RxWKNavigationDelegateProxy.swift
[306/320] Compiling RxCocoa SchedulerType+SharedSequence.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 |     /// Default scheduler used in SharedSequence based traits.
13 |     public private(set) static var make: () -> SchedulerType = { MainScheduler() }
   |                                    |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                                    |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
   |                                    |- note: add '@MainActor' to make static property 'make' part of global actor 'MainActor'
   |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     /**
[307/320] Compiling RxCocoa SectionedViewDataSourceType.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 |     /// Default scheduler used in SharedSequence based traits.
13 |     public private(set) static var make: () -> SchedulerType = { MainScheduler() }
   |                                    |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                                    |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
   |                                    |- note: add '@MainActor' to make static property 'make' part of global actor 'MainActor'
   |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     /**
[308/320] Compiling RxCocoa SharedSequence+Concurrency.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 |     /// Default scheduler used in SharedSequence based traits.
13 |     public private(set) static var make: () -> SchedulerType = { MainScheduler() }
   |                                    |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                                    |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
   |                                    |- note: add '@MainActor' to make static property 'make' part of global actor 'MainActor'
   |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     /**
[309/320] Compiling RxCocoa SharedSequence+Operators+arity.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 |     /// Default scheduler used in SharedSequence based traits.
13 |     public private(set) static var make: () -> SchedulerType = { MainScheduler() }
   |                                    |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                                    |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
   |                                    |- note: add '@MainActor' to make static property 'make' part of global actor 'MainActor'
   |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     /**
[310/320] Compiling RxCocoa SharedSequence+Operators.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 |     /// Default scheduler used in SharedSequence based traits.
13 |     public private(set) static var make: () -> SchedulerType = { MainScheduler() }
   |                                    |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                                    |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
   |                                    |- note: add '@MainActor' to make static property 'make' part of global actor 'MainActor'
   |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     /**
[311/320] Compiling RxCocoa SharedSequence.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 |     /// Default scheduler used in SharedSequence based traits.
13 |     public private(set) static var make: () -> SchedulerType = { MainScheduler() }
   |                                    |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                                    |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
   |                                    |- note: add '@MainActor' to make static property 'make' part of global actor 'MainActor'
   |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     /**
[312/320] Compiling RxCocoa Signal+Subscription.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 |     /// Default scheduler used in SharedSequence based traits.
13 |     public private(set) static var make: () -> SchedulerType = { MainScheduler() }
   |                                    |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                                    |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
   |                                    |- note: add '@MainActor' to make static property 'make' part of global actor 'MainActor'
   |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     /**
[313/320] Compiling RxCocoa Signal.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 |     /// Default scheduler used in SharedSequence based traits.
13 |     public private(set) static var make: () -> SchedulerType = { MainScheduler() }
   |                                    |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                                    |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
   |                                    |- note: add '@MainActor' to make static property 'make' part of global actor 'MainActor'
   |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     /**
[314/320] Compiling RxCocoa TextInput.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 |     /// Default scheduler used in SharedSequence based traits.
13 |     public private(set) static var make: () -> SchedulerType = { MainScheduler() }
   |                                    |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                                    |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
   |                                    |- note: add '@MainActor' to make static property 'make' part of global actor 'MainActor'
   |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     /**
[315/320] Compiling RxCocoa UIActivityIndicatorView+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 |     /// Default scheduler used in SharedSequence based traits.
13 |     public private(set) static var make: () -> SchedulerType = { MainScheduler() }
   |                                    |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                                    |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
   |                                    |- note: add '@MainActor' to make static property 'make' part of global actor 'MainActor'
   |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     /**
[316/320] Compiling RxCocoa UIApplication+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 |     /// Default scheduler used in SharedSequence based traits.
13 |     public private(set) static var make: () -> SchedulerType = { MainScheduler() }
   |                                    |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                                    |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
   |                                    |- note: add '@MainActor' to make static property 'make' part of global actor 'MainActor'
   |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     /**
[317/320] Compiling RxCocoa UIBarButtonItem+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 |     /// Default scheduler used in SharedSequence based traits.
13 |     public private(set) static var make: () -> SchedulerType = { MainScheduler() }
   |                                    |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                                    |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
   |                                    |- note: add '@MainActor' to make static property 'make' part of global actor 'MainActor'
   |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     /**
[318/321] Wrapping AST for RxCocoa for debugging
[319/321] Write Objects.LinkFileList
[320/321] Linking libRxCocoa-Dynamic.so
Build complete! (18.47s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "RxSwift",
  "name" : "RxSwift",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "12.0"
    },
    {
      "name" : "macos",
      "version" : "10.13"
    },
    {
      "name" : "watchos",
      "version" : "4.0"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "RxSwift",
      "targets" : [
        "RxSwift"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "RxCocoa",
      "targets" : [
        "RxCocoa"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "RxRelay",
      "targets" : [
        "RxRelay"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "RxBlocking",
      "targets" : [
        "RxBlocking"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "RxTest",
      "targets" : [
        "RxTest"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "RxSwift-Dynamic",
      "targets" : [
        "RxSwift"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "RxCocoa-Dynamic",
      "targets" : [
        "RxCocoa"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "RxRelay-Dynamic",
      "targets" : [
        "RxRelay"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "RxBlocking-Dynamic",
      "targets" : [
        "RxBlocking"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "RxTest-Dynamic",
      "targets" : [
        "RxTest"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "RxTest",
      "module_type" : "SwiftTarget",
      "name" : "RxTest",
      "path" : "Sources/RxTest",
      "product_memberships" : [
        "RxTest",
        "RxTest-Dynamic"
      ],
      "sources" : [
        "Any+Equatable.swift",
        "Bag.swift",
        "ColdObservable.swift",
        "Event+Equatable.swift",
        "HotObservable.swift",
        "Recorded+Event.swift",
        "Recorded.swift",
        "RxTest.swift",
        "Subscription.swift",
        "TestScheduler.swift",
        "TestSchedulerVirtualTimeConverter.swift",
        "TestableObservable.swift",
        "TestableObserver.swift",
        "XCTest+Rx.swift"
      ],
      "target_dependencies" : [
        "RxSwift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "RxSwift",
      "module_type" : "SwiftTarget",
      "name" : "RxSwift",
      "path" : "Sources/RxSwift",
      "product_memberships" : [
        "RxSwift",
        "RxCocoa",
        "RxRelay",
        "RxBlocking",
        "RxTest",
        "RxSwift-Dynamic",
        "RxCocoa-Dynamic",
        "RxRelay-Dynamic",
        "RxBlocking-Dynamic",
        "RxTest-Dynamic"
      ],
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Sources/RxSwift/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "AddRef.swift",
        "Amb.swift",
        "AnonymousDisposable.swift",
        "AnonymousObserver.swift",
        "AnyObserver.swift",
        "AsMaybe.swift",
        "AsSingle.swift",
        "AsyncLock.swift",
        "AsyncSubject.swift",
        "AtomicInt.swift",
        "Bag+Rx.swift",
        "Bag.swift",
        "BehaviorSubject.swift",
        "BinaryDisposable.swift",
        "Binder.swift",
        "BooleanDisposable.swift",
        "Buffer.swift",
        "Cancelable.swift",
        "Catch.swift",
        "CombineLatest+Collection.swift",
        "CombineLatest+arity.swift",
        "CombineLatest.swift",
        "CompactMap.swift",
        "Completable+AndThen.swift",
        "Completable.swift",
        "CompositeDisposable.swift",
        "Concat.swift",
        "ConcurrentDispatchQueueScheduler.swift",
        "ConcurrentMainScheduler.swift",
        "ConnectableObservableType.swift",
        "Create.swift",
        "CurrentThreadScheduler.swift",
        "Date+Dispatch.swift",
        "Debounce.swift",
        "Debug.swift",
        "Decode.swift",
        "DefaultIfEmpty.swift",
        "Deferred.swift",
        "Delay.swift",
        "DelaySubscription.swift",
        "Dematerialize.swift",
        "DispatchQueue+Extensions.swift",
        "DispatchQueueConfiguration.swift",
        "Disposable.swift",
        "Disposables.swift",
        "DisposeBag.swift",
        "DisposeBase.swift",
        "DistinctUntilChanged.swift",
        "Do.swift",
        "ElementAt.swift",
        "Empty.swift",
        "Enumerated.swift",
        "Error.swift",
        "Errors.swift",
        "Event.swift",
        "Filter.swift",
        "First.swift",
        "Generate.swift",
        "GroupBy.swift",
        "GroupedObservable.swift",
        "HistoricalScheduler.swift",
        "HistoricalSchedulerTimeConverter.swift",
        "ImmediateSchedulerType.swift",
        "Infallible+CombineLatest+Collection.swift",
        "Infallible+CombineLatest+arity.swift",
        "Infallible+Concurrency.swift",
        "Infallible+Create.swift",
        "Infallible+Debug.swift",
        "Infallible+Operators.swift",
        "Infallible+Zip+arity.swift",
        "Infallible.swift",
        "InfiniteSequence.swift",
        "InvocableScheduledItem.swift",
        "InvocableType.swift",
        "Just.swift",
        "Lock.swift",
        "LockOwnerType.swift",
        "MainScheduler.swift",
        "Map.swift",
        "Materialize.swift",
        "Maybe.swift",
        "Merge.swift",
        "Multicast.swift",
        "Never.swift",
        "NopDisposable.swift",
        "Observable+Concurrency.swift",
        "Observable.swift",
        "ObservableConvertibleType+Infallible.swift",
        "ObservableConvertibleType.swift",
        "ObservableType+Extensions.swift",
        "ObservableType+PrimitiveSequence.swift",
        "ObservableType.swift",
        "ObserveOn.swift",
        "ObserverBase.swift",
        "ObserverType.swift",
        "OperationQueueScheduler.swift",
        "Optional.swift",
        "Platform.Darwin.swift",
        "Platform.Linux.swift",
        "PrimitiveSequence+Concurrency.swift",
        "PrimitiveSequence+Zip+arity.swift",
        "PrimitiveSequence.swift",
        "PriorityQueue.swift",
        "Producer.swift",
        "PublishSubject.swift",
        "Queue.swift",
        "Range.swift",
        "Reactive.swift",
        "RecursiveLock.swift",
        "RecursiveScheduler.swift",
        "Reduce.swift",
        "RefCountDisposable.swift",
        "Repeat.swift",
        "ReplaySubject.swift",
        "RetryWhen.swift",
        "Rx.swift",
        "RxMutableBox.swift",
        "Sample.swift",
        "Scan.swift",
        "ScheduledDisposable.swift",
        "ScheduledItem.swift",
        "ScheduledItemType.swift",
        "SchedulerServices+Emulation.swift",
        "SchedulerType.swift",
        "Sequence.swift",
        "SerialDispatchQueueScheduler.swift",
        "SerialDisposable.swift",
        "ShareReplayScope.swift",
        "Single.swift",
        "SingleAssignmentDisposable.swift",
        "SingleAsync.swift",
        "Sink.swift",
        "Skip.swift",
        "SkipUntil.swift",
        "SkipWhile.swift",
        "StartWith.swift",
        "SubjectType.swift",
        "SubscribeOn.swift",
        "SubscriptionDisposable.swift",
        "SwiftSupport.swift",
        "Switch.swift",
        "SwitchIfEmpty.swift",
        "SynchronizedDisposeType.swift",
        "SynchronizedOnType.swift",
        "SynchronizedUnsubscribeType.swift",
        "TailRecursiveSink.swift",
        "Take.swift",
        "TakeLast.swift",
        "TakeWithPredicate.swift",
        "Throttle.swift",
        "Timeout.swift",
        "Timer.swift",
        "ToArray.swift",
        "Using.swift",
        "VirtualTimeConverterType.swift",
        "VirtualTimeScheduler.swift",
        "Window.swift",
        "WithLatestFrom.swift",
        "WithUnretained.swift",
        "Zip+Collection.swift",
        "Zip+arity.swift",
        "Zip.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "RxRelay",
      "module_type" : "SwiftTarget",
      "name" : "RxRelay",
      "path" : "Sources/RxRelay",
      "product_memberships" : [
        "RxCocoa",
        "RxRelay",
        "RxCocoa-Dynamic",
        "RxRelay-Dynamic"
      ],
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Sources/RxRelay/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "BehaviorRelay.swift",
        "Observable+Bind.swift",
        "PublishRelay.swift",
        "ReplayRelay.swift",
        "Utils.swift"
      ],
      "target_dependencies" : [
        "RxSwift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "RxCocoa",
      "module_type" : "SwiftTarget",
      "name" : "RxCocoa",
      "path" : "Sources/RxCocoa",
      "product_memberships" : [
        "RxCocoa",
        "RxCocoa-Dynamic"
      ],
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Sources/RxCocoa/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "BehaviorRelay+Driver.swift",
        "ControlEvent+Driver.swift",
        "ControlEvent+Signal.swift",
        "ControlEvent.swift",
        "ControlProperty+Driver.swift",
        "ControlProperty.swift",
        "ControlTarget.swift",
        "DelegateProxy.swift",
        "DelegateProxyType.swift",
        "DispatchQueue+Extensions.swift",
        "Driver+Subscription.swift",
        "Driver.swift",
        "Infallible+Bind.swift",
        "Infallible+Driver.swift",
        "ItemEvents.swift",
        "KVORepresentable+CoreGraphics.swift",
        "KVORepresentable+Swift.swift",
        "KVORepresentable.swift",
        "NSButton+Rx.swift",
        "NSControl+Rx.swift",
        "NSObject+Rx+KVORepresentable.swift",
        "NSObject+Rx+RawRepresentable.swift",
        "NSObject+Rx.swift",
        "NSSlider+Rx.swift",
        "NSTextField+Rx.swift",
        "NSTextStorage+Rx.swift",
        "NSTextView+Rx.swift",
        "NSView+Rx.swift",
        "NotificationCenter+Rx.swift",
        "Observable+Bind.swift",
        "ObservableConvertibleType+Driver.swift",
        "ObservableConvertibleType+SharedSequence.swift",
        "ObservableConvertibleType+Signal.swift",
        "PublishRelay+Signal.swift",
        "RxCocoa.swift",
        "RxCocoaObjCRuntimeError+Extensions.swift",
        "RxCollectionViewDataSourcePrefetchingProxy.swift",
        "RxCollectionViewDataSourceProxy.swift",
        "RxCollectionViewDataSourceType.swift",
        "RxCollectionViewDelegateProxy.swift",
        "RxCollectionViewReactiveArrayDataSource.swift",
        "RxNavigationControllerDelegateProxy.swift",
        "RxPickerViewAdapter.swift",
        "RxPickerViewDataSourceProxy.swift",
        "RxPickerViewDataSourceType.swift",
        "RxPickerViewDelegateProxy.swift",
        "RxScrollViewDelegateProxy.swift",
        "RxSearchBarDelegateProxy.swift",
        "RxSearchControllerDelegateProxy.swift",
        "RxTabBarControllerDelegateProxy.swift",
        "RxTabBarDelegateProxy.swift",
        "RxTableViewDataSourcePrefetchingProxy.swift",
        "RxTableViewDataSourceProxy.swift",
        "RxTableViewDataSourceType.swift",
        "RxTableViewDelegateProxy.swift",
        "RxTableViewReactiveArrayDataSource.swift",
        "RxTarget.swift",
        "RxTextStorageDelegateProxy.swift",
        "RxTextViewDelegateProxy.swift",
        "RxWKNavigationDelegateProxy.swift",
        "SchedulerType+SharedSequence.swift",
        "SectionedViewDataSourceType.swift",
        "SharedSequence+Concurrency.swift",
        "SharedSequence+Operators+arity.swift",
        "SharedSequence+Operators.swift",
        "SharedSequence.swift",
        "Signal+Subscription.swift",
        "Signal.swift",
        "TextInput.swift",
        "UIActivityIndicatorView+Rx.swift",
        "UIApplication+Rx.swift",
        "UIBarButtonItem+Rx.swift",
        "UIButton+Rx.swift",
        "UICollectionView+Rx.swift",
        "UIControl+Rx.swift",
        "UIDatePicker+Rx.swift",
        "UIGestureRecognizer+Rx.swift",
        "UINavigationController+Rx.swift",
        "UIPickerView+Rx.swift",
        "UIRefreshControl+Rx.swift",
        "UIScrollView+Rx.swift",
        "UISearchBar+Rx.swift",
        "UISearchController+Rx.swift",
        "UISegmentedControl+Rx.swift",
        "UISlider+Rx.swift",
        "UIStepper+Rx.swift",
        "UISwitch+Rx.swift",
        "UITabBar+Rx.swift",
        "UITabBarController+Rx.swift",
        "UITableView+Rx.swift",
        "UITextField+Rx.swift",
        "UITextView+Rx.swift",
        "URLSession+Rx.swift",
        "WKWebView+Rx.swift"
      ],
      "target_dependencies" : [
        "RxSwift",
        "RxRelay"
      ],
      "type" : "library"
    },
    {
      "c99name" : "RxBlocking",
      "module_type" : "SwiftTarget",
      "name" : "RxBlocking",
      "path" : "Sources/RxBlocking",
      "product_memberships" : [
        "RxBlocking",
        "RxBlocking-Dynamic"
      ],
      "sources" : [
        "AtomicInt.swift",
        "BlockingObservable+Operators.swift",
        "BlockingObservable.swift",
        "ObservableConvertibleType+Blocking.swift",
        "Platform.Darwin.swift",
        "Platform.Linux.swift",
        "RecursiveLock.swift",
        "Resources.swift",
        "RunLoopLock.swift"
      ],
      "target_dependencies" : [
        "RxSwift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Done.