Build Information
Successful build of RxSwift, reference main (5dd190
), with Swift 6.0 for Linux on 18 Feb 2025 16:03:06 UTC.
Swift 6 data race errors: 25
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-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
47 | if case .cancelled = termination {
48 | disposable.dispose()
| `- warning: capture of 'disposable' with non-sendable type 'any Disposable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
49 | }
50 | }
/host/spi-builder-workspace/Sources/RxSwift/Disposable.swift:10:17: note: protocol 'Disposable' does not conform to the 'Sendable' protocol
8 |
9 | /// Represents a disposable resource.
10 | public protocol Disposable {
| `- note: protocol 'Disposable' does not conform to the 'Sendable' protocol
11 | /// Dispose resource.
12 | func dispose()
/host/spi-builder-workspace/Sources/RxSwift/ObservableType+Extensions.swift:137:24: warning: static property '_defaultErrorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
135 |
136 | private static let lock = RecursiveLock()
137 | private static var _defaultErrorHandler: DefaultErrorHandler = { subscriptionCallStack, error in
| |- warning: static property '_defaultErrorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_defaultErrorHandler' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate '_defaultErrorHandler' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
138 | #if DEBUG
139 | let serializedCallStack = subscriptionCallStack.joined(separator: "\n")
/host/spi-builder-workspace/Sources/RxSwift/ObservableType+Extensions.swift:146:24: warning: static property '_customCaptureSubscriptionCallstack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
144 | #endif
145 | }
146 | private static var _customCaptureSubscriptionCallstack: CustomCaptureSubscriptionCallstack = {
| |- warning: static property '_customCaptureSubscriptionCallstack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_customCaptureSubscriptionCallstack' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate '_customCaptureSubscriptionCallstack' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
147 | #if DEBUG
148 | return Thread.callStackSymbols
/host/spi-builder-workspace/Sources/RxSwift/Rx.swift:140:23: warning: static property 'recordCallStackOnError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
138 |
139 | // Should capture call stack
140 | public static var recordCallStackOnError: Bool = false
| |- warning: static property 'recordCallStackOnError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'recordCallStackOnError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'recordCallStackOnError' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
141 |
142 | }
/host/spi-builder-workspace/Sources/RxSwift/OperationQueueScheduler.swift:39:16: warning: capture of 'cancel' with non-sendable type 'SingleAssignmentDisposable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
37 |
38 | let operation = BlockOperation {
39 | 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
40 | return
41 | }
/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/OperationQueueScheduler.swift:44: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
42 |
43 |
44 | 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'
45 | }
46 |
/host/spi-builder-workspace/Sources/RxSwift/OperationQueueScheduler.swift:44:41: warning: capture of 'state' with non-sendable type 'StateType' in a `@Sendable` closure; this is an error in the Swift 6 language mode
33 | - returns: The disposable object used to cancel the scheduled action (best effort).
34 | */
35 | public func schedule<StateType>(_ state: StateType, action: @escaping (StateType) -> Disposable) -> Disposable {
| `- note: consider making generic parameter 'StateType' conform to the 'Sendable' protocol
36 | let cancel = SingleAssignmentDisposable()
37 |
:
42 |
43 |
44 | 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
45 | }
46 |
/host/spi-builder-workspace/Sources/RxSwift/Observable+Concurrency.swift:32:49: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
30 | var isFinished = false
31 | let disposable = asObservable().subscribe(
32 | onNext: { value in continuation.yield(value) },
| |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
33 | onError: { error in
34 | isFinished = true
/host/spi-builder-workspace/Sources/RxSwift/Observable+Concurrency.swift:63:29: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
61 | func asObservable() -> Observable<Element> {
62 | Observable.create { observer in
63 | let task = Task {
| `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
64 | do {
65 | for try await value in self {
| `- note: closure captures non-Sendable 'self'
66 | observer.onNext(value)
| `- note: closure captures non-Sendable 'observer'
67 | }
68 |
[172/188] Compiling RxSwift PrimitiveSequence.swift
/host/spi-builder-workspace/Sources/RxSwift/NopDisposable.swift:14:28: warning: static property 'noOp' is not concurrency-safe because non-'Sendable' type 'any Disposable' may have shared mutable state; this is an error in the Swift 6 language mode
12 | private struct NopDisposable : Disposable {
13 |
14 | fileprivate static let noOp: Disposable = NopDisposable()
| |- warning: static property 'noOp' is not concurrency-safe because non-'Sendable' type 'any Disposable' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'noOp' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | private init() {
/host/spi-builder-workspace/Sources/RxSwift/Disposable.swift:10:17: note: protocol 'Disposable' does not conform to the 'Sendable' protocol
8 |
9 | /// Represents a disposable resource.
10 | public protocol Disposable {
| `- note: protocol 'Disposable' does not conform to the 'Sendable' protocol
11 | /// Dispose resource.
12 | func dispose()
/host/spi-builder-workspace/Sources/RxSwift/Observable+Concurrency.swift:48:21: warning: capture of 'disposable' with non-sendable type 'any Disposable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
46 | continuation.onTermination = { @Sendable termination in
47 | if case .cancelled = termination {
48 | disposable.dispose()
| `- warning: capture of 'disposable' with non-sendable type 'any Disposable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
49 | }
50 | }
/host/spi-builder-workspace/Sources/RxSwift/Disposable.swift:10:17: note: protocol 'Disposable' does not conform to the 'Sendable' protocol
8 |
9 | /// Represents a disposable resource.
10 | public protocol Disposable {
| `- note: protocol 'Disposable' does not conform to the 'Sendable' protocol
11 | /// Dispose resource.
12 | func dispose()
/host/spi-builder-workspace/Sources/RxSwift/ObservableType+Extensions.swift:137:24: warning: static property '_defaultErrorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
135 |
136 | private static let lock = RecursiveLock()
137 | private static var _defaultErrorHandler: DefaultErrorHandler = { subscriptionCallStack, error in
| |- warning: static property '_defaultErrorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_defaultErrorHandler' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate '_defaultErrorHandler' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
138 | #if DEBUG
139 | let serializedCallStack = subscriptionCallStack.joined(separator: "\n")
/host/spi-builder-workspace/Sources/RxSwift/ObservableType+Extensions.swift:146:24: warning: static property '_customCaptureSubscriptionCallstack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
144 | #endif
145 | }
146 | private static var _customCaptureSubscriptionCallstack: CustomCaptureSubscriptionCallstack = {
| |- warning: static property '_customCaptureSubscriptionCallstack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_customCaptureSubscriptionCallstack' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate '_customCaptureSubscriptionCallstack' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
147 | #if DEBUG
148 | return Thread.callStackSymbols
/host/spi-builder-workspace/Sources/RxSwift/Rx.swift:140:23: warning: static property 'recordCallStackOnError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
138 |
139 | // Should capture call stack
140 | public static var recordCallStackOnError: Bool = false
| |- warning: static property 'recordCallStackOnError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'recordCallStackOnError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'recordCallStackOnError' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
141 |
142 | }
/host/spi-builder-workspace/Sources/RxSwift/OperationQueueScheduler.swift:39:16: warning: capture of 'cancel' with non-sendable type 'SingleAssignmentDisposable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
37 |
38 | let operation = BlockOperation {
39 | 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
40 | return
41 | }
/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/OperationQueueScheduler.swift:44: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
42 |
43 |
44 | 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'
45 | }
46 |
/host/spi-builder-workspace/Sources/RxSwift/OperationQueueScheduler.swift:44:41: warning: capture of 'state' with non-sendable type 'StateType' in a `@Sendable` closure; this is an error in the Swift 6 language mode
33 | - returns: The disposable object used to cancel the scheduled action (best effort).
34 | */
35 | public func schedule<StateType>(_ state: StateType, action: @escaping (StateType) -> Disposable) -> Disposable {
| `- note: consider making generic parameter 'StateType' conform to the 'Sendable' protocol
36 | let cancel = SingleAssignmentDisposable()
37 |
:
42 |
43 |
44 | 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
45 | }
46 |
/host/spi-builder-workspace/Sources/RxSwift/Observable+Concurrency.swift:32:49: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
30 | var isFinished = false
31 | let disposable = asObservable().subscribe(
32 | onNext: { value in continuation.yield(value) },
| |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
33 | onError: { error in
34 | isFinished = true
/host/spi-builder-workspace/Sources/RxSwift/Observable+Concurrency.swift:63:29: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
61 | func asObservable() -> Observable<Element> {
62 | Observable.create { observer in
63 | let task = Task {
| `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
64 | do {
65 | for try await value in self {
| `- note: closure captures non-Sendable 'self'
66 | observer.onNext(value)
| `- note: closure captures non-Sendable 'observer'
67 | }
68 |
[173/188] Compiling RxSwift PriorityQueue.swift
/host/spi-builder-workspace/Sources/RxSwift/NopDisposable.swift:14:28: warning: static property 'noOp' is not concurrency-safe because non-'Sendable' type 'any Disposable' may have shared mutable state; this is an error in the Swift 6 language mode
12 | private struct NopDisposable : Disposable {
13 |
14 | fileprivate static let noOp: Disposable = NopDisposable()
| |- warning: static property 'noOp' is not concurrency-safe because non-'Sendable' type 'any Disposable' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'noOp' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | private init() {
/host/spi-builder-workspace/Sources/RxSwift/Disposable.swift:10:17: note: protocol 'Disposable' does not conform to the 'Sendable' protocol
8 |
9 | /// Represents a disposable resource.
10 | public protocol Disposable {
| `- note: protocol 'Disposable' does not conform to the 'Sendable' protocol
11 | /// Dispose resource.
12 | func dispose()
/host/spi-builder-workspace/Sources/RxSwift/Observable+Concurrency.swift:48:21: warning: capture of 'disposable' with non-sendable type 'any Disposable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
46 | continuation.onTermination = { @Sendable termination in
47 | if case .cancelled = termination {
48 | disposable.dispose()
| `- warning: capture of 'disposable' with non-sendable type 'any Disposable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
49 | }
50 | }
/host/spi-builder-workspace/Sources/RxSwift/Disposable.swift:10:17: note: protocol 'Disposable' does not conform to the 'Sendable' protocol
8 |
9 | /// Represents a disposable resource.
10 | public protocol Disposable {
| `- note: protocol 'Disposable' does not conform to the 'Sendable' protocol
11 | /// Dispose resource.
12 | func dispose()
/host/spi-builder-workspace/Sources/RxSwift/ObservableType+Extensions.swift:137:24: warning: static property '_defaultErrorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
135 |
136 | private static let lock = RecursiveLock()
137 | private static var _defaultErrorHandler: DefaultErrorHandler = { subscriptionCallStack, error in
| |- warning: static property '_defaultErrorHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_defaultErrorHandler' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate '_defaultErrorHandler' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
138 | #if DEBUG
139 | let serializedCallStack = subscriptionCallStack.joined(separator: "\n")
/host/spi-builder-workspace/Sources/RxSwift/ObservableType+Extensions.swift:146:24: warning: static property '_customCaptureSubscriptionCallstack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
144 | #endif
145 | }
146 | private static var _customCaptureSubscriptionCallstack: CustomCaptureSubscriptionCallstack = {
| |- warning: static property '_customCaptureSubscriptionCallstack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_customCaptureSubscriptionCallstack' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate '_customCaptureSubscriptionCallstack' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
147 | #if DEBUG
148 | return Thread.callStackSymbols
/host/spi-builder-workspace/Sources/RxSwift/Rx.swift:140:23: warning: static property 'recordCallStackOnError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
138 |
139 | // Should capture call stack
140 | public static var recordCallStackOnError: Bool = false
| |- warning: static property 'recordCallStackOnError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'recordCallStackOnError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'recordCallStackOnError' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
141 |
142 | }
/host/spi-builder-workspace/Sources/RxSwift/OperationQueueScheduler.swift:39:16: warning: capture of 'cancel' with non-sendable type 'SingleAssignmentDisposable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
37 |
38 | let operation = BlockOperation {
39 | 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
40 | return
41 | }
/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/OperationQueueScheduler.swift:44: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
42 |
43 |
44 | 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'
45 | }
46 |
/host/spi-builder-workspace/Sources/RxSwift/OperationQueueScheduler.swift:44:41: warning: capture of 'state' with non-sendable type 'StateType' in a `@Sendable` closure; this is an error in the Swift 6 language mode
33 | - returns: The disposable object used to cancel the scheduled action (best effort).
34 | */
35 | public func schedule<StateType>(_ state: StateType, action: @escaping (StateType) -> Disposable) -> Disposable {
| `- note: consider making generic parameter 'StateType' conform to the 'Sendable' protocol
36 | let cancel = SingleAssignmentDisposable()
37 |
:
42 |
43 |
44 | 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
45 | }
46 |
/host/spi-builder-workspace/Sources/RxSwift/Observable+Concurrency.swift:32:49: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
30 | var isFinished = false
31 | let disposable = asObservable().subscribe(
32 | onNext: { value in continuation.yield(value) },
| |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
33 | onError: { error in
34 | isFinished = true
/host/spi-builder-workspace/Sources/RxSwift/Observable+Concurrency.swift:63:29: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
61 | func asObservable() -> Observable<Element> {
62 | Observable.create { observer in
63 | let task = Task {
| `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
64 | do {
65 | for try await value in self {
| `- note: closure captures non-Sendable 'self'
66 | observer.onNext(value)
| `- note: closure captures non-Sendable 'observer'
67 | }
68 |
[174/189] Wrapping AST for RxSwift for debugging
[175/189] Write Objects.LinkFileList
[177/219] Compiling RxRelay resource_bundle_accessor.swift
[178/219] Compiling RxBlocking RecursiveLock.swift
[179/220] Compiling RxBlocking Resources.swift
[180/220] Compiling RxTest TestableObserver.swift
[181/221] Compiling RxRelay Utils.swift
[182/221] Emitting module RxRelay
[183/221] Compiling RxBlocking BlockingObservable.swift
[184/221] Compiling RxRelay ReplayRelay.swift
[185/221] Compiling RxRelay PublishRelay.swift
[186/221] Compiling RxTest TestSchedulerVirtualTimeConverter.swift
[187/221] Compiling RxTest TestableObservable.swift
[188/221] Compiling RxBlocking Platform.Darwin.swift
[189/221] Compiling RxBlocking ObservableConvertibleType+Blocking.swift
[190/221] Compiling RxBlocking Platform.Linux.swift
[191/221] Compiling RxTest Recorded.swift
[192/221] Compiling RxTest RxTest.swift
[193/221] Compiling RxTest Subscription.swift
[194/221] Compiling RxTest TestScheduler.swift
[195/221] Compiling RxRelay BehaviorRelay.swift
[196/221] Compiling RxRelay Observable+Bind.swift
[197/222] Linking libRxSwift-Dynamic.so
[199/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: annotate 'runLoopModeRaw' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | #else
18 | let runLoopMode: CFRunLoopMode = CFRunLoopMode.defaultMode
[200/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: annotate 'runLoopModeRaw' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | #else
18 | let runLoopMode: CFRunLoopMode = CFRunLoopMode.defaultMode
[201/222] Compiling RxBlocking AtomicInt.swift
[202/222] Compiling RxBlocking BlockingObservable+Operators.swift
[203/223] Compiling RxTest HotObservable.swift
[204/223] Compiling RxTest Recorded+Event.swift
[204/223] Wrapping AST for RxRelay for debugging
[205/223] Write Objects.LinkFileList
[209/223] Emitting module RxTest
[210/223] Compiling RxTest ColdObservable.swift
[211/223] Compiling RxTest Event+Equatable.swift
[212/223] Wrapping AST for RxBlocking for debugging
[213/223] Write Objects.LinkFileList
[215/308] Compiling RxTest XCTest+Rx.swift
[215/309] Linking libRxRelay-Dynamic.so
[218/309] Compiling RxCocoa UIButton+Rx.swift
[219/309] Compiling RxCocoa UICollectionView+Rx.swift
[220/309] Compiling RxCocoa UIControl+Rx.swift
[221/309] Compiling RxCocoa UIDatePicker+Rx.swift
[222/309] Compiling RxCocoa UIGestureRecognizer+Rx.swift
[223/309] Compiling RxCocoa UINavigationController+Rx.swift
[224/309] Compiling RxCocoa UIPickerView+Rx.swift
[225/309] Compiling RxCocoa UIRefreshControl+Rx.swift
[226/309] Compiling RxCocoa UIScrollView+Rx.swift
[227/309] Compiling RxCocoa UISearchBar+Rx.swift
[228/309] Compiling RxCocoa UISearchController+Rx.swift
[229/309] Compiling RxCocoa UISegmentedControl+Rx.swift
[229/320] Wrapping AST for RxTest for debugging
[230/320] Write Objects.LinkFileList
[232/320] Compiling RxCocoa RxCollectionViewDataSourcePrefetchingProxy.swift
[233/320] Compiling RxCocoa RxCollectionViewDataSourceProxy.swift
[234/320] Compiling RxCocoa RxCollectionViewDataSourceType.swift
[235/320] Compiling RxCocoa RxCollectionViewDelegateProxy.swift
[236/320] Compiling RxCocoa RxCollectionViewReactiveArrayDataSource.swift
[237/320] Compiling RxCocoa RxNavigationControllerDelegateProxy.swift
[238/320] Compiling RxCocoa RxPickerViewAdapter.swift
[239/320] Compiling RxCocoa RxPickerViewDataSourceProxy.swift
[240/320] Compiling RxCocoa RxPickerViewDataSourceType.swift
[241/320] Compiling RxCocoa RxPickerViewDelegateProxy.swift
[242/320] Compiling RxCocoa RxScrollViewDelegateProxy.swift
[243/320] Compiling RxCocoa RxSearchBarDelegateProxy.swift
[244/320] Compiling RxCocoa Infallible+Bind.swift
[245/320] Compiling RxCocoa Infallible+Driver.swift
[246/320] Compiling RxCocoa ItemEvents.swift
[247/320] Compiling RxCocoa KVORepresentable+CoreGraphics.swift
[248/320] Compiling RxCocoa KVORepresentable+Swift.swift
[249/320] Compiling RxCocoa KVORepresentable.swift
[250/320] Compiling RxCocoa NSButton+Rx.swift
[251/320] Compiling RxCocoa NSControl+Rx.swift
[252/320] Compiling RxCocoa NSObject+Rx+KVORepresentable.swift
[253/320] Compiling RxCocoa NSObject+Rx+RawRepresentable.swift
[254/320] Compiling RxCocoa NSObject+Rx.swift
[255/320] Compiling RxCocoa NSSlider+Rx.swift
[255/320] Linking libRxBlocking-Dynamic.so
[257/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: annotate 'token' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'make' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'shouldLogRequest' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 | #if DEBUG
235 | return true
[258/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 |
[259/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 |
[260/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 |
[261/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 |
[262/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 |
[263/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 |
[264/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 |
[265/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 |
[266/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 |
[267/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 |
[268/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 |
[269/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 |
[270/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: annotate 'token' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | let key = DispatchSpecificKey<()>()
14 | DispatchQueue.main.setSpecific(key: key, value: ())
/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: annotate 'make' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | /**
[271/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: annotate 'token' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | let key = DispatchSpecificKey<()>()
14 | DispatchQueue.main.setSpecific(key: key, value: ())
/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: annotate 'make' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | /**
[272/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: annotate 'token' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | let key = DispatchSpecificKey<()>()
14 | DispatchQueue.main.setSpecific(key: key, value: ())
/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: annotate 'make' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | /**
[273/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: annotate 'token' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | let key = DispatchSpecificKey<()>()
14 | DispatchQueue.main.setSpecific(key: key, value: ())
/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: annotate 'make' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | /**
[274/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: annotate 'token' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | let key = DispatchSpecificKey<()>()
14 | DispatchQueue.main.setSpecific(key: key, value: ())
/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: annotate 'make' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | /**
[275/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: annotate 'token' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | let key = DispatchSpecificKey<()>()
14 | DispatchQueue.main.setSpecific(key: key, value: ())
/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: annotate 'make' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | /**
[276/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: annotate 'token' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | let key = DispatchSpecificKey<()>()
14 | DispatchQueue.main.setSpecific(key: key, value: ())
/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: annotate 'make' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | /**
[277/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: annotate 'token' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | let key = DispatchSpecificKey<()>()
14 | DispatchQueue.main.setSpecific(key: key, value: ())
/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: annotate 'make' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | /**
[278/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: annotate 'token' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | let key = DispatchSpecificKey<()>()
14 | DispatchQueue.main.setSpecific(key: key, value: ())
/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: annotate 'make' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | /**
[279/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: annotate 'token' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | let key = DispatchSpecificKey<()>()
14 | DispatchQueue.main.setSpecific(key: key, value: ())
/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: annotate 'make' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | /**
[280/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: annotate 'token' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | let key = DispatchSpecificKey<()>()
14 | DispatchQueue.main.setSpecific(key: key, value: ())
/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: annotate 'make' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | /**
[281/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: annotate 'token' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | let key = DispatchSpecificKey<()>()
14 | DispatchQueue.main.setSpecific(key: key, value: ())
/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: annotate 'make' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | /**
[281/320] Linking libRxTest-Dynamic.so
[283/320] Compiling RxCocoa UISlider+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 | /// Log URL requests to standard output in curl format.
233 | public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
| |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'shouldLogRequest' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 | #if DEBUG
235 | return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
135 |
136 | guard let response = response, let data = data else {
137 | observer.on(.error(error ?? RxCocoaURLError.unknown))
| `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 | return
139 | }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
| `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 | /// Anonymous event handler type.
14 | public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
8 |
9 | import Foundation
10 | import RxSwift
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | #if canImport(FoundationNetworking)
[284/320] Compiling RxCocoa UIStepper+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 | /// Log URL requests to standard output in curl format.
233 | public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
| |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'shouldLogRequest' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 | #if DEBUG
235 | return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
135 |
136 | guard let response = response, let data = data else {
137 | observer.on(.error(error ?? RxCocoaURLError.unknown))
| `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 | return
139 | }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
| `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 | /// Anonymous event handler type.
14 | public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
8 |
9 | import Foundation
10 | import RxSwift
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | #if canImport(FoundationNetworking)
[285/320] Compiling RxCocoa UISwitch+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 | /// Log URL requests to standard output in curl format.
233 | public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
| |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'shouldLogRequest' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 | #if DEBUG
235 | return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
135 |
136 | guard let response = response, let data = data else {
137 | observer.on(.error(error ?? RxCocoaURLError.unknown))
| `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 | return
139 | }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
| `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 | /// Anonymous event handler type.
14 | public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
8 |
9 | import Foundation
10 | import RxSwift
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | #if canImport(FoundationNetworking)
[286/320] Compiling RxCocoa UITabBar+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 | /// Log URL requests to standard output in curl format.
233 | public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
| |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'shouldLogRequest' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 | #if DEBUG
235 | return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
135 |
136 | guard let response = response, let data = data else {
137 | observer.on(.error(error ?? RxCocoaURLError.unknown))
| `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 | return
139 | }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
| `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 | /// Anonymous event handler type.
14 | public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
8 |
9 | import Foundation
10 | import RxSwift
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | #if canImport(FoundationNetworking)
[287/320] Compiling RxCocoa UITabBarController+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 | /// Log URL requests to standard output in curl format.
233 | public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
| |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'shouldLogRequest' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 | #if DEBUG
235 | return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
135 |
136 | guard let response = response, let data = data else {
137 | observer.on(.error(error ?? RxCocoaURLError.unknown))
| `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 | return
139 | }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
| `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 | /// Anonymous event handler type.
14 | public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
8 |
9 | import Foundation
10 | import RxSwift
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | #if canImport(FoundationNetworking)
[288/320] Compiling RxCocoa UITableView+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 | /// Log URL requests to standard output in curl format.
233 | public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
| |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'shouldLogRequest' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 | #if DEBUG
235 | return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
135 |
136 | guard let response = response, let data = data else {
137 | observer.on(.error(error ?? RxCocoaURLError.unknown))
| `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 | return
139 | }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
| `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 | /// Anonymous event handler type.
14 | public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
8 |
9 | import Foundation
10 | import RxSwift
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | #if canImport(FoundationNetworking)
[289/320] Compiling RxCocoa UITextField+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 | /// Log URL requests to standard output in curl format.
233 | public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
| |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'shouldLogRequest' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 | #if DEBUG
235 | return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
135 |
136 | guard let response = response, let data = data else {
137 | observer.on(.error(error ?? RxCocoaURLError.unknown))
| `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 | return
139 | }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
| `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 | /// Anonymous event handler type.
14 | public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
8 |
9 | import Foundation
10 | import RxSwift
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | #if canImport(FoundationNetworking)
[290/320] Compiling RxCocoa UITextView+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 | /// Log URL requests to standard output in curl format.
233 | public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
| |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'shouldLogRequest' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 | #if DEBUG
235 | return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
135 |
136 | guard let response = response, let data = data else {
137 | observer.on(.error(error ?? RxCocoaURLError.unknown))
| `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 | return
139 | }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
| `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 | /// Anonymous event handler type.
14 | public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
8 |
9 | import Foundation
10 | import RxSwift
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | #if canImport(FoundationNetworking)
[291/320] Compiling RxCocoa URLSession+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 | /// Log URL requests to standard output in curl format.
233 | public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
| |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'shouldLogRequest' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 | #if DEBUG
235 | return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
135 |
136 | guard let response = response, let data = data else {
137 | observer.on(.error(error ?? RxCocoaURLError.unknown))
| `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 | return
139 | }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
| `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 | /// Anonymous event handler type.
14 | public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
8 |
9 | import Foundation
10 | import RxSwift
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | #if canImport(FoundationNetworking)
[292/320] Compiling RxCocoa WKWebView+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 | /// Log URL requests to standard output in curl format.
233 | public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
| |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'shouldLogRequest' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 | #if DEBUG
235 | return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
135 |
136 | guard let response = response, let data = data else {
137 | observer.on(.error(error ?? RxCocoaURLError.unknown))
| `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 | return
139 | }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
| `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 | /// Anonymous event handler type.
14 | public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
8 |
9 | import Foundation
10 | import RxSwift
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | #if canImport(FoundationNetworking)
[293/320] Compiling RxCocoa resource_bundle_accessor.swift
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:233:23: warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
231 | extension Reactive where Base == URLSession {
232 | /// Log URL requests to standard output in curl format.
233 | public static var shouldLogRequest: (URLRequest) -> Bool = { _ in
| |- warning: static property 'shouldLogRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shouldLogRequest' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'shouldLogRequest' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 | #if DEBUG
235 | return true
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:137:21: warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
135 |
136 | guard let response = response, let data = data else {
137 | observer.on(.error(error ?? RxCocoaURLError.unknown))
| `- warning: capture of 'observer' with non-sendable type 'AnyObserver<(response: HTTPURLResponse, data: Data)>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 | return
139 | }
/host/spi-builder-workspace/Sources/RxSwift/AnyObserver.swift:12:15: note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
10 | ///
11 | /// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type.
12 | public struct AnyObserver<Element> : ObserverType {
| `- note: generic struct 'AnyObserver' does not conform to the 'Sendable' protocol
13 | /// Anonymous event handler type.
14 | public typealias EventHandler = (Event<Element>) -> Void
/host/spi-builder-workspace/Sources/RxCocoa/URLSession+Rx.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
8 |
9 | import Foundation
10 | import RxSwift
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RxSwift'
11 |
12 | #if canImport(FoundationNetworking)
[294/320] Compiling RxCocoa RxSearchControllerDelegateProxy.swift
[295/320] Compiling RxCocoa RxTabBarControllerDelegateProxy.swift
[296/320] Compiling RxCocoa RxTabBarDelegateProxy.swift
[297/320] Compiling RxCocoa RxTableViewDataSourcePrefetchingProxy.swift
[298/320] Compiling RxCocoa RxTableViewDataSourceProxy.swift
[299/320] Compiling RxCocoa RxTableViewDataSourceType.swift
[300/320] Compiling RxCocoa RxTableViewDelegateProxy.swift
[301/320] Compiling RxCocoa RxTableViewReactiveArrayDataSource.swift
[302/320] Compiling RxCocoa RxTarget.swift
[303/320] Compiling RxCocoa RxTextStorageDelegateProxy.swift
[304/320] Compiling RxCocoa RxTextViewDelegateProxy.swift
[305/320] Compiling RxCocoa RxWKNavigationDelegateProxy.swift
[306/320] Compiling RxCocoa SchedulerType+SharedSequence.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 | /// Default scheduler used in SharedSequence based traits.
13 | public private(set) static var make: () -> SchedulerType = { MainScheduler() }
| |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'make' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | /**
[307/320] Compiling RxCocoa SectionedViewDataSourceType.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 | /// Default scheduler used in SharedSequence based traits.
13 | public private(set) static var make: () -> SchedulerType = { MainScheduler() }
| |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'make' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | /**
[308/320] Compiling RxCocoa SharedSequence+Concurrency.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 | /// Default scheduler used in SharedSequence based traits.
13 | public private(set) static var make: () -> SchedulerType = { MainScheduler() }
| |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'make' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | /**
[309/320] Compiling RxCocoa SharedSequence+Operators+arity.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 | /// Default scheduler used in SharedSequence based traits.
13 | public private(set) static var make: () -> SchedulerType = { MainScheduler() }
| |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'make' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | /**
[310/320] Compiling RxCocoa SharedSequence+Operators.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 | /// Default scheduler used in SharedSequence based traits.
13 | public private(set) static var make: () -> SchedulerType = { MainScheduler() }
| |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'make' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | /**
[311/320] Compiling RxCocoa SharedSequence.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 | /// Default scheduler used in SharedSequence based traits.
13 | public private(set) static var make: () -> SchedulerType = { MainScheduler() }
| |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'make' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | /**
[312/320] Compiling RxCocoa Signal+Subscription.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 | /// Default scheduler used in SharedSequence based traits.
13 | public private(set) static var make: () -> SchedulerType = { MainScheduler() }
| |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'make' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | /**
[313/320] Compiling RxCocoa Signal.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 | /// Default scheduler used in SharedSequence based traits.
13 | public private(set) static var make: () -> SchedulerType = { MainScheduler() }
| |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'make' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | /**
[314/320] Compiling RxCocoa TextInput.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 | /// Default scheduler used in SharedSequence based traits.
13 | public private(set) static var make: () -> SchedulerType = { MainScheduler() }
| |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'make' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | /**
[315/320] Compiling RxCocoa UIActivityIndicatorView+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 | /// Default scheduler used in SharedSequence based traits.
13 | public private(set) static var make: () -> SchedulerType = { MainScheduler() }
| |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'make' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | /**
[316/320] Compiling RxCocoa UIApplication+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 | /// Default scheduler used in SharedSequence based traits.
13 | public private(set) static var make: () -> SchedulerType = { MainScheduler() }
| |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'make' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | /**
[317/320] Compiling RxCocoa UIBarButtonItem+Rx.swift
/host/spi-builder-workspace/Sources/RxCocoa/SchedulerType+SharedSequence.swift:13:36: warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum SharingScheduler {
12 | /// Default scheduler used in SharedSequence based traits.
13 | public private(set) static var make: () -> SchedulerType = { MainScheduler() }
| |- warning: static property 'make' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'make' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'make' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | /**
[318/321] Wrapping AST for RxCocoa for debugging
[319/321] Write Objects.LinkFileList
[320/321] Linking libRxCocoa-Dynamic.so
Build complete! (37.03s)
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.0-latest: Pulling from finestructure/spi-images
Digest: sha256:081dcf4fb829aea9d08447f4790431afbdfbcc335bfeed728ca69c6f181ae2aa
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.