The Swift Package Index logo.Swift Package Index

Build Information

Successful build of ReactiveKit, reference v3.22.0 (5c61e0), with Swift 6.0 for Linux on 6 Nov 2025 14:51:19 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/DeclarativeHub/ReactiveKit.git
Reference: v3.22.0
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/DeclarativeHub/ReactiveKit
 * tag               v3.22.0    -> FETCH_HEAD
HEAD is now at 5c61e08 Merge pull request #286 from someyura/prepend-for-void-signals
Cloned https://github.com/DeclarativeHub/ReactiveKit.git
Revision (git rev-parse @):
5c61e0869cfaf8f9fcd17afecb8e6c721d153186
SUCCESS checkout https://github.com/DeclarativeHub/ReactiveKit.git at v3.22.0
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $PWD
https://github.com/DeclarativeHub/ReactiveKit.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:046a2cda21bb64b2d09e6d52c84584e938ec1698de194871f3d7088597b2bb28
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/41] Emitting module ReactiveKit
/host/spi-builder-workspace/Sources/Deallocatable.swift:22:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
20 | ///       view.display(number)
21 | ///     }
22 | public protocol Deallocatable: class {
   |                                `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
23 |
24 |     /// A signal that fires `completed` event when the receiver is deallocated.
/host/spi-builder-workspace/Sources/Deprecations.swift:216:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
214 |
215 |     @available(*, deprecated, renamed: "receive(event:)")
216 |     open func send(_ event: Event<Element, Error>) {
    |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
217 |         on(event)
218 |     }
/host/spi-builder-workspace/Sources/LoadingSignal.swift:356:39: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
354 |
355 | /// A consumer of ObservedLoadingState. For example, a view what updates its appearance based on loading state.
356 | public protocol LoadingStateListener: class {
    |                                       `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
357 |
358 |     /// Consume observed loading state.
/host/spi-builder-workspace/Sources/Reactive.swift:49:45: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 47 | }
 48 |
 49 | public protocol ReactiveExtensionsProvider: class {}
    |                                             `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 50 |
 51 | extension ReactiveExtensionsProvider {
/host/spi-builder-workspace/Sources/Scheduler.swift:47:24: warning: passing non-sendable parameter 'action' to function expecting a @Sendable closure
44 |
45 |     @inlinable
46 |     public func schedule(_ action: @escaping () -> Void) {
   |                            `- note: parameter 'action' is implicitly non-sendable
47 |         async(execute: action)
   |                        `- warning: passing non-sendable parameter 'action' to function expecting a @Sendable closure
48 |     }
49 | }
[4/46] Compiling ReactiveKit SignalProtocol+Monad.swift
[5/46] Compiling ReactiveKit SignalProtocol+Optional.swift
[6/46] Compiling ReactiveKit SignalProtocol+Result.swift
[7/46] Compiling ReactiveKit SignalProtocol+Sequence.swift
[8/46] Compiling ReactiveKit SignalProtocol+Threading.swift
[9/46] Compiling ReactiveKit SignalProtocol+Async.swift
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:183:25: warning: mutation of captured var '_dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
181 |                     lock.lock(); defer { lock.unlock() }
182 |                     guard !serialDisposable.isDisposed else {
183 |                         _dispatch = nil;
    |                         `- warning: mutation of captured var '_dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
184 |                         return
185 |                     }
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:186:38: warning: reference to captured var '_latestElement' in concurrently-executing code; this is an error in the Swift 6 language mode
184 |                         return
185 |                     }
186 |                     if let element = _latestElement {
    |                                      `- warning: reference to captured var '_latestElement' in concurrently-executing code; this is an error in the Swift 6 language mode
187 |                         observer.receive(element)
188 |                         _latestElement = nil
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:188:25: warning: mutation of captured var '_latestElement' in concurrently-executing code; this is an error in the Swift 6 language mode
186 |                     if let element = _latestElement {
187 |                         observer.receive(element)
188 |                         _latestElement = nil
    |                         `- warning: mutation of captured var '_latestElement' in concurrently-executing code; this is an error in the Swift 6 language mode
189 |                     }
190 |                     _dispatch?()
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:190:21: warning: reference to captured var '_dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
188 |                         _latestElement = nil
189 |                     }
190 |                     _dispatch?()
    |                     `- warning: reference to captured var '_dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
191 |                 }
192 |             }
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:398:32: warning: reference to captured var 'isInitialElement' in concurrently-executing code; this is an error in the Swift 6 language mode
396 |                         switch event {
397 |                         case .next(let element):
398 |                             if isInitialElement {
    |                                `- warning: reference to captured var 'isInitialElement' in concurrently-executing code; this is an error in the Swift 6 language mode
399 |                                 isInitialElement = false
400 |                                 observer.receive(element)
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:399:33: warning: mutation of captured var 'isInitialElement' in concurrently-executing code; this is an error in the Swift 6 language mode
397 |                         case .next(let element):
398 |                             if isInitialElement {
399 |                                 isInitialElement = false
    |                                 `- warning: mutation of captured var 'isInitialElement' in concurrently-executing code; this is an error in the Swift 6 language mode
400 |                                 observer.receive(element)
401 |                             } else {
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:402:33: warning: mutation of captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
400 |                                 observer.receive(element)
401 |                             } else {
402 |                                 lastElement = element
    |                                 `- warning: mutation of captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
403 |                             }
404 |                             guard throttledDisposable == nil else { return }
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:404:35: warning: reference to captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
402 |                                 lastElement = element
403 |                             }
404 |                             guard throttledDisposable == nil else { return }
    |                                   `- warning: reference to captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
405 |                             throttledDisposable = queue.disposableAfter(when: seconds) {
406 |                                 if let element = lastElement {
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:405:29: warning: mutation of captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
403 |                             }
404 |                             guard throttledDisposable == nil else { return }
405 |                             throttledDisposable = queue.disposableAfter(when: seconds) {
    |                             `- warning: mutation of captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
406 |                                 if let element = lastElement {
407 |                                     observer.receive(element)
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:406:50: warning: reference to captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
404 |                             guard throttledDisposable == nil else { return }
405 |                             throttledDisposable = queue.disposableAfter(when: seconds) {
406 |                                 if let element = lastElement {
    |                                                  `- warning: reference to captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
407 |                                     observer.receive(element)
408 |                                     lastElement = nil
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:408:37: warning: mutation of captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
406 |                                 if let element = lastElement {
407 |                                     observer.receive(element)
408 |                                     lastElement = nil
    |                                     `- warning: mutation of captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
409 |                                 }
410 |                                 if isFinished {
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:410:36: warning: reference to captured var 'isFinished' in concurrently-executing code; this is an error in the Swift 6 language mode
408 |                                     lastElement = nil
409 |                                 }
410 |                                 if isFinished {
    |                                    `- warning: reference to captured var 'isFinished' in concurrently-executing code; this is an error in the Swift 6 language mode
411 |                                     observer.receive(completion: .finished)
412 |                                 }
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:413:33: warning: mutation of captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
411 |                                     observer.receive(completion: .finished)
412 |                                 }
413 |                                 throttledDisposable = nil
    |                                 `- warning: mutation of captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
414 |                             }
415 |                         case .failed(let error):
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:418:35: warning: reference to captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
416 |                             observer.receive(completion: .failure(error))
417 |                         case .completed:
418 |                             guard throttledDisposable == nil else {
    |                                   `- warning: reference to captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
419 |                                 isFinished = true
420 |                                 return
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:419:33: warning: mutation of captured var 'isFinished' in concurrently-executing code; this is an error in the Swift 6 language mode
417 |                         case .completed:
418 |                             guard throttledDisposable == nil else {
419 |                                 isFinished = true
    |                                 `- warning: mutation of captured var 'isFinished' in concurrently-executing code; this is an error in the Swift 6 language mode
420 |                                 return
421 |                             }
[10/46] Compiling ReactiveKit SignalProtocol+Combining.swift
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:183:25: warning: mutation of captured var '_dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
181 |                     lock.lock(); defer { lock.unlock() }
182 |                     guard !serialDisposable.isDisposed else {
183 |                         _dispatch = nil;
    |                         `- warning: mutation of captured var '_dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
184 |                         return
185 |                     }
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:186:38: warning: reference to captured var '_latestElement' in concurrently-executing code; this is an error in the Swift 6 language mode
184 |                         return
185 |                     }
186 |                     if let element = _latestElement {
    |                                      `- warning: reference to captured var '_latestElement' in concurrently-executing code; this is an error in the Swift 6 language mode
187 |                         observer.receive(element)
188 |                         _latestElement = nil
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:188:25: warning: mutation of captured var '_latestElement' in concurrently-executing code; this is an error in the Swift 6 language mode
186 |                     if let element = _latestElement {
187 |                         observer.receive(element)
188 |                         _latestElement = nil
    |                         `- warning: mutation of captured var '_latestElement' in concurrently-executing code; this is an error in the Swift 6 language mode
189 |                     }
190 |                     _dispatch?()
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:190:21: warning: reference to captured var '_dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
188 |                         _latestElement = nil
189 |                     }
190 |                     _dispatch?()
    |                     `- warning: reference to captured var '_dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
191 |                 }
192 |             }
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:398:32: warning: reference to captured var 'isInitialElement' in concurrently-executing code; this is an error in the Swift 6 language mode
396 |                         switch event {
397 |                         case .next(let element):
398 |                             if isInitialElement {
    |                                `- warning: reference to captured var 'isInitialElement' in concurrently-executing code; this is an error in the Swift 6 language mode
399 |                                 isInitialElement = false
400 |                                 observer.receive(element)
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:399:33: warning: mutation of captured var 'isInitialElement' in concurrently-executing code; this is an error in the Swift 6 language mode
397 |                         case .next(let element):
398 |                             if isInitialElement {
399 |                                 isInitialElement = false
    |                                 `- warning: mutation of captured var 'isInitialElement' in concurrently-executing code; this is an error in the Swift 6 language mode
400 |                                 observer.receive(element)
401 |                             } else {
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:402:33: warning: mutation of captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
400 |                                 observer.receive(element)
401 |                             } else {
402 |                                 lastElement = element
    |                                 `- warning: mutation of captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
403 |                             }
404 |                             guard throttledDisposable == nil else { return }
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:404:35: warning: reference to captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
402 |                                 lastElement = element
403 |                             }
404 |                             guard throttledDisposable == nil else { return }
    |                                   `- warning: reference to captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
405 |                             throttledDisposable = queue.disposableAfter(when: seconds) {
406 |                                 if let element = lastElement {
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:405:29: warning: mutation of captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
403 |                             }
404 |                             guard throttledDisposable == nil else { return }
405 |                             throttledDisposable = queue.disposableAfter(when: seconds) {
    |                             `- warning: mutation of captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
406 |                                 if let element = lastElement {
407 |                                     observer.receive(element)
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:406:50: warning: reference to captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
404 |                             guard throttledDisposable == nil else { return }
405 |                             throttledDisposable = queue.disposableAfter(when: seconds) {
406 |                                 if let element = lastElement {
    |                                                  `- warning: reference to captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
407 |                                     observer.receive(element)
408 |                                     lastElement = nil
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:408:37: warning: mutation of captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
406 |                                 if let element = lastElement {
407 |                                     observer.receive(element)
408 |                                     lastElement = nil
    |                                     `- warning: mutation of captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
409 |                                 }
410 |                                 if isFinished {
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:410:36: warning: reference to captured var 'isFinished' in concurrently-executing code; this is an error in the Swift 6 language mode
408 |                                     lastElement = nil
409 |                                 }
410 |                                 if isFinished {
    |                                    `- warning: reference to captured var 'isFinished' in concurrently-executing code; this is an error in the Swift 6 language mode
411 |                                     observer.receive(completion: .finished)
412 |                                 }
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:413:33: warning: mutation of captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
411 |                                     observer.receive(completion: .finished)
412 |                                 }
413 |                                 throttledDisposable = nil
    |                                 `- warning: mutation of captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
414 |                             }
415 |                         case .failed(let error):
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:418:35: warning: reference to captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
416 |                             observer.receive(completion: .failure(error))
417 |                         case .completed:
418 |                             guard throttledDisposable == nil else {
    |                                   `- warning: reference to captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
419 |                                 isFinished = true
420 |                                 return
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:419:33: warning: mutation of captured var 'isFinished' in concurrently-executing code; this is an error in the Swift 6 language mode
417 |                         case .completed:
418 |                             guard throttledDisposable == nil else {
419 |                                 isFinished = true
    |                                 `- warning: mutation of captured var 'isFinished' in concurrently-executing code; this is an error in the Swift 6 language mode
420 |                                 return
421 |                             }
[11/46] Compiling ReactiveKit SignalProtocol+ErrorHandling.swift
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:183:25: warning: mutation of captured var '_dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
181 |                     lock.lock(); defer { lock.unlock() }
182 |                     guard !serialDisposable.isDisposed else {
183 |                         _dispatch = nil;
    |                         `- warning: mutation of captured var '_dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
184 |                         return
185 |                     }
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:186:38: warning: reference to captured var '_latestElement' in concurrently-executing code; this is an error in the Swift 6 language mode
184 |                         return
185 |                     }
186 |                     if let element = _latestElement {
    |                                      `- warning: reference to captured var '_latestElement' in concurrently-executing code; this is an error in the Swift 6 language mode
187 |                         observer.receive(element)
188 |                         _latestElement = nil
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:188:25: warning: mutation of captured var '_latestElement' in concurrently-executing code; this is an error in the Swift 6 language mode
186 |                     if let element = _latestElement {
187 |                         observer.receive(element)
188 |                         _latestElement = nil
    |                         `- warning: mutation of captured var '_latestElement' in concurrently-executing code; this is an error in the Swift 6 language mode
189 |                     }
190 |                     _dispatch?()
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:190:21: warning: reference to captured var '_dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
188 |                         _latestElement = nil
189 |                     }
190 |                     _dispatch?()
    |                     `- warning: reference to captured var '_dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
191 |                 }
192 |             }
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:398:32: warning: reference to captured var 'isInitialElement' in concurrently-executing code; this is an error in the Swift 6 language mode
396 |                         switch event {
397 |                         case .next(let element):
398 |                             if isInitialElement {
    |                                `- warning: reference to captured var 'isInitialElement' in concurrently-executing code; this is an error in the Swift 6 language mode
399 |                                 isInitialElement = false
400 |                                 observer.receive(element)
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:399:33: warning: mutation of captured var 'isInitialElement' in concurrently-executing code; this is an error in the Swift 6 language mode
397 |                         case .next(let element):
398 |                             if isInitialElement {
399 |                                 isInitialElement = false
    |                                 `- warning: mutation of captured var 'isInitialElement' in concurrently-executing code; this is an error in the Swift 6 language mode
400 |                                 observer.receive(element)
401 |                             } else {
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:402:33: warning: mutation of captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
400 |                                 observer.receive(element)
401 |                             } else {
402 |                                 lastElement = element
    |                                 `- warning: mutation of captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
403 |                             }
404 |                             guard throttledDisposable == nil else { return }
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:404:35: warning: reference to captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
402 |                                 lastElement = element
403 |                             }
404 |                             guard throttledDisposable == nil else { return }
    |                                   `- warning: reference to captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
405 |                             throttledDisposable = queue.disposableAfter(when: seconds) {
406 |                                 if let element = lastElement {
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:405:29: warning: mutation of captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
403 |                             }
404 |                             guard throttledDisposable == nil else { return }
405 |                             throttledDisposable = queue.disposableAfter(when: seconds) {
    |                             `- warning: mutation of captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
406 |                                 if let element = lastElement {
407 |                                     observer.receive(element)
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:406:50: warning: reference to captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
404 |                             guard throttledDisposable == nil else { return }
405 |                             throttledDisposable = queue.disposableAfter(when: seconds) {
406 |                                 if let element = lastElement {
    |                                                  `- warning: reference to captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
407 |                                     observer.receive(element)
408 |                                     lastElement = nil
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:408:37: warning: mutation of captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
406 |                                 if let element = lastElement {
407 |                                     observer.receive(element)
408 |                                     lastElement = nil
    |                                     `- warning: mutation of captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
409 |                                 }
410 |                                 if isFinished {
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:410:36: warning: reference to captured var 'isFinished' in concurrently-executing code; this is an error in the Swift 6 language mode
408 |                                     lastElement = nil
409 |                                 }
410 |                                 if isFinished {
    |                                    `- warning: reference to captured var 'isFinished' in concurrently-executing code; this is an error in the Swift 6 language mode
411 |                                     observer.receive(completion: .finished)
412 |                                 }
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:413:33: warning: mutation of captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
411 |                                     observer.receive(completion: .finished)
412 |                                 }
413 |                                 throttledDisposable = nil
    |                                 `- warning: mutation of captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
414 |                             }
415 |                         case .failed(let error):
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:418:35: warning: reference to captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
416 |                             observer.receive(completion: .failure(error))
417 |                         case .completed:
418 |                             guard throttledDisposable == nil else {
    |                                   `- warning: reference to captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
419 |                                 isFinished = true
420 |                                 return
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:419:33: warning: mutation of captured var 'isFinished' in concurrently-executing code; this is an error in the Swift 6 language mode
417 |                         case .completed:
418 |                             guard throttledDisposable == nil else {
419 |                                 isFinished = true
    |                                 `- warning: mutation of captured var 'isFinished' in concurrently-executing code; this is an error in the Swift 6 language mode
420 |                                 return
421 |                             }
[12/46] Compiling ReactiveKit SignalProtocol+Event.swift
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:183:25: warning: mutation of captured var '_dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
181 |                     lock.lock(); defer { lock.unlock() }
182 |                     guard !serialDisposable.isDisposed else {
183 |                         _dispatch = nil;
    |                         `- warning: mutation of captured var '_dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
184 |                         return
185 |                     }
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:186:38: warning: reference to captured var '_latestElement' in concurrently-executing code; this is an error in the Swift 6 language mode
184 |                         return
185 |                     }
186 |                     if let element = _latestElement {
    |                                      `- warning: reference to captured var '_latestElement' in concurrently-executing code; this is an error in the Swift 6 language mode
187 |                         observer.receive(element)
188 |                         _latestElement = nil
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:188:25: warning: mutation of captured var '_latestElement' in concurrently-executing code; this is an error in the Swift 6 language mode
186 |                     if let element = _latestElement {
187 |                         observer.receive(element)
188 |                         _latestElement = nil
    |                         `- warning: mutation of captured var '_latestElement' in concurrently-executing code; this is an error in the Swift 6 language mode
189 |                     }
190 |                     _dispatch?()
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:190:21: warning: reference to captured var '_dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
188 |                         _latestElement = nil
189 |                     }
190 |                     _dispatch?()
    |                     `- warning: reference to captured var '_dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
191 |                 }
192 |             }
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:398:32: warning: reference to captured var 'isInitialElement' in concurrently-executing code; this is an error in the Swift 6 language mode
396 |                         switch event {
397 |                         case .next(let element):
398 |                             if isInitialElement {
    |                                `- warning: reference to captured var 'isInitialElement' in concurrently-executing code; this is an error in the Swift 6 language mode
399 |                                 isInitialElement = false
400 |                                 observer.receive(element)
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:399:33: warning: mutation of captured var 'isInitialElement' in concurrently-executing code; this is an error in the Swift 6 language mode
397 |                         case .next(let element):
398 |                             if isInitialElement {
399 |                                 isInitialElement = false
    |                                 `- warning: mutation of captured var 'isInitialElement' in concurrently-executing code; this is an error in the Swift 6 language mode
400 |                                 observer.receive(element)
401 |                             } else {
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:402:33: warning: mutation of captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
400 |                                 observer.receive(element)
401 |                             } else {
402 |                                 lastElement = element
    |                                 `- warning: mutation of captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
403 |                             }
404 |                             guard throttledDisposable == nil else { return }
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:404:35: warning: reference to captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
402 |                                 lastElement = element
403 |                             }
404 |                             guard throttledDisposable == nil else { return }
    |                                   `- warning: reference to captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
405 |                             throttledDisposable = queue.disposableAfter(when: seconds) {
406 |                                 if let element = lastElement {
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:405:29: warning: mutation of captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
403 |                             }
404 |                             guard throttledDisposable == nil else { return }
405 |                             throttledDisposable = queue.disposableAfter(when: seconds) {
    |                             `- warning: mutation of captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
406 |                                 if let element = lastElement {
407 |                                     observer.receive(element)
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:406:50: warning: reference to captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
404 |                             guard throttledDisposable == nil else { return }
405 |                             throttledDisposable = queue.disposableAfter(when: seconds) {
406 |                                 if let element = lastElement {
    |                                                  `- warning: reference to captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
407 |                                     observer.receive(element)
408 |                                     lastElement = nil
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:408:37: warning: mutation of captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
406 |                                 if let element = lastElement {
407 |                                     observer.receive(element)
408 |                                     lastElement = nil
    |                                     `- warning: mutation of captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
409 |                                 }
410 |                                 if isFinished {
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:410:36: warning: reference to captured var 'isFinished' in concurrently-executing code; this is an error in the Swift 6 language mode
408 |                                     lastElement = nil
409 |                                 }
410 |                                 if isFinished {
    |                                    `- warning: reference to captured var 'isFinished' in concurrently-executing code; this is an error in the Swift 6 language mode
411 |                                     observer.receive(completion: .finished)
412 |                                 }
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:413:33: warning: mutation of captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
411 |                                     observer.receive(completion: .finished)
412 |                                 }
413 |                                 throttledDisposable = nil
    |                                 `- warning: mutation of captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
414 |                             }
415 |                         case .failed(let error):
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:418:35: warning: reference to captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
416 |                             observer.receive(completion: .failure(error))
417 |                         case .completed:
418 |                             guard throttledDisposable == nil else {
    |                                   `- warning: reference to captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
419 |                                 isFinished = true
420 |                                 return
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:419:33: warning: mutation of captured var 'isFinished' in concurrently-executing code; this is an error in the Swift 6 language mode
417 |                         case .completed:
418 |                             guard throttledDisposable == nil else {
419 |                                 isFinished = true
    |                                 `- warning: mutation of captured var 'isFinished' in concurrently-executing code; this is an error in the Swift 6 language mode
420 |                                 return
421 |                             }
[13/46] Compiling ReactiveKit SignalProtocol+Filtering.swift
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:183:25: warning: mutation of captured var '_dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
181 |                     lock.lock(); defer { lock.unlock() }
182 |                     guard !serialDisposable.isDisposed else {
183 |                         _dispatch = nil;
    |                         `- warning: mutation of captured var '_dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
184 |                         return
185 |                     }
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:186:38: warning: reference to captured var '_latestElement' in concurrently-executing code; this is an error in the Swift 6 language mode
184 |                         return
185 |                     }
186 |                     if let element = _latestElement {
    |                                      `- warning: reference to captured var '_latestElement' in concurrently-executing code; this is an error in the Swift 6 language mode
187 |                         observer.receive(element)
188 |                         _latestElement = nil
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:188:25: warning: mutation of captured var '_latestElement' in concurrently-executing code; this is an error in the Swift 6 language mode
186 |                     if let element = _latestElement {
187 |                         observer.receive(element)
188 |                         _latestElement = nil
    |                         `- warning: mutation of captured var '_latestElement' in concurrently-executing code; this is an error in the Swift 6 language mode
189 |                     }
190 |                     _dispatch?()
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:190:21: warning: reference to captured var '_dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
188 |                         _latestElement = nil
189 |                     }
190 |                     _dispatch?()
    |                     `- warning: reference to captured var '_dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
191 |                 }
192 |             }
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:398:32: warning: reference to captured var 'isInitialElement' in concurrently-executing code; this is an error in the Swift 6 language mode
396 |                         switch event {
397 |                         case .next(let element):
398 |                             if isInitialElement {
    |                                `- warning: reference to captured var 'isInitialElement' in concurrently-executing code; this is an error in the Swift 6 language mode
399 |                                 isInitialElement = false
400 |                                 observer.receive(element)
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:399:33: warning: mutation of captured var 'isInitialElement' in concurrently-executing code; this is an error in the Swift 6 language mode
397 |                         case .next(let element):
398 |                             if isInitialElement {
399 |                                 isInitialElement = false
    |                                 `- warning: mutation of captured var 'isInitialElement' in concurrently-executing code; this is an error in the Swift 6 language mode
400 |                                 observer.receive(element)
401 |                             } else {
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:402:33: warning: mutation of captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
400 |                                 observer.receive(element)
401 |                             } else {
402 |                                 lastElement = element
    |                                 `- warning: mutation of captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
403 |                             }
404 |                             guard throttledDisposable == nil else { return }
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:404:35: warning: reference to captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
402 |                                 lastElement = element
403 |                             }
404 |                             guard throttledDisposable == nil else { return }
    |                                   `- warning: reference to captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
405 |                             throttledDisposable = queue.disposableAfter(when: seconds) {
406 |                                 if let element = lastElement {
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:405:29: warning: mutation of captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
403 |                             }
404 |                             guard throttledDisposable == nil else { return }
405 |                             throttledDisposable = queue.disposableAfter(when: seconds) {
    |                             `- warning: mutation of captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
406 |                                 if let element = lastElement {
407 |                                     observer.receive(element)
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:406:50: warning: reference to captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
404 |                             guard throttledDisposable == nil else { return }
405 |                             throttledDisposable = queue.disposableAfter(when: seconds) {
406 |                                 if let element = lastElement {
    |                                                  `- warning: reference to captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
407 |                                     observer.receive(element)
408 |                                     lastElement = nil
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:408:37: warning: mutation of captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
406 |                                 if let element = lastElement {
407 |                                     observer.receive(element)
408 |                                     lastElement = nil
    |                                     `- warning: mutation of captured var 'lastElement' in concurrently-executing code; this is an error in the Swift 6 language mode
409 |                                 }
410 |                                 if isFinished {
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:410:36: warning: reference to captured var 'isFinished' in concurrently-executing code; this is an error in the Swift 6 language mode
408 |                                     lastElement = nil
409 |                                 }
410 |                                 if isFinished {
    |                                    `- warning: reference to captured var 'isFinished' in concurrently-executing code; this is an error in the Swift 6 language mode
411 |                                     observer.receive(completion: .finished)
412 |                                 }
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:413:33: warning: mutation of captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
411 |                                     observer.receive(completion: .finished)
412 |                                 }
413 |                                 throttledDisposable = nil
    |                                 `- warning: mutation of captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
414 |                             }
415 |                         case .failed(let error):
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:418:35: warning: reference to captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
416 |                             observer.receive(completion: .failure(error))
417 |                         case .completed:
418 |                             guard throttledDisposable == nil else {
    |                                   `- warning: reference to captured var 'throttledDisposable' in concurrently-executing code; this is an error in the Swift 6 language mode
419 |                                 isFinished = true
420 |                                 return
/host/spi-builder-workspace/Sources/SignalProtocol+Filtering.swift:419:33: warning: mutation of captured var 'isFinished' in concurrently-executing code; this is an error in the Swift 6 language mode
417 |                         case .completed:
418 |                             guard throttledDisposable == nil else {
419 |                                 isFinished = true
    |                                 `- warning: mutation of captured var 'isFinished' in concurrently-executing code; this is an error in the Swift 6 language mode
420 |                                 return
421 |                             }
[14/46] Compiling ReactiveKit ObservableObject.swift
[15/46] Compiling ReactiveKit Observer.swift
[16/46] Compiling ReactiveKit Property.swift
[17/46] Compiling ReactiveKit Published.swift
[18/46] Compiling ReactiveKit Deferred.swift
[19/46] Compiling ReactiveKit Empty.swift
[20/46] Compiling ReactiveKit Deprecations.swift
/host/spi-builder-workspace/Sources/Deprecations.swift:216:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
214 |
215 |     @available(*, deprecated, renamed: "receive(event:)")
216 |     open func send(_ event: Event<Element, Error>) {
    |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
217 |         on(event)
218 |     }
/host/spi-builder-workspace/Sources/ExecutionContext.swift:96:33: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
 93 |     /// Creates ExecutionContext from the queue.
 94 |     public var context: ExecutionContext {
 95 |         return ExecutionContext { block in
    |                                   `- note: parameter 'block' is implicitly non-sendable
 96 |             self.async(execute: block)
    |                                 `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
 97 |         }
 98 |     }
/host/spi-builder-workspace/Sources/ExecutionContext.swift:103:58: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
100 |     /// Schedule given block for execution after given interval passes.
101 |     @available(*, deprecated, message: "Please use asyncAfter(deadline:execute:)")
102 |     public func after(when interval: Double, block: @escaping () -> Void) {
    |                                              `- note: parameter 'block' is implicitly non-sendable
103 |         asyncAfter(deadline: .now() + interval, execute: block)
    |                                                          `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
104 |     }
105 |
/host/spi-builder-workspace/Sources/LoadingSignal.swift:356:39: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
354 |
355 | /// A consumer of ObservedLoadingState. For example, a view what updates its appearance based on loading state.
356 | public protocol LoadingStateListener: class {
    |                                       `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
357 |
358 |     /// Consume observed loading state.
[21/46] Compiling ReactiveKit Disposable.swift
/host/spi-builder-workspace/Sources/Deprecations.swift:216:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
214 |
215 |     @available(*, deprecated, renamed: "receive(event:)")
216 |     open func send(_ event: Event<Element, Error>) {
    |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
217 |         on(event)
218 |     }
/host/spi-builder-workspace/Sources/ExecutionContext.swift:96:33: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
 93 |     /// Creates ExecutionContext from the queue.
 94 |     public var context: ExecutionContext {
 95 |         return ExecutionContext { block in
    |                                   `- note: parameter 'block' is implicitly non-sendable
 96 |             self.async(execute: block)
    |                                 `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
 97 |         }
 98 |     }
/host/spi-builder-workspace/Sources/ExecutionContext.swift:103:58: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
100 |     /// Schedule given block for execution after given interval passes.
101 |     @available(*, deprecated, message: "Please use asyncAfter(deadline:execute:)")
102 |     public func after(when interval: Double, block: @escaping () -> Void) {
    |                                              `- note: parameter 'block' is implicitly non-sendable
103 |         asyncAfter(deadline: .now() + interval, execute: block)
    |                                                          `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
104 |     }
105 |
/host/spi-builder-workspace/Sources/LoadingSignal.swift:356:39: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
354 |
355 | /// A consumer of ObservedLoadingState. For example, a view what updates its appearance based on loading state.
356 | public protocol LoadingStateListener: class {
    |                                       `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
357 |
358 |     /// Consume observed loading state.
[22/46] Compiling ReactiveKit ExecutionContext.swift
/host/spi-builder-workspace/Sources/Deprecations.swift:216:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
214 |
215 |     @available(*, deprecated, renamed: "receive(event:)")
216 |     open func send(_ event: Event<Element, Error>) {
    |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
217 |         on(event)
218 |     }
/host/spi-builder-workspace/Sources/ExecutionContext.swift:96:33: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
 93 |     /// Creates ExecutionContext from the queue.
 94 |     public var context: ExecutionContext {
 95 |         return ExecutionContext { block in
    |                                   `- note: parameter 'block' is implicitly non-sendable
 96 |             self.async(execute: block)
    |                                 `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
 97 |         }
 98 |     }
/host/spi-builder-workspace/Sources/ExecutionContext.swift:103:58: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
100 |     /// Schedule given block for execution after given interval passes.
101 |     @available(*, deprecated, message: "Please use asyncAfter(deadline:execute:)")
102 |     public func after(when interval: Double, block: @escaping () -> Void) {
    |                                              `- note: parameter 'block' is implicitly non-sendable
103 |         asyncAfter(deadline: .now() + interval, execute: block)
    |                                                          `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
104 |     }
105 |
/host/spi-builder-workspace/Sources/LoadingSignal.swift:356:39: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
354 |
355 | /// A consumer of ObservedLoadingState. For example, a view what updates its appearance based on loading state.
356 | public protocol LoadingStateListener: class {
    |                                       `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
357 |
358 |     /// Consume observed loading state.
[23/46] Compiling ReactiveKit LoadingProperty.swift
/host/spi-builder-workspace/Sources/Deprecations.swift:216:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
214 |
215 |     @available(*, deprecated, renamed: "receive(event:)")
216 |     open func send(_ event: Event<Element, Error>) {
    |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
217 |         on(event)
218 |     }
/host/spi-builder-workspace/Sources/ExecutionContext.swift:96:33: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
 93 |     /// Creates ExecutionContext from the queue.
 94 |     public var context: ExecutionContext {
 95 |         return ExecutionContext { block in
    |                                   `- note: parameter 'block' is implicitly non-sendable
 96 |             self.async(execute: block)
    |                                 `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
 97 |         }
 98 |     }
/host/spi-builder-workspace/Sources/ExecutionContext.swift:103:58: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
100 |     /// Schedule given block for execution after given interval passes.
101 |     @available(*, deprecated, message: "Please use asyncAfter(deadline:execute:)")
102 |     public func after(when interval: Double, block: @escaping () -> Void) {
    |                                              `- note: parameter 'block' is implicitly non-sendable
103 |         asyncAfter(deadline: .now() + interval, execute: block)
    |                                                          `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
104 |     }
105 |
/host/spi-builder-workspace/Sources/LoadingSignal.swift:356:39: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
354 |
355 | /// A consumer of ObservedLoadingState. For example, a view what updates its appearance based on loading state.
356 | public protocol LoadingStateListener: class {
    |                                       `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
357 |
358 |     /// Consume observed loading state.
[24/46] Compiling ReactiveKit LoadingSignal.swift
/host/spi-builder-workspace/Sources/Deprecations.swift:216:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
214 |
215 |     @available(*, deprecated, renamed: "receive(event:)")
216 |     open func send(_ event: Event<Element, Error>) {
    |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
217 |         on(event)
218 |     }
/host/spi-builder-workspace/Sources/ExecutionContext.swift:96:33: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
 93 |     /// Creates ExecutionContext from the queue.
 94 |     public var context: ExecutionContext {
 95 |         return ExecutionContext { block in
    |                                   `- note: parameter 'block' is implicitly non-sendable
 96 |             self.async(execute: block)
    |                                 `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
 97 |         }
 98 |     }
/host/spi-builder-workspace/Sources/ExecutionContext.swift:103:58: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
100 |     /// Schedule given block for execution after given interval passes.
101 |     @available(*, deprecated, message: "Please use asyncAfter(deadline:execute:)")
102 |     public func after(when interval: Double, block: @escaping () -> Void) {
    |                                              `- note: parameter 'block' is implicitly non-sendable
103 |         asyncAfter(deadline: .now() + interval, execute: block)
    |                                                          `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
104 |     }
105 |
/host/spi-builder-workspace/Sources/LoadingSignal.swift:356:39: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
354 |
355 | /// A consumer of ObservedLoadingState. For example, a view what updates its appearance based on loading state.
356 | public protocol LoadingStateListener: class {
    |                                       `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
357 |
358 |     /// Consume observed loading state.
[25/46] Compiling ReactiveKit Lock.swift
/host/spi-builder-workspace/Sources/Deprecations.swift:216:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
214 |
215 |     @available(*, deprecated, renamed: "receive(event:)")
216 |     open func send(_ event: Event<Element, Error>) {
    |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
217 |         on(event)
218 |     }
/host/spi-builder-workspace/Sources/ExecutionContext.swift:96:33: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
 93 |     /// Creates ExecutionContext from the queue.
 94 |     public var context: ExecutionContext {
 95 |         return ExecutionContext { block in
    |                                   `- note: parameter 'block' is implicitly non-sendable
 96 |             self.async(execute: block)
    |                                 `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
 97 |         }
 98 |     }
/host/spi-builder-workspace/Sources/ExecutionContext.swift:103:58: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
100 |     /// Schedule given block for execution after given interval passes.
101 |     @available(*, deprecated, message: "Please use asyncAfter(deadline:execute:)")
102 |     public func after(when interval: Double, block: @escaping () -> Void) {
    |                                              `- note: parameter 'block' is implicitly non-sendable
103 |         asyncAfter(deadline: .now() + interval, execute: block)
    |                                                          `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
104 |     }
105 |
/host/spi-builder-workspace/Sources/LoadingSignal.swift:356:39: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
354 |
355 | /// A consumer of ObservedLoadingState. For example, a view what updates its appearance based on loading state.
356 | public protocol LoadingStateListener: class {
    |                                       `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
357 |
358 |     /// Consume observed loading state.
[26/46] Compiling ReactiveKit SignalProtocol+Transforming.swift
[27/46] Compiling ReactiveKit SignalProtocol+Utilities.swift
[28/46] Compiling ReactiveKit SignalProtocol.swift
[29/46] Compiling ReactiveKit Subjects.swift
[30/46] Compiling ReactiveKit Subscriber.swift
[31/46] Compiling ReactiveKit Accumulator.swift
[32/46] Compiling ReactiveKit Completion.swift
[33/46] Compiling ReactiveKit Demand.swift
[34/46] Compiling ReactiveKit Sink.swift
[35/46] Compiling ReactiveKit Subscription.swift
[36/46] Compiling ReactiveKit Reactive.swift
/host/spi-builder-workspace/Sources/Reactive.swift:49:45: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 47 | }
 48 |
 49 | public protocol ReactiveExtensionsProvider: class {}
    |                                             `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 50 |
 51 | extension ReactiveExtensionsProvider {
/host/spi-builder-workspace/Sources/Scheduler.swift:47:24: warning: passing non-sendable parameter 'action' to function expecting a @Sendable closure
44 |
45 |     @inlinable
46 |     public func schedule(_ action: @escaping () -> Void) {
   |                            `- note: parameter 'action' is implicitly non-sendable
47 |         async(execute: action)
   |                        `- warning: passing non-sendable parameter 'action' to function expecting a @Sendable closure
48 |     }
49 | }
/host/spi-builder-workspace/Sources/Signal.swift:172:25: warning: mutation of captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
170 |                 queue.asyncAfter(deadline: .now() + interval) {
171 |                     guard !disposable.isDisposed else {
172 |                         dispatch = nil
    |                         `- warning: mutation of captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
173 |                         return
174 |                     }
/host/spi-builder-workspace/Sources/Signal.swift:175:41: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
173 |                         return
174 |                     }
175 |                     guard let element = iterator.next() else {
    |                                         `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
176 |                         dispatch = nil
177 |                         observer.receive(completion: .finished)
/host/spi-builder-workspace/Sources/Signal.swift:176:25: warning: mutation of captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
174 |                     }
175 |                     guard let element = iterator.next() else {
176 |                         dispatch = nil
    |                         `- warning: mutation of captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
177 |                         observer.receive(completion: .finished)
178 |                         return
/host/spi-builder-workspace/Sources/Signal.swift:181:21: warning: reference to captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
179 |                     }
180 |                     observer.receive(element)
181 |                     dispatch?()
    |                     `- warning: reference to captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
182 |                 }
183 |             }
[37/46] Compiling ReactiveKit Scheduler.swift
/host/spi-builder-workspace/Sources/Reactive.swift:49:45: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 47 | }
 48 |
 49 | public protocol ReactiveExtensionsProvider: class {}
    |                                             `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 50 |
 51 | extension ReactiveExtensionsProvider {
/host/spi-builder-workspace/Sources/Scheduler.swift:47:24: warning: passing non-sendable parameter 'action' to function expecting a @Sendable closure
44 |
45 |     @inlinable
46 |     public func schedule(_ action: @escaping () -> Void) {
   |                            `- note: parameter 'action' is implicitly non-sendable
47 |         async(execute: action)
   |                        `- warning: passing non-sendable parameter 'action' to function expecting a @Sendable closure
48 |     }
49 | }
/host/spi-builder-workspace/Sources/Signal.swift:172:25: warning: mutation of captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
170 |                 queue.asyncAfter(deadline: .now() + interval) {
171 |                     guard !disposable.isDisposed else {
172 |                         dispatch = nil
    |                         `- warning: mutation of captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
173 |                         return
174 |                     }
/host/spi-builder-workspace/Sources/Signal.swift:175:41: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
173 |                         return
174 |                     }
175 |                     guard let element = iterator.next() else {
    |                                         `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
176 |                         dispatch = nil
177 |                         observer.receive(completion: .finished)
/host/spi-builder-workspace/Sources/Signal.swift:176:25: warning: mutation of captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
174 |                     }
175 |                     guard let element = iterator.next() else {
176 |                         dispatch = nil
    |                         `- warning: mutation of captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
177 |                         observer.receive(completion: .finished)
178 |                         return
/host/spi-builder-workspace/Sources/Signal.swift:181:21: warning: reference to captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
179 |                     }
180 |                     observer.receive(element)
181 |                     dispatch?()
    |                     `- warning: reference to captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
182 |                 }
183 |             }
[38/46] Compiling ReactiveKit Signal.Event.swift
/host/spi-builder-workspace/Sources/Reactive.swift:49:45: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 47 | }
 48 |
 49 | public protocol ReactiveExtensionsProvider: class {}
    |                                             `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 50 |
 51 | extension ReactiveExtensionsProvider {
/host/spi-builder-workspace/Sources/Scheduler.swift:47:24: warning: passing non-sendable parameter 'action' to function expecting a @Sendable closure
44 |
45 |     @inlinable
46 |     public func schedule(_ action: @escaping () -> Void) {
   |                            `- note: parameter 'action' is implicitly non-sendable
47 |         async(execute: action)
   |                        `- warning: passing non-sendable parameter 'action' to function expecting a @Sendable closure
48 |     }
49 | }
/host/spi-builder-workspace/Sources/Signal.swift:172:25: warning: mutation of captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
170 |                 queue.asyncAfter(deadline: .now() + interval) {
171 |                     guard !disposable.isDisposed else {
172 |                         dispatch = nil
    |                         `- warning: mutation of captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
173 |                         return
174 |                     }
/host/spi-builder-workspace/Sources/Signal.swift:175:41: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
173 |                         return
174 |                     }
175 |                     guard let element = iterator.next() else {
    |                                         `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
176 |                         dispatch = nil
177 |                         observer.receive(completion: .finished)
/host/spi-builder-workspace/Sources/Signal.swift:176:25: warning: mutation of captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
174 |                     }
175 |                     guard let element = iterator.next() else {
176 |                         dispatch = nil
    |                         `- warning: mutation of captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
177 |                         observer.receive(completion: .finished)
178 |                         return
/host/spi-builder-workspace/Sources/Signal.swift:181:21: warning: reference to captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
179 |                     }
180 |                     observer.receive(element)
181 |                     dispatch?()
    |                     `- warning: reference to captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
182 |                 }
183 |             }
[39/46] Compiling ReactiveKit Signal.swift
/host/spi-builder-workspace/Sources/Reactive.swift:49:45: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 47 | }
 48 |
 49 | public protocol ReactiveExtensionsProvider: class {}
    |                                             `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 50 |
 51 | extension ReactiveExtensionsProvider {
/host/spi-builder-workspace/Sources/Scheduler.swift:47:24: warning: passing non-sendable parameter 'action' to function expecting a @Sendable closure
44 |
45 |     @inlinable
46 |     public func schedule(_ action: @escaping () -> Void) {
   |                            `- note: parameter 'action' is implicitly non-sendable
47 |         async(execute: action)
   |                        `- warning: passing non-sendable parameter 'action' to function expecting a @Sendable closure
48 |     }
49 | }
/host/spi-builder-workspace/Sources/Signal.swift:172:25: warning: mutation of captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
170 |                 queue.asyncAfter(deadline: .now() + interval) {
171 |                     guard !disposable.isDisposed else {
172 |                         dispatch = nil
    |                         `- warning: mutation of captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
173 |                         return
174 |                     }
/host/spi-builder-workspace/Sources/Signal.swift:175:41: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
173 |                         return
174 |                     }
175 |                     guard let element = iterator.next() else {
    |                                         `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
176 |                         dispatch = nil
177 |                         observer.receive(completion: .finished)
/host/spi-builder-workspace/Sources/Signal.swift:176:25: warning: mutation of captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
174 |                     }
175 |                     guard let element = iterator.next() else {
176 |                         dispatch = nil
    |                         `- warning: mutation of captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
177 |                         observer.receive(completion: .finished)
178 |                         return
/host/spi-builder-workspace/Sources/Signal.swift:181:21: warning: reference to captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
179 |                     }
180 |                     observer.receive(element)
181 |                     dispatch?()
    |                     `- warning: reference to captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
182 |                 }
183 |             }
[40/46] Compiling ReactiveKit SignalProtocol+Arities.swift
/host/spi-builder-workspace/Sources/Reactive.swift:49:45: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 47 | }
 48 |
 49 | public protocol ReactiveExtensionsProvider: class {}
    |                                             `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 50 |
 51 | extension ReactiveExtensionsProvider {
/host/spi-builder-workspace/Sources/Scheduler.swift:47:24: warning: passing non-sendable parameter 'action' to function expecting a @Sendable closure
44 |
45 |     @inlinable
46 |     public func schedule(_ action: @escaping () -> Void) {
   |                            `- note: parameter 'action' is implicitly non-sendable
47 |         async(execute: action)
   |                        `- warning: passing non-sendable parameter 'action' to function expecting a @Sendable closure
48 |     }
49 | }
/host/spi-builder-workspace/Sources/Signal.swift:172:25: warning: mutation of captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
170 |                 queue.asyncAfter(deadline: .now() + interval) {
171 |                     guard !disposable.isDisposed else {
172 |                         dispatch = nil
    |                         `- warning: mutation of captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
173 |                         return
174 |                     }
/host/spi-builder-workspace/Sources/Signal.swift:175:41: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
173 |                         return
174 |                     }
175 |                     guard let element = iterator.next() else {
    |                                         `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
176 |                         dispatch = nil
177 |                         observer.receive(completion: .finished)
/host/spi-builder-workspace/Sources/Signal.swift:176:25: warning: mutation of captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
174 |                     }
175 |                     guard let element = iterator.next() else {
176 |                         dispatch = nil
    |                         `- warning: mutation of captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
177 |                         observer.receive(completion: .finished)
178 |                         return
/host/spi-builder-workspace/Sources/Signal.swift:181:21: warning: reference to captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
179 |                     }
180 |                     observer.receive(element)
181 |                     dispatch?()
    |                     `- warning: reference to captured var 'dispatch' in concurrently-executing code; this is an error in the Swift 6 language mode
182 |                 }
183 |             }
[41/46] Compiling ReactiveKit Atomic.swift
/host/spi-builder-workspace/Sources/Deallocatable.swift:22:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
20 | ///       view.display(number)
21 | ///     }
22 | public protocol Deallocatable: class {
   |                                `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
23 |
24 |     /// A signal that fires `completed` event when the receiver is deallocated.
[42/46] Compiling ReactiveKit Bindable.swift
/host/spi-builder-workspace/Sources/Deallocatable.swift:22:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
20 | ///       view.display(number)
21 | ///     }
22 | public protocol Deallocatable: class {
   |                                `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
23 |
24 |     /// A signal that fires `completed` event when the receiver is deallocated.
[43/46] Compiling ReactiveKit Cancellable.swift
/host/spi-builder-workspace/Sources/Deallocatable.swift:22:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
20 | ///       view.display(number)
21 | ///     }
22 | public protocol Deallocatable: class {
   |                                `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
23 |
24 |     /// A signal that fires `completed` event when the receiver is deallocated.
[44/46] Compiling ReactiveKit Combine.swift
/host/spi-builder-workspace/Sources/Deallocatable.swift:22:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
20 | ///       view.display(number)
21 | ///     }
22 | public protocol Deallocatable: class {
   |                                `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
23 |
24 |     /// A signal that fires `completed` event when the receiver is deallocated.
[45/46] Compiling ReactiveKit Connectable.swift
/host/spi-builder-workspace/Sources/Deallocatable.swift:22:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
20 | ///       view.display(number)
21 | ///     }
22 | public protocol Deallocatable: class {
   |                                `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
23 |
24 |     /// A signal that fires `completed` event when the receiver is deallocated.
[46/46] Compiling ReactiveKit Deallocatable.swift
/host/spi-builder-workspace/Sources/Deallocatable.swift:22:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
20 | ///       view.display(number)
21 | ///     }
22 | public protocol Deallocatable: class {
   |                                `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
23 |
24 |     /// A signal that fires `completed` event when the receiver is deallocated.
Build complete! (11.76s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "ReactiveKit",
  "name" : "ReactiveKit",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.10"
    },
    {
      "name" : "ios",
      "version" : "9.0"
    },
    {
      "name" : "tvos",
      "version" : "9.0"
    },
    {
      "name" : "watchos",
      "version" : "2.0"
    }
  ],
  "products" : [
    {
      "name" : "ReactiveKit",
      "targets" : [
        "ReactiveKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ReactiveKitTests",
      "module_type" : "SwiftTarget",
      "name" : "ReactiveKitTests",
      "path" : "Tests/ReactiveKitTests",
      "sources" : [
        "CombineTests.swift",
        "PropertyTests.swift",
        "PublishedTests.swift",
        "Scheduler.swift",
        "SignalTests.swift",
        "Stress.swift",
        "SubjectTests.swift"
      ],
      "target_dependencies" : [
        "ReactiveKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ReactiveKit",
      "module_type" : "SwiftTarget",
      "name" : "ReactiveKit",
      "path" : "Sources",
      "product_memberships" : [
        "ReactiveKit"
      ],
      "sources" : [
        "Atomic.swift",
        "Bindable.swift",
        "Cancellable.swift",
        "Combine.swift",
        "Connectable.swift",
        "Deallocatable.swift",
        "Deprecations.swift",
        "Disposable.swift",
        "ExecutionContext.swift",
        "LoadingProperty.swift",
        "LoadingSignal.swift",
        "Lock.swift",
        "ObservableObject.swift",
        "Observer.swift",
        "Property.swift",
        "Published.swift",
        "Publishers/Deferred.swift",
        "Publishers/Empty.swift",
        "Reactive.swift",
        "Scheduler.swift",
        "Signal.Event.swift",
        "Signal.swift",
        "SignalProtocol+Arities.swift",
        "SignalProtocol+Async.swift",
        "SignalProtocol+Combining.swift",
        "SignalProtocol+ErrorHandling.swift",
        "SignalProtocol+Event.swift",
        "SignalProtocol+Filtering.swift",
        "SignalProtocol+Monad.swift",
        "SignalProtocol+Optional.swift",
        "SignalProtocol+Result.swift",
        "SignalProtocol+Sequence.swift",
        "SignalProtocol+Threading.swift",
        "SignalProtocol+Transforming.swift",
        "SignalProtocol+Utilities.swift",
        "SignalProtocol.swift",
        "Subjects.swift",
        "Subscriber.swift",
        "Subscribers/Accumulator.swift",
        "Subscribers/Completion.swift",
        "Subscribers/Demand.swift",
        "Subscribers/Sink.swift",
        "Subscription.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:046a2cda21bb64b2d09e6d52c84584e938ec1698de194871f3d7088597b2bb28
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.