The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of RxSwift, reference 6.9.1 (5004a1), with Swift 6.1 for Linux on 25 Oct 2025 08:43:49 UTC.

Swift 6 data race errors: 25

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" 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

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/DispatchQueueConfiguration.swift:27: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
25 |
26 |
27 |             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'
28 |         }
29 |
/host/spi-builder-workspace/Sources/RxSwift/DispatchQueueConfiguration.swift:27:41: warning: capture of 'state' with non-sendable type 'StateType' in a '@Sendable' closure; this is an error in the Swift 6 language mode
16 |
17 | extension DispatchQueueConfiguration {
18 |     func schedule<StateType>(_ state: StateType, action: @escaping (StateType) -> Disposable) -> Disposable {
   |                   `- note: consider making generic parameter 'StateType' conform to the 'Sendable' protocol
19 |         let cancel = SingleAssignmentDisposable()
20 |
   :
25 |
26 |
27 |             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
28 |         }
29 |
/host/spi-builder-workspace/Sources/RxSwift/Errors.swift:19:10: warning: associated value 'disposed(object:)' of 'Sendable'-conforming enum 'RxError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
17 |     case unknown
18 |     /// Performing an action on disposed object.
19 |     case disposed(object: AnyObject)
   |          `- warning: associated value 'disposed(object:)' of 'Sendable'-conforming enum 'RxError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
20 |     /// Arithmetic overflow error.
21 |     case overflow
[148/188] Compiling RxSwift Generate.swift
/host/spi-builder-workspace/Sources/RxSwift/DispatchQueueConfiguration.swift:22:16: warning: capture of 'cancel' with non-sendable type 'SingleAssignmentDisposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
20 |
21 |         self.queue.async {
22 |             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
23 |                 return
24 |             }
/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/DispatchQueueConfiguration.swift:27: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
25 |
26 |
27 |             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'
28 |         }
29 |
/host/spi-builder-workspace/Sources/RxSwift/DispatchQueueConfiguration.swift:27:41: warning: capture of 'state' with non-sendable type 'StateType' in a '@Sendable' closure; this is an error in the Swift 6 language mode
16 |
17 | extension DispatchQueueConfiguration {
18 |     func schedule<StateType>(_ state: StateType, action: @escaping (StateType) -> Disposable) -> Disposable {
   |                   `- note: consider making generic parameter 'StateType' conform to the 'Sendable' protocol
19 |         let cancel = SingleAssignmentDisposable()
20 |
   :
25 |
26 |
27 |             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
28 |         }
29 |
/host/spi-builder-workspace/Sources/RxSwift/Errors.swift:19:10: warning: associated value 'disposed(object:)' of 'Sendable'-conforming enum 'RxError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
17 |     case unknown
18 |     /// Performing an action on disposed object.
19 |     case disposed(object: AnyObject)
   |          `- warning: associated value 'disposed(object:)' of 'Sendable'-conforming enum 'RxError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
20 |     /// Arithmetic overflow error.
21 |     case overflow
[149/188] Compiling RxSwift GroupBy.swift
/host/spi-builder-workspace/Sources/RxSwift/DispatchQueueConfiguration.swift:22:16: warning: capture of 'cancel' with non-sendable type 'SingleAssignmentDisposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
20 |
21 |         self.queue.async {
22 |             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
23 |                 return
24 |             }
/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/DispatchQueueConfiguration.swift:27: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
25 |
26 |
27 |             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'
28 |         }
29 |
/host/spi-builder-workspace/Sources/RxSwift/DispatchQueueConfiguration.swift:27:41: warning: capture of 'state' with non-sendable type 'StateType' in a '@Sendable' closure; this is an error in the Swift 6 language mode
16 |
17 | extension DispatchQueueConfiguration {
18 |     func schedule<StateType>(_ state: StateType, action: @escaping (StateType) -> Disposable) -> Disposable {
   |                   `- note: consider making generic parameter 'StateType' conform to the 'Sendable' protocol
19 |         let cancel = SingleAssignmentDisposable()
20 |
   :
25 |
26 |
27 |             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
28 |         }
29 |
/host/spi-builder-workspace/Sources/RxSwift/Errors.swift:19:10: warning: associated value 'disposed(object:)' of 'Sendable'-conforming enum 'RxError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
17 |     case unknown
18 |     /// Performing an action on disposed object.
19 |     case disposed(object: AnyObject)
   |          `- warning: associated value 'disposed(object:)' of 'Sendable'-conforming enum 'RxError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
20 |     /// Arithmetic overflow error.
21 |     case overflow
[150/188] Compiling RxSwift GroupedObservable.swift
/host/spi-builder-workspace/Sources/RxSwift/DispatchQueueConfiguration.swift:22:16: warning: capture of 'cancel' with non-sendable type 'SingleAssignmentDisposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
20 |
21 |         self.queue.async {
22 |             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
23 |                 return
24 |             }
/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/DispatchQueueConfiguration.swift:27: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
25 |
26 |
27 |             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'
28 |         }
29 |
/host/spi-builder-workspace/Sources/RxSwift/DispatchQueueConfiguration.swift:27:41: warning: capture of 'state' with non-sendable type 'StateType' in a '@Sendable' closure; this is an error in the Swift 6 language mode
16 |
17 | extension DispatchQueueConfiguration {
18 |     func schedule<StateType>(_ state: StateType, action: @escaping (StateType) -> Disposable) -> Disposable {
   |                   `- note: consider making generic parameter 'StateType' conform to the 'Sendable' protocol
19 |         let cancel = SingleAssignmentDisposable()
20 |
   :
25 |
26 |
27 |             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
28 |         }
29 |
/host/spi-builder-workspace/Sources/RxSwift/Errors.swift:19:10: warning: associated value 'disposed(object:)' of 'Sendable'-conforming enum 'RxError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
17 |     case unknown
18 |     /// Performing an action on disposed object.
19 |     case disposed(object: AnyObject)
   |          `- warning: associated value 'disposed(object:)' of 'Sendable'-conforming enum 'RxError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
20 |     /// Arithmetic overflow error.
21 |     case overflow
[151/188] Compiling RxSwift HistoricalScheduler.swift
/host/spi-builder-workspace/Sources/RxSwift/DispatchQueueConfiguration.swift:22:16: warning: capture of 'cancel' with non-sendable type 'SingleAssignmentDisposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
20 |
21 |         self.queue.async {
22 |             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
23 |                 return
24 |             }
/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/DispatchQueueConfiguration.swift:27: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
25 |
26 |
27 |             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'
28 |         }
29 |
/host/spi-builder-workspace/Sources/RxSwift/DispatchQueueConfiguration.swift:27:41: warning: capture of 'state' with non-sendable type 'StateType' in a '@Sendable' closure; this is an error in the Swift 6 language mode
16 |
17 | extension DispatchQueueConfiguration {
18 |     func schedule<StateType>(_ state: StateType, action: @escaping (StateType) -> Disposable) -> Disposable {
   |                   `- note: consider making generic parameter 'StateType' conform to the 'Sendable' protocol
19 |         let cancel = SingleAssignmentDisposable()
20 |
   :
25 |
26 |
27 |             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
28 |         }
29 |
/host/spi-builder-workspace/Sources/RxSwift/Errors.swift:19:10: warning: associated value 'disposed(object:)' of 'Sendable'-conforming enum 'RxError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
17 |     case unknown
18 |     /// Performing an action on disposed object.
19 |     case disposed(object: AnyObject)
   |          `- warning: associated value 'disposed(object:)' of 'Sendable'-conforming enum 'RxError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
20 |     /// Arithmetic overflow error.
21 |     case overflow
[152/188] Compiling RxSwift HistoricalSchedulerTimeConverter.swift
/host/spi-builder-workspace/Sources/RxSwift/DispatchQueueConfiguration.swift:22:16: warning: capture of 'cancel' with non-sendable type 'SingleAssignmentDisposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
20 |
21 |         self.queue.async {
22 |             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
23 |                 return
24 |             }
/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/DispatchQueueConfiguration.swift:27: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
25 |
26 |
27 |             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'
28 |         }
29 |
/host/spi-builder-workspace/Sources/RxSwift/DispatchQueueConfiguration.swift:27:41: warning: capture of 'state' with non-sendable type 'StateType' in a '@Sendable' closure; this is an error in the Swift 6 language mode
16 |
17 | extension DispatchQueueConfiguration {
18 |     func schedule<StateType>(_ state: StateType, action: @escaping (StateType) -> Disposable) -> Disposable {
   |                   `- note: consider making generic parameter 'StateType' conform to the 'Sendable' protocol
19 |         let cancel = SingleAssignmentDisposable()
20 |
   :
25 |
26 |
27 |             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
28 |         }
29 |
/host/spi-builder-workspace/Sources/RxSwift/Errors.swift:19:10: warning: associated value 'disposed(object:)' of 'Sendable'-conforming enum 'RxError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
17 |     case unknown
18 |     /// Performing an action on disposed object.
19 |     case disposed(object: AnyObject)
   |          `- warning: associated value 'disposed(object:)' of 'Sendable'-conforming enum 'RxError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
20 |     /// Arithmetic overflow error.
21 |     case overflow
[153/188] Compiling RxSwift ImmediateSchedulerType.swift
/host/spi-builder-workspace/Sources/RxSwift/DispatchQueueConfiguration.swift:22:16: warning: capture of 'cancel' with non-sendable type 'SingleAssignmentDisposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
20 |
21 |         self.queue.async {
22 |             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
23 |                 return
24 |             }
/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/DispatchQueueConfiguration.swift:27: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
25 |
26 |
27 |             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'
28 |         }
29 |
/host/spi-builder-workspace/Sources/RxSwift/DispatchQueueConfiguration.swift:27:41: warning: capture of 'state' with non-sendable type 'StateType' in a '@Sendable' closure; this is an error in the Swift 6 language mode
16 |
17 | extension DispatchQueueConfiguration {
18 |     func schedule<StateType>(_ state: StateType, action: @escaping (StateType) -> Disposable) -> Disposable {
   |                   `- note: consider making generic parameter 'StateType' conform to the 'Sendable' protocol
19 |         let cancel = SingleAssignmentDisposable()
20 |
   :
25 |
26 |
27 |             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
28 |         }
29 |
/host/spi-builder-workspace/Sources/RxSwift/Errors.swift:19:10: warning: associated value 'disposed(object:)' of 'Sendable'-conforming enum 'RxError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
17 |     case unknown
18 |     /// Performing an action on disposed object.
19 |     case disposed(object: AnyObject)
   |          `- warning: associated value 'disposed(object:)' of 'Sendable'-conforming enum 'RxError' has non-sendable type 'AnyObject'; this is an error in the Swift 6 language mode
20 |     /// Arithmetic overflow error.
21 |     case overflow
[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/193] Wrapping AST for RxSwift for debugging
[175/194] Write Objects.LinkFileList
[177/219] Compiling RxBlocking RecursiveLock.swift
[178/219] Compiling RxRelay resource_bundle_accessor.swift
[179/220] Compiling RxBlocking BlockingObservable.swift
[180/220] Compiling RxBlocking Platform.Darwin.swift
[181/220] Compiling RxBlocking ObservableConvertibleType+Blocking.swift
[182/220] Compiling RxBlocking Platform.Linux.swift
[183/220] Compiling RxBlocking Resources.swift
[184/220] Compiling RxRelay ReplayRelay.swift
[185/220] Compiling RxRelay Utils.swift
[186/220] Emitting module RxTest
[187/220] Compiling RxRelay BehaviorRelay.swift
[188/220] Compiling RxTest Recorded.swift
[189/220] Compiling RxTest RxTest.swift
[190/220] Compiling RxTest TestableObserver.swift
[191/220] Compiling RxRelay Observable+Bind.swift
[192/221] Emitting module RxRelay
[193/221] Compiling RxRelay PublishRelay.swift
[194/222] Compiling RxTest TestSchedulerVirtualTimeConverter.swift
[195/222] Compiling RxTest TestableObservable.swift
[196/222] Compiling RxTest HotObservable.swift
[197/222] Compiling RxTest Recorded+Event.swift
[199/222] Compiling RxBlocking AtomicInt.swift
[200/222] Compiling RxBlocking BlockingObservable+Operators.swift
[201/222] Compiling RxTest Subscription.swift
[202/222] Compiling RxTest TestScheduler.swift
[203/222] Compiling RxTest Any+Equatable.swift
[204/222] Compiling RxTest Bag.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
[206/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
[208/222] Wrapping AST for RxRelay for debugging
[209/222] Write Objects.LinkFileList
[210/223] Linking libRxSwift-Dynamic.so
[213/308] Compiling RxTest XCTest+Rx.swift
[213/309] Wrapping AST for RxBlocking for debugging
[214/309] Write Objects.LinkFileList
[217/309] Compiling RxCocoa RxCollectionViewDataSourcePrefetchingProxy.swift
[218/309] Compiling RxCocoa RxCollectionViewDataSourceProxy.swift
[219/309] Compiling RxCocoa RxCollectionViewDataSourceType.swift
[220/309] Compiling RxCocoa RxCollectionViewDelegateProxy.swift
[221/309] Compiling RxCocoa RxCollectionViewReactiveArrayDataSource.swift
[222/309] Compiling RxCocoa RxNavigationControllerDelegateProxy.swift
[223/309] Compiling RxCocoa RxPickerViewAdapter.swift
[224/309] Compiling RxCocoa RxPickerViewDataSourceProxy.swift
[225/309] Compiling RxCocoa RxPickerViewDataSourceType.swift
[226/309] Compiling RxCocoa RxPickerViewDelegateProxy.swift
[227/309] Compiling RxCocoa RxScrollViewDelegateProxy.swift
[228/309] Compiling RxCocoa RxSearchBarDelegateProxy.swift
[228/320] Wrapping AST for RxTest for debugging
[229/320] Write Objects.LinkFileList
[230/320] Linking libRxRelay-Dynamic.so
[231/320] Linking libRxBlocking-Dynamic.so
[233/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 |
[234/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 |
[235/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 |
[236/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 |
[237/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 |
[238/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 |
[239/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 |
[240/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 |
[241/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 |
[242/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 |
[243/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 |
[244/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 |
[245/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: ())
[246/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: ())
[247/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: ())
[248/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: ())
[249/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: ())
[250/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: ())
[251/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: ())
[252/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: ())
[253/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: ())
[254/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: ())
[255/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: ())
[256/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: ())
[256/320] Linking libRxTest-Dynamic.so
[258/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)
[259/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)
[260/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)
[261/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)
[262/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)
[263/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)
[264/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)
[265/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)
[266/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)
[267/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)
[268/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)
[269/320] Compiling RxCocoa RxSearchControllerDelegateProxy.swift
[270/320] Compiling RxCocoa RxTabBarControllerDelegateProxy.swift
[271/320] Compiling RxCocoa RxTabBarDelegateProxy.swift
[272/320] Compiling RxCocoa RxTableViewDataSourcePrefetchingProxy.swift
[273/320] Compiling RxCocoa RxTableViewDataSourceProxy.swift
[274/320] Compiling RxCocoa RxTableViewDataSourceType.swift
[275/320] Compiling RxCocoa RxTableViewDelegateProxy.swift
[276/320] Compiling RxCocoa RxTableViewReactiveArrayDataSource.swift
[277/320] Compiling RxCocoa RxTarget.swift
[278/320] Compiling RxCocoa RxTextStorageDelegateProxy.swift
[279/320] Compiling RxCocoa RxTextViewDelegateProxy.swift
[280/320] Compiling RxCocoa RxWKNavigationDelegateProxy.swift
[281/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
[282/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 |     /**
[283/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 |     /**
[284/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 |     /**
[285/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 |     /**
[286/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 |     /**
[287/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 |     /**
[288/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 |     /**
[289/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 |     /**
[290/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 |     /**
[291/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 |     /**
[292/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 |     /**
[293/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 |     /**
[294/320] Compiling RxCocoa Infallible+Bind.swift
[295/320] Compiling RxCocoa Infallible+Driver.swift
[296/320] Compiling RxCocoa ItemEvents.swift
[297/320] Compiling RxCocoa KVORepresentable+CoreGraphics.swift
[298/320] Compiling RxCocoa KVORepresentable+Swift.swift
[299/320] Compiling RxCocoa KVORepresentable.swift
[300/320] Compiling RxCocoa NSButton+Rx.swift
[301/320] Compiling RxCocoa NSControl+Rx.swift
[302/320] Compiling RxCocoa NSObject+Rx+KVORepresentable.swift
[303/320] Compiling RxCocoa NSObject+Rx+RawRepresentable.swift
[304/320] Compiling RxCocoa NSObject+Rx.swift
[305/320] Compiling RxCocoa NSSlider+Rx.swift
[306/320] Compiling RxCocoa UIButton+Rx.swift
[307/320] Compiling RxCocoa UICollectionView+Rx.swift
[308/320] Compiling RxCocoa UIControl+Rx.swift
[309/320] Compiling RxCocoa UIDatePicker+Rx.swift
[310/320] Compiling RxCocoa UIGestureRecognizer+Rx.swift
[311/320] Compiling RxCocoa UINavigationController+Rx.swift
[312/320] Compiling RxCocoa UIPickerView+Rx.swift
[313/320] Compiling RxCocoa UIRefreshControl+Rx.swift
[314/320] Compiling RxCocoa UIScrollView+Rx.swift
[315/320] Compiling RxCocoa UISearchBar+Rx.swift
[316/320] Compiling RxCocoa UISearchController+Rx.swift
[317/320] Compiling RxCocoa UISegmentedControl+Rx.swift
[318/321] Wrapping AST for RxCocoa for debugging
[319/321] Write Objects.LinkFileList
[320/321] Linking libRxCocoa-Dynamic.so
Build complete! (32.37s)
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:808cb2b2a6cec76654a3acbd283c6c2205bc60d2b29562c95b9f5147612f6d32
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Done.