Build Information
Successful build of PublisherKit, reference 4.0.2 (0abfe5), with Swift 6.3 for macOS (SPM) on 11 Apr 2026 10:53:47 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/ragzy15/PublisherKit.git
Reference: 4.0.2
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/ragzy15/PublisherKit
* tag 4.0.2 -> FETCH_HEAD
HEAD is now at 0abfe5f Merge pull request #38 from ragzy15/hotfix/validate
Cloned https://github.com/ragzy15/PublisherKit.git
Revision (git rev-parse @):
0abfe5f5d7c5be13f933fcfe2372e8c9ab3ddf90
SUCCESS checkout https://github.com/ragzy15/PublisherKit.git at 4.0.2
========================================
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": "publisherkit",
"name": "PublisherKit",
"url": "https://github.com/ragzy15/PublisherKit.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/PublisherKit",
"traits": [
"default"
],
"dependencies": [
]
}
]
}
Fetching https://github.com/ragzy15/PublisherKit.git
[1/4260] Fetching publisherkit
Fetched https://github.com/ragzy15/PublisherKit.git from cache (0.94s)
Creating working copy for https://github.com/ragzy15/PublisherKit.git
Working copy of https://github.com/ragzy15/PublisherKit.git resolved at 4.0.2 (0abfe5f)
warning: '.resolve-product-dependencies': dependency 'publisherkit' 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/ragzy15/PublisherKit.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/3] Write sources
[1/3] Write swift-version--6988338F2F200930.txt
[2/3] Compiling PublisherKitHelpers PublisherKitHelpers.cpp
[4/126] Compiling PublisherKit Prefix While.swift
[5/126] Compiling PublisherKit Print.swift
[6/126] Compiling PublisherKit Publishers.swift
[7/126] Compiling PublisherKit Receive On.swift
[8/126] Compiling PublisherKit Record.swift
[9/126] Compiling PublisherKit Reduce.swift
[10/126] Compiling PublisherKit Remove Duplicates.swift
[11/126] Compiling PublisherKit Replace Empty.swift
[12/126] Compiling PublisherKit Replace Error.swift
[13/126] Compiling PublisherKit Result+Operators.swift
[14/126] Compiling PublisherKit Result.swift
[15/126] Compiling PublisherKit Retry.swift
[16/126] Compiling PublisherKit Scan.swift
[17/139] Compiling PublisherKit Assign.swift
[18/139] Compiling PublisherKit Completion.swift
[19/139] Compiling PublisherKit Demand.swift
[20/139] Compiling PublisherKit Filter Producer.swift
[21/139] Compiling PublisherKit PartialCompletion.swift
[22/139] Compiling PublisherKit Reduce Producer.swift
[23/139] Compiling PublisherKit Subject Subscriber.swift
[24/139] Compiling PublisherKit OnCompletion.swift
[25/139] Compiling PublisherKit Sink.swift
[26/139] Compiling PublisherKit Subscribers.swift
[27/139] Compiling PublisherKit Empty.swift
[28/139] Compiling PublisherKit Subscription Status.swift
[29/139] Compiling PublisherKit Subscriptions.swift
[30/139] Emitting module PublisherKit
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:10:12: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
8 | import Foundation
9 |
10 | open class AsynchronousOperation: Operation {
| `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
11 |
12 | override open var isAsynchronous: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:57:13: warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
55 |
56 | /* Used By Operation Queue when conforms to Scheduler protocol */
57 | final class AsynchronousBlockOperation: AsynchronousOperation {
| `- warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
58 |
59 | private var block: (() -> Void)?
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Subject/Subject.swift:11:26: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
9 | ///
10 | /// A subject is a publisher that you can use to ”inject” values into a stream, by calling its [send()](apple-reference-documentation://hsyr-564TS) method. This can be useful for adapting existing imperative code to the Combine model.
11 | public protocol Subject: class, Publisher {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
12 |
13 | /// Sends a value to the subscriber.
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Handle Events/Handle Events.swift:69:55: warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
9 |
10 | /// A publisher that performs the specified closures when publisher events occur.
11 | public struct HandleEvents<Upstream: Publisher>: Publisher {
| `- note: 'Upstream' previously declared here
12 |
13 | public typealias Output = Upstream.Output
:
67 |
68 | // MARK: HANDLE EVENTS SINK
69 | private final class Inner<Downstream: Subscriber, Upstream: Publisher>: Subscriber, Subscription, CustomStringConvertible, CustomPlaygroundDisplayConvertible, CustomReflectable where Downstream.Input == Upstream.Output, Downstream.Failure == Upstream.Failure {
| `- warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
70 |
71 | typealias Input = Upstream.Output
[31/139] Compiling PublisherKit Scheduler.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Subject/Subject.swift:11:26: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
9 | ///
10 | /// A subject is a publisher that you can use to ”inject” values into a stream, by calling its [send()](apple-reference-documentation://hsyr-564TS) method. This can be useful for adapting existing imperative code to the Combine model.
11 | public protocol Subject: class, Publisher {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
12 |
13 | /// Sends a value to the subscriber.
[32/139] Compiling PublisherKit Subject.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Subject/Subject.swift:11:26: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
9 | ///
10 | /// A subject is a publisher that you can use to ”inject” values into a stream, by calling its [send()](apple-reference-documentation://hsyr-564TS) method. This can be useful for adapting existing imperative code to the Combine model.
11 | public protocol Subject: class, Publisher {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
12 |
13 | /// Sends a value to the subscriber.
[33/139] Compiling PublisherKit Subscriber.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Subject/Subject.swift:11:26: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
9 | ///
10 | /// A subject is a publisher that you can use to ”inject” values into a stream, by calling its [send()](apple-reference-documentation://hsyr-564TS) method. This can be useful for adapting existing imperative code to the Combine model.
11 | public protocol Subject: class, Publisher {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
12 |
13 | /// Sends a value to the subscriber.
[34/139] Compiling PublisherKit Subscription.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Subject/Subject.swift:11:26: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
9 | ///
10 | /// A subject is a publisher that you can use to ”inject” values into a stream, by calling its [send()](apple-reference-documentation://hsyr-564TS) method. This can be useful for adapting existing imperative code to the Combine model.
11 | public protocol Subject: class, Publisher {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
12 |
13 | /// Sends a value to the subscriber.
[35/139] Compiling PublisherKit __KeyValueObservingPKPublisher.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Subject/Subject.swift:11:26: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
9 | ///
10 | /// A subject is a publisher that you can use to ”inject” values into a stream, by calling its [send()](apple-reference-documentation://hsyr-564TS) method. This can be useful for adapting existing imperative code to the Combine model.
11 | public protocol Subject: class, Publisher {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
12 |
13 | /// Sends a value to the subscriber.
[36/139] Compiling PublisherKit All Satisfy.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Subject/Subject.swift:11:26: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
9 | ///
10 | /// A subject is a publisher that you can use to ”inject” values into a stream, by calling its [send()](apple-reference-documentation://hsyr-564TS) method. This can be useful for adapting existing imperative code to the Combine model.
11 | public protocol Subject: class, Publisher {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
12 |
13 | /// Sends a value to the subscriber.
[37/139] Compiling PublisherKit Any Publisher.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Subject/Subject.swift:11:26: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
9 | ///
10 | /// A subject is a publisher that you can use to ”inject” values into a stream, by calling its [send()](apple-reference-documentation://hsyr-564TS) method. This can be useful for adapting existing imperative code to the Combine model.
11 | public protocol Subject: class, Publisher {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
12 |
13 | /// Sends a value to the subscriber.
[38/139] Compiling PublisherKit Assert No Failure.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Subject/Subject.swift:11:26: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
9 | ///
10 | /// A subject is a publisher that you can use to ”inject” values into a stream, by calling its [send()](apple-reference-documentation://hsyr-564TS) method. This can be useful for adapting existing imperative code to the Combine model.
11 | public protocol Subject: class, Publisher {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
12 |
13 | /// Sends a value to the subscriber.
[39/139] Compiling PublisherKit Autoconnect.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Subject/Subject.swift:11:26: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
9 | ///
10 | /// A subject is a publisher that you can use to ”inject” values into a stream, by calling its [send()](apple-reference-documentation://hsyr-564TS) method. This can be useful for adapting existing imperative code to the Combine model.
11 | public protocol Subject: class, Publisher {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
12 |
13 | /// Sends a value to the subscriber.
[40/139] Compiling PublisherKit Breakpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Subject/Subject.swift:11:26: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
9 | ///
10 | /// A subject is a publisher that you can use to ”inject” values into a stream, by calling its [send()](apple-reference-documentation://hsyr-564TS) method. This can be useful for adapting existing imperative code to the Combine model.
11 | public protocol Subject: class, Publisher {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
12 |
13 | /// Sends a value to the subscriber.
[41/139] Compiling PublisherKit Buffer.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Subject/Subject.swift:11:26: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
9 | ///
10 | /// A subject is a publisher that you can use to ”inject” values into a stream, by calling its [send()](apple-reference-documentation://hsyr-564TS) method. This can be useful for adapting existing imperative code to the Combine model.
11 | public protocol Subject: class, Publisher {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
12 |
13 | /// Sends a value to the subscriber.
[42/139] Compiling PublisherKit Catch.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Subject/Subject.swift:11:26: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
9 | ///
10 | /// A subject is a publisher that you can use to ”inject” values into a stream, by calling its [send()](apple-reference-documentation://hsyr-564TS) method. This can be useful for adapting existing imperative code to the Combine model.
11 | public protocol Subject: class, Publisher {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
12 |
13 | /// Sends a value to the subscriber.
[43/139] Compiling PublisherKit Collect.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Subject/Subject.swift:11:26: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
9 | ///
10 | /// A subject is a publisher that you can use to ”inject” values into a stream, by calling its [send()](apple-reference-documentation://hsyr-564TS) method. This can be useful for adapting existing imperative code to the Combine model.
11 | public protocol Subject: class, Publisher {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
12 |
13 | /// Sends a value to the subscriber.
[44/139] Compiling PublisherKit Combine Latest.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Subject/Subject.swift:11:26: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
9 | ///
10 | /// A subject is a publisher that you can use to ”inject” values into a stream, by calling its [send()](apple-reference-documentation://hsyr-564TS) method. This can be useful for adapting existing imperative code to the Combine model.
11 | public protocol Subject: class, Publisher {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
12 |
13 | /// Sends a value to the subscriber.
[45/139] Compiling PublisherKit Result+Extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:10:12: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
8 | import Foundation
9 |
10 | open class AsynchronousOperation: Operation {
| `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
11 |
12 | override open var isAsynchronous: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:57:13: warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
55 |
56 | /* Used By Operation Queue when conforms to Scheduler protocol */
57 | final class AsynchronousBlockOperation: AsynchronousOperation {
| `- warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
58 |
59 | private var block: (() -> Void)?
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Publisher/Publisher+Operators.swift:69:47: warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
67 | /// - Returns: A publisher that raises a debugger signal upon receiving a failure.
68 | public func breakpointOnError() -> Publishers.Breakpoint<Self> {
69 | Publishers.Breakpoint(upstream: self) { (completion) -> Bool in
| `- warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
70 | switch completion {
71 | case .finished: return false
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Breakpoint/Breakpoint.swift:41:16: note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
39 | /// - receiveOutput: A closure that executes when the publisher receives output from the upstream publisher, and can raise a debugger signal by returning a true Boolean value.
40 | /// - receiveCompletion: A closure that executes when the publisher receives completion, and can raise a debugger signal by returning a true Boolean value.
41 | public init(upstream: Upstream,
| `- note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
42 | receiveSubscription: ((Subscription) -> Bool)? = nil,
43 | receiveOutput: ((Upstream.Output) -> Bool)? = nil,
[#TrailingClosureMatching]: <https://docs.swift.org/compiler/documentation/diagnostics/trailing-closure-matching>
[46/139] Compiling PublisherKit URL+Extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:10:12: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
8 | import Foundation
9 |
10 | open class AsynchronousOperation: Operation {
| `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
11 |
12 | override open var isAsynchronous: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:57:13: warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
55 |
56 | /* Used By Operation Queue when conforms to Scheduler protocol */
57 | final class AsynchronousBlockOperation: AsynchronousOperation {
| `- warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
58 |
59 | private var block: (() -> Void)?
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Publisher/Publisher+Operators.swift:69:47: warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
67 | /// - Returns: A publisher that raises a debugger signal upon receiving a failure.
68 | public func breakpointOnError() -> Publishers.Breakpoint<Self> {
69 | Publishers.Breakpoint(upstream: self) { (completion) -> Bool in
| `- warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
70 | switch completion {
71 | case .finished: return false
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Breakpoint/Breakpoint.swift:41:16: note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
39 | /// - receiveOutput: A closure that executes when the publisher receives output from the upstream publisher, and can raise a debugger signal by returning a true Boolean value.
40 | /// - receiveCompletion: A closure that executes when the publisher receives completion, and can raise a debugger signal by returning a true Boolean value.
41 | public init(upstream: Upstream,
| `- note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
42 | receiveSubscription: ((Subscription) -> Bool)? = nil,
43 | receiveOutput: ((Upstream.Output) -> Bool)? = nil,
[#TrailingClosureMatching]: <https://docs.swift.org/compiler/documentation/diagnostics/trailing-closure-matching>
[47/139] Compiling PublisherKit URLRequest+Extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:10:12: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
8 | import Foundation
9 |
10 | open class AsynchronousOperation: Operation {
| `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
11 |
12 | override open var isAsynchronous: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:57:13: warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
55 |
56 | /* Used By Operation Queue when conforms to Scheduler protocol */
57 | final class AsynchronousBlockOperation: AsynchronousOperation {
| `- warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
58 |
59 | private var block: (() -> Void)?
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Publisher/Publisher+Operators.swift:69:47: warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
67 | /// - Returns: A publisher that raises a debugger signal upon receiving a failure.
68 | public func breakpointOnError() -> Publishers.Breakpoint<Self> {
69 | Publishers.Breakpoint(upstream: self) { (completion) -> Bool in
| `- warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
70 | switch completion {
71 | case .finished: return false
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Breakpoint/Breakpoint.swift:41:16: note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
39 | /// - receiveOutput: A closure that executes when the publisher receives output from the upstream publisher, and can raise a debugger signal by returning a true Boolean value.
40 | /// - receiveCompletion: A closure that executes when the publisher receives completion, and can raise a debugger signal by returning a true Boolean value.
41 | public init(upstream: Upstream,
| `- note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
42 | receiveSubscription: ((Subscription) -> Bool)? = nil,
43 | receiveOutput: ((Upstream.Output) -> Bool)? = nil,
[#TrailingClosureMatching]: <https://docs.swift.org/compiler/documentation/diagnostics/trailing-closure-matching>
[48/139] Compiling PublisherKit Locks.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:10:12: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
8 | import Foundation
9 |
10 | open class AsynchronousOperation: Operation {
| `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
11 |
12 | override open var isAsynchronous: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:57:13: warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
55 |
56 | /* Used By Operation Queue when conforms to Scheduler protocol */
57 | final class AsynchronousBlockOperation: AsynchronousOperation {
| `- warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
58 |
59 | private var block: (() -> Void)?
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Publisher/Publisher+Operators.swift:69:47: warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
67 | /// - Returns: A publisher that raises a debugger signal upon receiving a failure.
68 | public func breakpointOnError() -> Publishers.Breakpoint<Self> {
69 | Publishers.Breakpoint(upstream: self) { (completion) -> Bool in
| `- warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
70 | switch completion {
71 | case .finished: return false
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Breakpoint/Breakpoint.swift:41:16: note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
39 | /// - receiveOutput: A closure that executes when the publisher receives output from the upstream publisher, and can raise a debugger signal by returning a true Boolean value.
40 | /// - receiveCompletion: A closure that executes when the publisher receives completion, and can raise a debugger signal by returning a true Boolean value.
41 | public init(upstream: Upstream,
| `- note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
42 | receiveSubscription: ((Subscription) -> Bool)? = nil,
43 | receiveOutput: ((Upstream.Output) -> Bool)? = nil,
[#TrailingClosureMatching]: <https://docs.swift.org/compiler/documentation/diagnostics/trailing-closure-matching>
[49/139] Compiling PublisherKit Logger.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:10:12: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
8 | import Foundation
9 |
10 | open class AsynchronousOperation: Operation {
| `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
11 |
12 | override open var isAsynchronous: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:57:13: warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
55 |
56 | /* Used By Operation Queue when conforms to Scheduler protocol */
57 | final class AsynchronousBlockOperation: AsynchronousOperation {
| `- warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
58 |
59 | private var block: (() -> Void)?
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Publisher/Publisher+Operators.swift:69:47: warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
67 | /// - Returns: A publisher that raises a debugger signal upon receiving a failure.
68 | public func breakpointOnError() -> Publishers.Breakpoint<Self> {
69 | Publishers.Breakpoint(upstream: self) { (completion) -> Bool in
| `- warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
70 | switch completion {
71 | case .finished: return false
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Breakpoint/Breakpoint.swift:41:16: note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
39 | /// - receiveOutput: A closure that executes when the publisher receives output from the upstream publisher, and can raise a debugger signal by returning a true Boolean value.
40 | /// - receiveCompletion: A closure that executes when the publisher receives completion, and can raise a debugger signal by returning a true Boolean value.
41 | public init(upstream: Upstream,
| `- note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
42 | receiveSubscription: ((Subscription) -> Bool)? = nil,
43 | receiveOutput: ((Upstream.Output) -> Bool)? = nil,
[#TrailingClosureMatching]: <https://docs.swift.org/compiler/documentation/diagnostics/trailing-closure-matching>
[50/139] Compiling PublisherKit Asynchronous Operation.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:10:12: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
8 | import Foundation
9 |
10 | open class AsynchronousOperation: Operation {
| `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
11 |
12 | override open var isAsynchronous: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:57:13: warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
55 |
56 | /* Used By Operation Queue when conforms to Scheduler protocol */
57 | final class AsynchronousBlockOperation: AsynchronousOperation {
| `- warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
58 |
59 | private var block: (() -> Void)?
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Publisher/Publisher+Operators.swift:69:47: warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
67 | /// - Returns: A publisher that raises a debugger signal upon receiving a failure.
68 | public func breakpointOnError() -> Publishers.Breakpoint<Self> {
69 | Publishers.Breakpoint(upstream: self) { (completion) -> Bool in
| `- warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
70 | switch completion {
71 | case .finished: return false
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Breakpoint/Breakpoint.swift:41:16: note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
39 | /// - receiveOutput: A closure that executes when the publisher receives output from the upstream publisher, and can raise a debugger signal by returning a true Boolean value.
40 | /// - receiveCompletion: A closure that executes when the publisher receives completion, and can raise a debugger signal by returning a true Boolean value.
41 | public init(upstream: Upstream,
| `- note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
42 | receiveSubscription: ((Subscription) -> Bool)? = nil,
43 | receiveOutput: ((Upstream.Output) -> Bool)? = nil,
[#TrailingClosureMatching]: <https://docs.swift.org/compiler/documentation/diagnostics/trailing-closure-matching>
[51/139] Compiling PublisherKit Cancellable.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:10:12: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
8 | import Foundation
9 |
10 | open class AsynchronousOperation: Operation {
| `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
11 |
12 | override open var isAsynchronous: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:57:13: warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
55 |
56 | /* Used By Operation Queue when conforms to Scheduler protocol */
57 | final class AsynchronousBlockOperation: AsynchronousOperation {
| `- warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
58 |
59 | private var block: (() -> Void)?
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Publisher/Publisher+Operators.swift:69:47: warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
67 | /// - Returns: A publisher that raises a debugger signal upon receiving a failure.
68 | public func breakpointOnError() -> Publishers.Breakpoint<Self> {
69 | Publishers.Breakpoint(upstream: self) { (completion) -> Bool in
| `- warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
70 | switch completion {
71 | case .finished: return false
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Breakpoint/Breakpoint.swift:41:16: note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
39 | /// - receiveOutput: A closure that executes when the publisher receives output from the upstream publisher, and can raise a debugger signal by returning a true Boolean value.
40 | /// - receiveCompletion: A closure that executes when the publisher receives completion, and can raise a debugger signal by returning a true Boolean value.
41 | public init(upstream: Upstream,
| `- note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
42 | receiveSubscription: ((Subscription) -> Bool)? = nil,
43 | receiveOutput: ((Upstream.Output) -> Bool)? = nil,
[#TrailingClosureMatching]: <https://docs.swift.org/compiler/documentation/diagnostics/trailing-closure-matching>
[52/139] Compiling PublisherKit Connectable Publisher.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:10:12: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
8 | import Foundation
9 |
10 | open class AsynchronousOperation: Operation {
| `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
11 |
12 | override open var isAsynchronous: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:57:13: warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
55 |
56 | /* Used By Operation Queue when conforms to Scheduler protocol */
57 | final class AsynchronousBlockOperation: AsynchronousOperation {
| `- warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
58 |
59 | private var block: (() -> Void)?
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Publisher/Publisher+Operators.swift:69:47: warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
67 | /// - Returns: A publisher that raises a debugger signal upon receiving a failure.
68 | public func breakpointOnError() -> Publishers.Breakpoint<Self> {
69 | Publishers.Breakpoint(upstream: self) { (completion) -> Bool in
| `- warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
70 | switch completion {
71 | case .finished: return false
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Breakpoint/Breakpoint.swift:41:16: note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
39 | /// - receiveOutput: A closure that executes when the publisher receives output from the upstream publisher, and can raise a debugger signal by returning a true Boolean value.
40 | /// - receiveCompletion: A closure that executes when the publisher receives completion, and can raise a debugger signal by returning a true Boolean value.
41 | public init(upstream: Upstream,
| `- note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
42 | receiveSubscription: ((Subscription) -> Bool)? = nil,
43 | receiveOutput: ((Upstream.Output) -> Bool)? = nil,
[#TrailingClosureMatching]: <https://docs.swift.org/compiler/documentation/diagnostics/trailing-closure-matching>
[53/139] Compiling PublisherKit Custom Combine Identifier Convertible.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:10:12: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
8 | import Foundation
9 |
10 | open class AsynchronousOperation: Operation {
| `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
11 |
12 | override open var isAsynchronous: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:57:13: warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
55 |
56 | /* Used By Operation Queue when conforms to Scheduler protocol */
57 | final class AsynchronousBlockOperation: AsynchronousOperation {
| `- warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
58 |
59 | private var block: (() -> Void)?
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Publisher/Publisher+Operators.swift:69:47: warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
67 | /// - Returns: A publisher that raises a debugger signal upon receiving a failure.
68 | public func breakpointOnError() -> Publishers.Breakpoint<Self> {
69 | Publishers.Breakpoint(upstream: self) { (completion) -> Bool in
| `- warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
70 | switch completion {
71 | case .finished: return false
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Breakpoint/Breakpoint.swift:41:16: note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
39 | /// - receiveOutput: A closure that executes when the publisher receives output from the upstream publisher, and can raise a debugger signal by returning a true Boolean value.
40 | /// - receiveCompletion: A closure that executes when the publisher receives completion, and can raise a debugger signal by returning a true Boolean value.
41 | public init(upstream: Upstream,
| `- note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
42 | receiveSubscription: ((Subscription) -> Bool)? = nil,
43 | receiveOutput: ((Upstream.Output) -> Bool)? = nil,
[#TrailingClosureMatching]: <https://docs.swift.org/compiler/documentation/diagnostics/trailing-closure-matching>
[54/139] Compiling PublisherKit Top Level Decoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:10:12: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
8 | import Foundation
9 |
10 | open class AsynchronousOperation: Operation {
| `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
11 |
12 | override open var isAsynchronous: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:57:13: warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
55 |
56 | /* Used By Operation Queue when conforms to Scheduler protocol */
57 | final class AsynchronousBlockOperation: AsynchronousOperation {
| `- warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
58 |
59 | private var block: (() -> Void)?
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Publisher/Publisher+Operators.swift:69:47: warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
67 | /// - Returns: A publisher that raises a debugger signal upon receiving a failure.
68 | public func breakpointOnError() -> Publishers.Breakpoint<Self> {
69 | Publishers.Breakpoint(upstream: self) { (completion) -> Bool in
| `- warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
70 | switch completion {
71 | case .finished: return false
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Breakpoint/Breakpoint.swift:41:16: note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
39 | /// - receiveOutput: A closure that executes when the publisher receives output from the upstream publisher, and can raise a debugger signal by returning a true Boolean value.
40 | /// - receiveCompletion: A closure that executes when the publisher receives completion, and can raise a debugger signal by returning a true Boolean value.
41 | public init(upstream: Upstream,
| `- note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
42 | receiveSubscription: ((Subscription) -> Bool)? = nil,
43 | receiveOutput: ((Upstream.Output) -> Bool)? = nil,
[#TrailingClosureMatching]: <https://docs.swift.org/compiler/documentation/diagnostics/trailing-closure-matching>
[55/139] Compiling PublisherKit Top Level Encoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:10:12: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
8 | import Foundation
9 |
10 | open class AsynchronousOperation: Operation {
| `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
11 |
12 | override open var isAsynchronous: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:57:13: warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
55 |
56 | /* Used By Operation Queue when conforms to Scheduler protocol */
57 | final class AsynchronousBlockOperation: AsynchronousOperation {
| `- warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
58 |
59 | private var block: (() -> Void)?
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Publisher/Publisher+Operators.swift:69:47: warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
67 | /// - Returns: A publisher that raises a debugger signal upon receiving a failure.
68 | public func breakpointOnError() -> Publishers.Breakpoint<Self> {
69 | Publishers.Breakpoint(upstream: self) { (completion) -> Bool in
| `- warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
70 | switch completion {
71 | case .finished: return false
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Breakpoint/Breakpoint.swift:41:16: note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
39 | /// - receiveOutput: A closure that executes when the publisher receives output from the upstream publisher, and can raise a debugger signal by returning a true Boolean value.
40 | /// - receiveCompletion: A closure that executes when the publisher receives completion, and can raise a debugger signal by returning a true Boolean value.
41 | public init(upstream: Upstream,
| `- note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
42 | receiveSubscription: ((Subscription) -> Bool)? = nil,
43 | receiveOutput: ((Upstream.Output) -> Bool)? = nil,
[#TrailingClosureMatching]: <https://docs.swift.org/compiler/documentation/diagnostics/trailing-closure-matching>
[56/139] Compiling PublisherKit Publisher+Operators.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:10:12: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
8 | import Foundation
9 |
10 | open class AsynchronousOperation: Operation {
| `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
11 |
12 | override open var isAsynchronous: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:57:13: warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
55 |
56 | /* Used By Operation Queue when conforms to Scheduler protocol */
57 | final class AsynchronousBlockOperation: AsynchronousOperation {
| `- warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
58 |
59 | private var block: (() -> Void)?
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Publisher/Publisher+Operators.swift:69:47: warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
67 | /// - Returns: A publisher that raises a debugger signal upon receiving a failure.
68 | public func breakpointOnError() -> Publishers.Breakpoint<Self> {
69 | Publishers.Breakpoint(upstream: self) { (completion) -> Bool in
| `- warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
70 | switch completion {
71 | case .finished: return false
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Breakpoint/Breakpoint.swift:41:16: note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
39 | /// - receiveOutput: A closure that executes when the publisher receives output from the upstream publisher, and can raise a debugger signal by returning a true Boolean value.
40 | /// - receiveCompletion: A closure that executes when the publisher receives completion, and can raise a debugger signal by returning a true Boolean value.
41 | public init(upstream: Upstream,
| `- note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
42 | receiveSubscription: ((Subscription) -> Bool)? = nil,
43 | receiveOutput: ((Upstream.Output) -> Bool)? = nil,
[#TrailingClosureMatching]: <https://docs.swift.org/compiler/documentation/diagnostics/trailing-closure-matching>
[57/139] Compiling PublisherKit Publisher+Subscribers.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:10:12: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
8 | import Foundation
9 |
10 | open class AsynchronousOperation: Operation {
| `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
11 |
12 | override open var isAsynchronous: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:57:13: warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
55 |
56 | /* Used By Operation Queue when conforms to Scheduler protocol */
57 | final class AsynchronousBlockOperation: AsynchronousOperation {
| `- warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
58 |
59 | private var block: (() -> Void)?
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Publisher/Publisher+Operators.swift:69:47: warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
67 | /// - Returns: A publisher that raises a debugger signal upon receiving a failure.
68 | public func breakpointOnError() -> Publishers.Breakpoint<Self> {
69 | Publishers.Breakpoint(upstream: self) { (completion) -> Bool in
| `- warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
70 | switch completion {
71 | case .finished: return false
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Breakpoint/Breakpoint.swift:41:16: note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
39 | /// - receiveOutput: A closure that executes when the publisher receives output from the upstream publisher, and can raise a debugger signal by returning a true Boolean value.
40 | /// - receiveCompletion: A closure that executes when the publisher receives completion, and can raise a debugger signal by returning a true Boolean value.
41 | public init(upstream: Upstream,
| `- note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
42 | receiveSubscription: ((Subscription) -> Bool)? = nil,
43 | receiveOutput: ((Upstream.Output) -> Bool)? = nil,
[#TrailingClosureMatching]: <https://docs.swift.org/compiler/documentation/diagnostics/trailing-closure-matching>
[58/139] Compiling PublisherKit Publisher.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:10:12: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
8 | import Foundation
9 |
10 | open class AsynchronousOperation: Operation {
| `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
11 |
12 | override open var isAsynchronous: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Operations/Asynchronous Operation.swift:57:13: warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
55 |
56 | /* Used By Operation Queue when conforms to Scheduler protocol */
57 | final class AsynchronousBlockOperation: AsynchronousOperation {
| `- warning: class 'AsynchronousBlockOperation' must restate inherited '@unchecked Sendable' conformance
58 |
59 | private var block: (() -> Void)?
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Protocols/Publisher/Publisher+Operators.swift:69:47: warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
67 | /// - Returns: A publisher that raises a debugger signal upon receiving a failure.
68 | public func breakpointOnError() -> Publishers.Breakpoint<Self> {
69 | Publishers.Breakpoint(upstream: self) { (completion) -> Bool in
| `- warning: backward matching of the unlabeled trailing closure is deprecated; label the argument with 'receiveCompletion' to suppress this warning [#TrailingClosureMatching]
70 | switch completion {
71 | case .finished: return false
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Breakpoint/Breakpoint.swift:41:16: note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
39 | /// - receiveOutput: A closure that executes when the publisher receives output from the upstream publisher, and can raise a debugger signal by returning a true Boolean value.
40 | /// - receiveCompletion: A closure that executes when the publisher receives completion, and can raise a debugger signal by returning a true Boolean value.
41 | public init(upstream: Upstream,
| `- note: 'init(upstream:receiveSubscription:receiveOutput:receiveCompletion:)' declared here
42 | receiveSubscription: ((Subscription) -> Bool)? = nil,
43 | receiveOutput: ((Upstream.Output) -> Bool)? = nil,
[#TrailingClosureMatching]: <https://docs.swift.org/compiler/documentation/diagnostics/trailing-closure-matching>
[59/139] Compiling PublisherKit Data Task.swift
[60/139] Compiling PublisherKit Download Task.swift
[61/139] Compiling PublisherKit Upload Task.swift
[62/139] Compiling PublisherKit Validate.swift
[63/139] Compiling PublisherKit Zip.swift
[64/139] Compiling PublisherKit Dispatch Queue.swift
[65/139] Compiling PublisherKit Immediate Scheduler.swift
[66/139] Compiling PublisherKit Operation Queue.swift
[67/139] Compiling PublisherKit Run Loop.swift
[68/139] Compiling PublisherKit Current Value Subject.swift
[69/139] Compiling PublisherKit Passthrough Subject.swift
[70/139] Compiling PublisherKit Any Subscriber.swift
[71/139] Compiling PublisherKit Assign No Retain.swift
[72/139] Compiling PublisherKit Compact Map.swift
[73/139] Compiling PublisherKit Comparison.swift
[74/139] Compiling PublisherKit Concatenate.swift
[75/139] Compiling PublisherKit Contains Where.swift
[76/139] Compiling PublisherKit Contains.swift
[77/139] Compiling PublisherKit Count.swift
[78/139] Compiling PublisherKit Debounce.swift
[79/139] Compiling PublisherKit Decode.swift
[80/139] Compiling PublisherKit Deferred.swift
[81/139] Compiling PublisherKit Delay.swift
[82/139] Compiling PublisherKit Drop Until Output.swift
[83/139] Compiling PublisherKit Drop While.swift
[84/139] Compiling PublisherKit Drop.swift
[85/139] Compiling PublisherKit Empty Publisher.swift
[86/139] Compiling PublisherKit Encode.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Handle Events/Handle Events.swift:69:55: warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
9 |
10 | /// A publisher that performs the specified closures when publisher events occur.
11 | public struct HandleEvents<Upstream: Publisher>: Publisher {
| `- note: 'Upstream' previously declared here
12 |
13 | public typealias Output = Upstream.Output
:
67 |
68 | // MARK: HANDLE EVENTS SINK
69 | private final class Inner<Downstream: Subscriber, Upstream: Publisher>: Subscriber, Subscription, CustomStringConvertible, CustomPlaygroundDisplayConvertible, CustomReflectable where Downstream.Input == Upstream.Output, Downstream.Failure == Upstream.Failure {
| `- warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
70 |
71 | typealias Input = Upstream.Output
[87/139] Compiling PublisherKit Fail.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Handle Events/Handle Events.swift:69:55: warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
9 |
10 | /// A publisher that performs the specified closures when publisher events occur.
11 | public struct HandleEvents<Upstream: Publisher>: Publisher {
| `- note: 'Upstream' previously declared here
12 |
13 | public typealias Output = Upstream.Output
:
67 |
68 | // MARK: HANDLE EVENTS SINK
69 | private final class Inner<Downstream: Subscriber, Upstream: Publisher>: Subscriber, Subscription, CustomStringConvertible, CustomPlaygroundDisplayConvertible, CustomReflectable where Downstream.Input == Upstream.Output, Downstream.Failure == Upstream.Failure {
| `- warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
70 |
71 | typealias Input = Upstream.Output
[88/139] Compiling PublisherKit Filter.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Handle Events/Handle Events.swift:69:55: warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
9 |
10 | /// A publisher that performs the specified closures when publisher events occur.
11 | public struct HandleEvents<Upstream: Publisher>: Publisher {
| `- note: 'Upstream' previously declared here
12 |
13 | public typealias Output = Upstream.Output
:
67 |
68 | // MARK: HANDLE EVENTS SINK
69 | private final class Inner<Downstream: Subscriber, Upstream: Publisher>: Subscriber, Subscription, CustomStringConvertible, CustomPlaygroundDisplayConvertible, CustomReflectable where Downstream.Input == Upstream.Output, Downstream.Failure == Upstream.Failure {
| `- warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
70 |
71 | typealias Input = Upstream.Output
[89/139] Compiling PublisherKit First.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Handle Events/Handle Events.swift:69:55: warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
9 |
10 | /// A publisher that performs the specified closures when publisher events occur.
11 | public struct HandleEvents<Upstream: Publisher>: Publisher {
| `- note: 'Upstream' previously declared here
12 |
13 | public typealias Output = Upstream.Output
:
67 |
68 | // MARK: HANDLE EVENTS SINK
69 | private final class Inner<Downstream: Subscriber, Upstream: Publisher>: Subscriber, Subscription, CustomStringConvertible, CustomPlaygroundDisplayConvertible, CustomReflectable where Downstream.Input == Upstream.Output, Downstream.Failure == Upstream.Failure {
| `- warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
70 |
71 | typealias Input = Upstream.Output
[90/139] Compiling PublisherKit Flat Map.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Handle Events/Handle Events.swift:69:55: warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
9 |
10 | /// A publisher that performs the specified closures when publisher events occur.
11 | public struct HandleEvents<Upstream: Publisher>: Publisher {
| `- note: 'Upstream' previously declared here
12 |
13 | public typealias Output = Upstream.Output
:
67 |
68 | // MARK: HANDLE EVENTS SINK
69 | private final class Inner<Downstream: Subscriber, Upstream: Publisher>: Subscriber, Subscription, CustomStringConvertible, CustomPlaygroundDisplayConvertible, CustomReflectable where Downstream.Input == Upstream.Output, Downstream.Failure == Upstream.Failure {
| `- warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
70 |
71 | typealias Input = Upstream.Output
[91/139] Compiling PublisherKit Future.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Handle Events/Handle Events.swift:69:55: warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
9 |
10 | /// A publisher that performs the specified closures when publisher events occur.
11 | public struct HandleEvents<Upstream: Publisher>: Publisher {
| `- note: 'Upstream' previously declared here
12 |
13 | public typealias Output = Upstream.Output
:
67 |
68 | // MARK: HANDLE EVENTS SINK
69 | private final class Inner<Downstream: Subscriber, Upstream: Publisher>: Subscriber, Subscription, CustomStringConvertible, CustomPlaygroundDisplayConvertible, CustomReflectable where Downstream.Input == Upstream.Output, Downstream.Failure == Upstream.Failure {
| `- warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
70 |
71 | typealias Input = Upstream.Output
[92/139] Compiling PublisherKit Handle Events.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Handle Events/Handle Events.swift:69:55: warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
9 |
10 | /// A publisher that performs the specified closures when publisher events occur.
11 | public struct HandleEvents<Upstream: Publisher>: Publisher {
| `- note: 'Upstream' previously declared here
12 |
13 | public typealias Output = Upstream.Output
:
67 |
68 | // MARK: HANDLE EVENTS SINK
69 | private final class Inner<Downstream: Subscriber, Upstream: Publisher>: Subscriber, Subscription, CustomStringConvertible, CustomPlaygroundDisplayConvertible, CustomReflectable where Downstream.Input == Upstream.Output, Downstream.Failure == Upstream.Failure {
| `- warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
70 |
71 | typealias Input = Upstream.Output
[93/139] Compiling PublisherKit Ignore Output.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Handle Events/Handle Events.swift:69:55: warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
9 |
10 | /// A publisher that performs the specified closures when publisher events occur.
11 | public struct HandleEvents<Upstream: Publisher>: Publisher {
| `- note: 'Upstream' previously declared here
12 |
13 | public typealias Output = Upstream.Output
:
67 |
68 | // MARK: HANDLE EVENTS SINK
69 | private final class Inner<Downstream: Subscriber, Upstream: Publisher>: Subscriber, Subscription, CustomStringConvertible, CustomPlaygroundDisplayConvertible, CustomReflectable where Downstream.Input == Upstream.Output, Downstream.Failure == Upstream.Failure {
| `- warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
70 |
71 | typealias Input = Upstream.Output
[94/139] Compiling PublisherKit Just+Operators.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Handle Events/Handle Events.swift:69:55: warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
9 |
10 | /// A publisher that performs the specified closures when publisher events occur.
11 | public struct HandleEvents<Upstream: Publisher>: Publisher {
| `- note: 'Upstream' previously declared here
12 |
13 | public typealias Output = Upstream.Output
:
67 |
68 | // MARK: HANDLE EVENTS SINK
69 | private final class Inner<Downstream: Subscriber, Upstream: Publisher>: Subscriber, Subscription, CustomStringConvertible, CustomPlaygroundDisplayConvertible, CustomReflectable where Downstream.Input == Upstream.Output, Downstream.Failure == Upstream.Failure {
| `- warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
70 |
71 | typealias Input = Upstream.Output
[95/139] Compiling PublisherKit Just.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Handle Events/Handle Events.swift:69:55: warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
9 |
10 | /// A publisher that performs the specified closures when publisher events occur.
11 | public struct HandleEvents<Upstream: Publisher>: Publisher {
| `- note: 'Upstream' previously declared here
12 |
13 | public typealias Output = Upstream.Output
:
67 |
68 | // MARK: HANDLE EVENTS SINK
69 | private final class Inner<Downstream: Subscriber, Upstream: Publisher>: Subscriber, Subscription, CustomStringConvertible, CustomPlaygroundDisplayConvertible, CustomReflectable where Downstream.Input == Upstream.Output, Downstream.Failure == Upstream.Failure {
| `- warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
70 |
71 | typealias Input = Upstream.Output
[96/139] Compiling PublisherKit Last.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Handle Events/Handle Events.swift:69:55: warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
9 |
10 | /// A publisher that performs the specified closures when publisher events occur.
11 | public struct HandleEvents<Upstream: Publisher>: Publisher {
| `- note: 'Upstream' previously declared here
12 |
13 | public typealias Output = Upstream.Output
:
67 |
68 | // MARK: HANDLE EVENTS SINK
69 | private final class Inner<Downstream: Subscriber, Upstream: Publisher>: Subscriber, Subscription, CustomStringConvertible, CustomPlaygroundDisplayConvertible, CustomReflectable where Downstream.Input == Upstream.Output, Downstream.Failure == Upstream.Failure {
| `- warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
70 |
71 | typealias Input = Upstream.Output
[97/139] Compiling PublisherKit Make Connectable.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Handle Events/Handle Events.swift:69:55: warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
9 |
10 | /// A publisher that performs the specified closures when publisher events occur.
11 | public struct HandleEvents<Upstream: Publisher>: Publisher {
| `- note: 'Upstream' previously declared here
12 |
13 | public typealias Output = Upstream.Output
:
67 |
68 | // MARK: HANDLE EVENTS SINK
69 | private final class Inner<Downstream: Subscriber, Upstream: Publisher>: Subscriber, Subscription, CustomStringConvertible, CustomPlaygroundDisplayConvertible, CustomReflectable where Downstream.Input == Upstream.Output, Downstream.Failure == Upstream.Failure {
| `- warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
70 |
71 | typealias Input = Upstream.Output
[98/139] Compiling PublisherKit Map Error.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Handle Events/Handle Events.swift:69:55: warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
9 |
10 | /// A publisher that performs the specified closures when publisher events occur.
11 | public struct HandleEvents<Upstream: Publisher>: Publisher {
| `- note: 'Upstream' previously declared here
12 |
13 | public typealias Output = Upstream.Output
:
67 |
68 | // MARK: HANDLE EVENTS SINK
69 | private final class Inner<Downstream: Subscriber, Upstream: Publisher>: Subscriber, Subscription, CustomStringConvertible, CustomPlaygroundDisplayConvertible, CustomReflectable where Downstream.Input == Upstream.Output, Downstream.Failure == Upstream.Failure {
| `- warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
70 |
71 | typealias Input = Upstream.Output
[99/139] Compiling PublisherKit Map Keypath.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherKit/Publishers/Handle Events/Handle Events.swift:69:55: warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
9 |
10 | /// A publisher that performs the specified closures when publisher events occur.
11 | public struct HandleEvents<Upstream: Publisher>: Publisher {
| `- note: 'Upstream' previously declared here
12 |
13 | public typealias Output = Upstream.Output
:
67 |
68 | // MARK: HANDLE EVENTS SINK
69 | private final class Inner<Downstream: Subscriber, Upstream: Publisher>: Subscriber, Subscription, CustomStringConvertible, CustomPlaygroundDisplayConvertible, CustomReflectable where Downstream.Input == Upstream.Output, Downstream.Failure == Upstream.Failure {
| `- warning: generic parameter 'Upstream' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
70 |
71 | typealias Input = Upstream.Output
[100/139] Compiling PublisherKit Abstract Combine Latest.swift
[101/139] Compiling PublisherKit Abstract Zip.swift
[102/139] Compiling PublisherKit Bindable Value.swift
[103/139] Compiling PublisherKit Any Cancellable.swift
[104/139] Compiling PublisherKit JSONDecoder.swift
[105/139] Compiling PublisherKit JSONEncoder.swift
[106/139] Compiling PublisherKit PropertyListDecoder.swift
[107/139] Compiling PublisherKit PropertyListEncoder.swift
[108/139] Compiling PublisherKit Combine Identifier.swift
[109/139] Compiling PublisherKit HTTP Error.swift
[110/139] Compiling PublisherKit URLError.swift
[111/139] Compiling PublisherKit Array+Extension.swift
[112/139] Compiling PublisherKit Dictionary+Extension.swift
[113/139] Compiling PublisherKit Optional+Extension.swift
[114/139] Compiling PublisherKit Map.swift
[115/139] Compiling PublisherKit First Match.swift
[116/139] Compiling PublisherKit Matches.swift
[117/139] Compiling PublisherKit Measure Interval.swift
[118/139] Compiling PublisherKit Merge.swift
[119/139] Compiling PublisherKit _Merged.swift
[120/139] Compiling PublisherKit Multicast.swift
[121/139] Compiling PublisherKit NSObject.swift
[122/139] Compiling PublisherKit Notification Center.swift
[123/139] Compiling PublisherKit Optional+Operators.swift
[124/139] Compiling PublisherKit Optional.swift
[125/139] Compiling PublisherKit Output.swift
[126/139] Compiling PublisherKit Prefix Until Output.swift
[127/139] Compiling PublisherKit Sequence+Operators.swift
[128/139] Compiling PublisherKit Sequence.swift
[129/139] Compiling PublisherKit Set Failure Type.swift
[130/139] Compiling PublisherKit Share.swift
[131/139] Compiling PublisherKit Subscribe On.swift
[132/139] Compiling PublisherKit Swift To Latest.swift
[133/139] Compiling PublisherKit Throttle.swift
[134/139] Compiling PublisherKit Timeout.swift
[135/139] Compiling PublisherKit Timer.swift
[136/139] Compiling PublisherKit NSTextField.swift
[137/139] Compiling PublisherKit NSTextView.swift
[138/139] Compiling PublisherKit UITextField.swift
[139/139] Compiling PublisherKit UITextView.swift
Build complete! (8.71s)
Build complete.
{
"cxx_language_standard" : "c++1z",
"dependencies" : [
],
"manifest_display_name" : "PublisherKit",
"name" : "PublisherKit",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "8.0"
},
{
"name" : "macos",
"version" : "10.10"
},
{
"name" : "tvos",
"version" : "9.0"
},
{
"name" : "watchos",
"version" : "3.0"
}
],
"products" : [
{
"name" : "PublisherKit",
"targets" : [
"PublisherKit"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "PublisherKitTests",
"module_type" : "SwiftTarget",
"name" : "PublisherKitTests",
"path" : "Tests/PublisherKitTests",
"sources" : [
"PublisherKitTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"PublisherKit"
],
"type" : "test"
},
{
"c99name" : "PublisherKitHelpers",
"module_type" : "ClangTarget",
"name" : "PublisherKitHelpers",
"path" : "Sources/PublisherKitHelpers",
"product_memberships" : [
"PublisherKit"
],
"sources" : [
"PublisherKitHelpers.cpp"
],
"type" : "library"
},
{
"c99name" : "PublisherKit",
"module_type" : "SwiftTarget",
"name" : "PublisherKit",
"path" : "Sources/PublisherKit",
"product_memberships" : [
"PublisherKit"
],
"sources" : [
"Abstract Combine Latest/Abstract Combine Latest.swift",
"Abstract Zip/Abstract Zip.swift",
"Bindable/Bindable Value.swift",
"Cancellables/Any/Any Cancellable.swift",
"Codable/JSONDecoder.swift",
"Codable/JSONEncoder.swift",
"Codable/PropertyListDecoder.swift",
"Codable/PropertyListEncoder.swift",
"Combine Identifier/Combine Identifier.swift",
"Error/HTTP Error.swift",
"Error/URLError.swift",
"Extensions/Array+Extension.swift",
"Extensions/Dictionary+Extension.swift",
"Extensions/Optional+Extension.swift",
"Extensions/Result+Extension.swift",
"Extensions/URL+Extension.swift",
"Extensions/URLRequest+Extension.swift",
"Locks/Locks.swift",
"Logger/Logger.swift",
"Operations/Asynchronous Operation.swift",
"Protocols/Cancellable/Cancellable.swift",
"Protocols/Connectable Publisher/Connectable Publisher.swift",
"Protocols/Custom Combine Identifier Convertible/Custom Combine Identifier Convertible.swift",
"Protocols/Decoder/Top Level Decoder.swift",
"Protocols/Encoder/Top Level Encoder.swift",
"Protocols/Publisher/Publisher+Operators.swift",
"Protocols/Publisher/Publisher+Subscribers.swift",
"Protocols/Publisher/Publisher.swift",
"Protocols/Scheduler/Scheduler.swift",
"Protocols/Subject/Subject.swift",
"Protocols/Subscriber/Subscriber.swift",
"Protocols/Subscription/Subscription.swift",
"Protocols/__KeyValueObservingPKPublisher/__KeyValueObservingPKPublisher.swift",
"Publishers/All Satisfy/All Satisfy.swift",
"Publishers/Any/Any Publisher.swift",
"Publishers/Assert No Failure/Assert No Failure.swift",
"Publishers/Autoconnect/Autoconnect.swift",
"Publishers/Breakpoint/Breakpoint.swift",
"Publishers/Buffer/Buffer.swift",
"Publishers/Catch/Catch.swift",
"Publishers/Collect/Collect.swift",
"Publishers/Combine Latest/Combine Latest.swift",
"Publishers/Compact Map/Compact Map.swift",
"Publishers/Comparison/Comparison.swift",
"Publishers/Concatenate/Concatenate.swift",
"Publishers/Contains Where/Contains Where.swift",
"Publishers/Contains/Contains.swift",
"Publishers/Count/Count.swift",
"Publishers/Debounce/Debounce.swift",
"Publishers/Decode/Decode.swift",
"Publishers/Deferred/Deferred.swift",
"Publishers/Delay/Delay.swift",
"Publishers/Drop Until Output/Drop Until Output.swift",
"Publishers/Drop While/Drop While.swift",
"Publishers/Drop/Drop.swift",
"Publishers/Empty/Empty Publisher.swift",
"Publishers/Encode/Encode.swift",
"Publishers/Fail/Fail.swift",
"Publishers/Filter/Filter.swift",
"Publishers/First/First.swift",
"Publishers/Flat Map/Flat Map.swift",
"Publishers/Future/Future.swift",
"Publishers/Handle Events/Handle Events.swift",
"Publishers/Ignore Output/Ignore Output.swift",
"Publishers/Just/Just+Operators.swift",
"Publishers/Just/Just.swift",
"Publishers/Last/Last.swift",
"Publishers/Make Connectable/Make Connectable.swift",
"Publishers/Map Error/Map Error.swift",
"Publishers/Map Keypath/Map Keypath.swift",
"Publishers/Map/Map.swift",
"Publishers/Matches/First Match.swift",
"Publishers/Matches/Matches.swift",
"Publishers/Measure Interval/Measure Interval.swift",
"Publishers/Merge/Merge.swift",
"Publishers/Merge/_Merged.swift",
"Publishers/Multicast/Multicast.swift",
"Publishers/NSObject/NSObject.swift",
"Publishers/Notification Center/Notification Center.swift",
"Publishers/Optional/Optional+Operators.swift",
"Publishers/Optional/Optional.swift",
"Publishers/Output/Output.swift",
"Publishers/Prefix Until Output/Prefix Until Output.swift",
"Publishers/Prefix While/Prefix While.swift",
"Publishers/Print/Print.swift",
"Publishers/Publishers.swift",
"Publishers/Receive On/Receive On.swift",
"Publishers/Record/Record.swift",
"Publishers/Reduce/Reduce.swift",
"Publishers/Remove Duplicates/Remove Duplicates.swift",
"Publishers/Replace Empty/Replace Empty.swift",
"Publishers/Replace Error/Replace Error.swift",
"Publishers/Result/Result+Operators.swift",
"Publishers/Result/Result.swift",
"Publishers/Retry/Retry.swift",
"Publishers/Scan/Scan.swift",
"Publishers/Sequence/Sequence+Operators.swift",
"Publishers/Sequence/Sequence.swift",
"Publishers/Set Failure Type/Set Failure Type.swift",
"Publishers/Share/Share.swift",
"Publishers/Subscribe On/Subscribe On.swift",
"Publishers/Switch To Latest/Swift To Latest.swift",
"Publishers/Throttle/Throttle.swift",
"Publishers/Timeout/Timeout.swift",
"Publishers/Timer/Timer.swift",
"Publishers/UI/App Kit/NSTextField.swift",
"Publishers/UI/App Kit/NSTextView.swift",
"Publishers/UI/UI Kit/UITextField.swift",
"Publishers/UI/UI Kit/UITextView.swift",
"Publishers/URLSession/Data Task.swift",
"Publishers/URLSession/Download Task.swift",
"Publishers/URLSession/Upload Task.swift",
"Publishers/URLSession/Validate.swift",
"Publishers/Zip/Zip.swift",
"Schedulers/Dispatch Queue.swift",
"Schedulers/Immediate Scheduler.swift",
"Schedulers/Operation Queue.swift",
"Schedulers/Run Loop.swift",
"Subjects/Current Value Subject.swift",
"Subjects/Passthrough Subject.swift",
"Subscribers/Any/Any Subscriber.swift",
"Subscribers/Assign/Assign No Retain.swift",
"Subscribers/Assign/Assign.swift",
"Subscribers/Completion/Completion.swift",
"Subscribers/Demand/Demand.swift",
"Subscribers/Internal/Filter Producer.swift",
"Subscribers/Internal/PartialCompletion.swift",
"Subscribers/Internal/Reduce Producer.swift",
"Subscribers/Internal/Subject Subscriber.swift",
"Subscribers/OnCompletion/OnCompletion.swift",
"Subscribers/Sink/Sink.swift",
"Subscribers/Subscribers.swift",
"Subscriptions/Empty/Empty.swift",
"Subscriptions/Internal/Subscription Status.swift",
"Subscriptions/Subscriptions.swift"
],
"target_dependencies" : [
"PublisherKitHelpers"
],
"type" : "library"
}
],
"tools_version" : "5.1"
}
Done.