Build Information
Successful build of ReactiveKit, reference master (5c61e0), with Swift 6.3 for macOS (SPM) on 17 Apr 2026 11:37:38 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/DeclarativeHub/ReactiveKit.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/DeclarativeHub/ReactiveKit
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
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 master
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
"identity": ".resolve-product-dependencies",
"name": "resolve-dependencies",
"url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"traits": [
"default"
],
"dependencies": [
{
"identity": "reactivekit",
"name": "ReactiveKit",
"url": "https://github.com/DeclarativeHub/ReactiveKit.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/ReactiveKit",
"traits": [
"default"
],
"dependencies": [
]
}
]
}
Fetching https://github.com/DeclarativeHub/ReactiveKit.git
[1/3660] Fetching reactivekit
Fetched https://github.com/DeclarativeHub/ReactiveKit.git from cache (1.12s)
Creating working copy for https://github.com/DeclarativeHub/ReactiveKit.git
Working copy of https://github.com/DeclarativeHub/ReactiveKit.git resolved at master (5c61e08)
warning: '.resolve-product-dependencies': dependency 'reactivekit' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.3
Building package at path: $PWD
https://github.com/DeclarativeHub/ReactiveKit.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--6988338F2F200930.txt
[3/42] Emitting module ReactiveKit
/Users/admin/builder/spi-builder-workspace/Sources/Deallocatable.swift:22:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
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 [#deprecation]
23 |
24 | /// A signal that fires `completed` event when the receiver is deallocated.
/Users/admin/builder/spi-builder-workspace/Sources/Deprecations.swift:216:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
214 |
215 | @available(*, deprecated, renamed: "receive(event:)")
216 | open func send(_ event: Event<Element, Error>) {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
217 | on(event)
218 | }
/Users/admin/builder/spi-builder-workspace/Sources/LoadingSignal.swift:356:39: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
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 [#deprecation]
357 |
358 | /// Consume observed loading state.
/Users/admin/builder/spi-builder-workspace/Sources/Reactive.swift:49:45: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
47 | }
48 |
49 | public protocol ReactiveExtensionsProvider: class {}
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
50 |
51 | extension ReactiveExtensionsProvider {
[4/46] Compiling ReactiveKit Completion.swift
[5/46] Compiling ReactiveKit Demand.swift
[6/46] Compiling ReactiveKit Sink.swift
[7/46] Compiling ReactiveKit Subscription.swift
[8/46] Compiling ReactiveKit SignalProtocol+Sequence.swift
[9/46] Compiling ReactiveKit SignalProtocol+Threading.swift
[10/46] Compiling ReactiveKit SignalProtocol+Transforming.swift
[11/46] Compiling ReactiveKit SignalProtocol+Utilities.swift
[12/46] Compiling ReactiveKit Deallocatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Deallocatable.swift:22:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
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 [#deprecation]
23 |
24 | /// A signal that fires `completed` event when the receiver is deallocated.
/Users/admin/builder/spi-builder-workspace/Sources/Deprecations.swift:216:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
214 |
215 | @available(*, deprecated, renamed: "receive(event:)")
216 | open func send(_ event: Event<Element, Error>) {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
217 | on(event)
218 | }
/Users/admin/builder/spi-builder-workspace/Sources/Deallocatable.swift:56:60: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
54 | /// A `DisposeBag` that can be used to dispose observations and bindings.
55 | public var bag: DisposeBag {
56 | if let disposeBag = objc_getAssociatedObject(self, &NSObject.AssociatedKeys.DisposeBagKey) {
| `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
57 | return disposeBag as! DisposeBag
58 | } else {
/Users/admin/builder/spi-builder-workspace/Sources/Deallocatable.swift:60:44: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
58 | } else {
59 | let disposeBag = DisposeBag()
60 | objc_setAssociatedObject(self, &NSObject.AssociatedKeys.DisposeBagKey, disposeBag, objc_AssociationPolicy.OBJC_ASSOCIATION_RETAIN_NONATOMIC)
| `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
61 | return disposeBag
62 | }
[13/46] Compiling ReactiveKit Deprecations.swift
/Users/admin/builder/spi-builder-workspace/Sources/Deallocatable.swift:22:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
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 [#deprecation]
23 |
24 | /// A signal that fires `completed` event when the receiver is deallocated.
/Users/admin/builder/spi-builder-workspace/Sources/Deprecations.swift:216:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
214 |
215 | @available(*, deprecated, renamed: "receive(event:)")
216 | open func send(_ event: Event<Element, Error>) {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
217 | on(event)
218 | }
/Users/admin/builder/spi-builder-workspace/Sources/Deallocatable.swift:56:60: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
54 | /// A `DisposeBag` that can be used to dispose observations and bindings.
55 | public var bag: DisposeBag {
56 | if let disposeBag = objc_getAssociatedObject(self, &NSObject.AssociatedKeys.DisposeBagKey) {
| `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
57 | return disposeBag as! DisposeBag
58 | } else {
/Users/admin/builder/spi-builder-workspace/Sources/Deallocatable.swift:60:44: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
58 | } else {
59 | let disposeBag = DisposeBag()
60 | objc_setAssociatedObject(self, &NSObject.AssociatedKeys.DisposeBagKey, disposeBag, objc_AssociationPolicy.OBJC_ASSOCIATION_RETAIN_NONATOMIC)
| `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
61 | return disposeBag
62 | }
[14/46] Compiling ReactiveKit Disposable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Deallocatable.swift:22:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
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 [#deprecation]
23 |
24 | /// A signal that fires `completed` event when the receiver is deallocated.
/Users/admin/builder/spi-builder-workspace/Sources/Deprecations.swift:216:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
214 |
215 | @available(*, deprecated, renamed: "receive(event:)")
216 | open func send(_ event: Event<Element, Error>) {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
217 | on(event)
218 | }
/Users/admin/builder/spi-builder-workspace/Sources/Deallocatable.swift:56:60: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
54 | /// A `DisposeBag` that can be used to dispose observations and bindings.
55 | public var bag: DisposeBag {
56 | if let disposeBag = objc_getAssociatedObject(self, &NSObject.AssociatedKeys.DisposeBagKey) {
| `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
57 | return disposeBag as! DisposeBag
58 | } else {
/Users/admin/builder/spi-builder-workspace/Sources/Deallocatable.swift:60:44: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
58 | } else {
59 | let disposeBag = DisposeBag()
60 | objc_setAssociatedObject(self, &NSObject.AssociatedKeys.DisposeBagKey, disposeBag, objc_AssociationPolicy.OBJC_ASSOCIATION_RETAIN_NONATOMIC)
| `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
61 | return disposeBag
62 | }
[15/46] Compiling ReactiveKit ExecutionContext.swift
/Users/admin/builder/spi-builder-workspace/Sources/Deallocatable.swift:22:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
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 [#deprecation]
23 |
24 | /// A signal that fires `completed` event when the receiver is deallocated.
/Users/admin/builder/spi-builder-workspace/Sources/Deprecations.swift:216:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
214 |
215 | @available(*, deprecated, renamed: "receive(event:)")
216 | open func send(_ event: Event<Element, Error>) {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
217 | on(event)
218 | }
/Users/admin/builder/spi-builder-workspace/Sources/Deallocatable.swift:56:60: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
54 | /// A `DisposeBag` that can be used to dispose observations and bindings.
55 | public var bag: DisposeBag {
56 | if let disposeBag = objc_getAssociatedObject(self, &NSObject.AssociatedKeys.DisposeBagKey) {
| `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
57 | return disposeBag as! DisposeBag
58 | } else {
/Users/admin/builder/spi-builder-workspace/Sources/Deallocatable.swift:60:44: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
58 | } else {
59 | let disposeBag = DisposeBag()
60 | objc_setAssociatedObject(self, &NSObject.AssociatedKeys.DisposeBagKey, disposeBag, objc_AssociationPolicy.OBJC_ASSOCIATION_RETAIN_NONATOMIC)
| `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
61 | return disposeBag
62 | }
[16/46] Compiling ReactiveKit LoadingProperty.swift
/Users/admin/builder/spi-builder-workspace/Sources/Deallocatable.swift:22:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
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 [#deprecation]
23 |
24 | /// A signal that fires `completed` event when the receiver is deallocated.
/Users/admin/builder/spi-builder-workspace/Sources/Deprecations.swift:216:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
214 |
215 | @available(*, deprecated, renamed: "receive(event:)")
216 | open func send(_ event: Event<Element, Error>) {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
217 | on(event)
218 | }
/Users/admin/builder/spi-builder-workspace/Sources/Deallocatable.swift:56:60: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
54 | /// A `DisposeBag` that can be used to dispose observations and bindings.
55 | public var bag: DisposeBag {
56 | if let disposeBag = objc_getAssociatedObject(self, &NSObject.AssociatedKeys.DisposeBagKey) {
| `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
57 | return disposeBag as! DisposeBag
58 | } else {
/Users/admin/builder/spi-builder-workspace/Sources/Deallocatable.swift:60:44: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
58 | } else {
59 | let disposeBag = DisposeBag()
60 | objc_setAssociatedObject(self, &NSObject.AssociatedKeys.DisposeBagKey, disposeBag, objc_AssociationPolicy.OBJC_ASSOCIATION_RETAIN_NONATOMIC)
| `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
61 | return disposeBag
62 | }
[17/46] Compiling ReactiveKit SignalProtocol+Async.swift
[18/46] Compiling ReactiveKit SignalProtocol+Combining.swift
[19/46] Compiling ReactiveKit SignalProtocol+ErrorHandling.swift
[20/46] Compiling ReactiveKit SignalProtocol+Event.swift
[21/46] Compiling ReactiveKit SignalProtocol+Filtering.swift
[22/46] Compiling ReactiveKit SignalProtocol+Monad.swift
[23/46] Compiling ReactiveKit SignalProtocol+Optional.swift
[24/46] Compiling ReactiveKit SignalProtocol+Result.swift
[25/46] Compiling ReactiveKit Atomic.swift
[26/46] Compiling ReactiveKit Bindable.swift
[27/46] Compiling ReactiveKit Cancellable.swift
[28/46] Compiling ReactiveKit Combine.swift
[29/46] Compiling ReactiveKit Connectable.swift
[30/46] Compiling ReactiveKit Published.swift
/Users/admin/builder/spi-builder-workspace/Sources/Reactive.swift:49:45: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
47 | }
48 |
49 | public protocol ReactiveExtensionsProvider: class {}
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
50 |
51 | extension ReactiveExtensionsProvider {
[31/46] Compiling ReactiveKit Deferred.swift
/Users/admin/builder/spi-builder-workspace/Sources/Reactive.swift:49:45: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
47 | }
48 |
49 | public protocol ReactiveExtensionsProvider: class {}
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
50 |
51 | extension ReactiveExtensionsProvider {
[32/46] Compiling ReactiveKit Empty.swift
/Users/admin/builder/spi-builder-workspace/Sources/Reactive.swift:49:45: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
47 | }
48 |
49 | public protocol ReactiveExtensionsProvider: class {}
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
50 |
51 | extension ReactiveExtensionsProvider {
[33/46] Compiling ReactiveKit Reactive.swift
/Users/admin/builder/spi-builder-workspace/Sources/Reactive.swift:49:45: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
47 | }
48 |
49 | public protocol ReactiveExtensionsProvider: class {}
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
50 |
51 | extension ReactiveExtensionsProvider {
[34/46] Compiling ReactiveKit LoadingSignal.swift
/Users/admin/builder/spi-builder-workspace/Sources/LoadingSignal.swift:356:39: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
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 [#deprecation]
357 |
358 | /// Consume observed loading state.
[35/46] Compiling ReactiveKit Lock.swift
/Users/admin/builder/spi-builder-workspace/Sources/LoadingSignal.swift:356:39: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
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 [#deprecation]
357 |
358 | /// Consume observed loading state.
[36/46] Compiling ReactiveKit ObservableObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/LoadingSignal.swift:356:39: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
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 [#deprecation]
357 |
358 | /// Consume observed loading state.
[37/46] Compiling ReactiveKit Observer.swift
/Users/admin/builder/spi-builder-workspace/Sources/LoadingSignal.swift:356:39: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
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 [#deprecation]
357 |
358 | /// Consume observed loading state.
[38/46] Compiling ReactiveKit Property.swift
/Users/admin/builder/spi-builder-workspace/Sources/LoadingSignal.swift:356:39: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
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 [#deprecation]
357 |
358 | /// Consume observed loading state.
[39/46] Compiling ReactiveKit Scheduler.swift
[40/46] Compiling ReactiveKit Signal.Event.swift
[41/46] Compiling ReactiveKit Signal.swift
[42/46] Compiling ReactiveKit SignalProtocol+Arities.swift
[43/46] Compiling ReactiveKit SignalProtocol.swift
[44/46] Compiling ReactiveKit Subjects.swift
[45/46] Compiling ReactiveKit Subscriber.swift
[46/46] Compiling ReactiveKit Accumulator.swift
Build complete! (4.34s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "ReactiveKit",
"name" : "ReactiveKit",
"path" : "/Users/admin/builder/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"
}
Done.