The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of Afluent, reference main (1c9384), with Swift 6.2 (beta) for macOS (SPM) on 18 Jun 2025 17:39:15 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Tyler-Keith-Thompson/Afluent.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/Tyler-Keith-Thompson/Afluent
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 1c93840 [retry-on-type] - Added retry on cast - TT (#190)
Cloned https://github.com/Tyler-Keith-Thompson/Afluent.git
Revision (git rev-parse @):
1c938405ee9df0bdbe64699abde145dddbdfcf4f
SUCCESS checkout https://github.com/Tyler-Keith-Thompson/Afluent.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/Tyler-Keith-Thompson/Afluent.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/7] Write sources
[5/7] Write swift-version-1EA4D86E10B52AF.txt
[6/7] Compiling _AtomicsShims.c
[8/26] Compiling Atomics UnsafeAtomicLazyReference.swift
[9/26] Compiling Atomics IntegerOperations.swift
[10/26] Compiling Atomics DoubleWord.swift
[11/26] Compiling Atomics ManagedAtomic.swift
[12/26] Compiling Atomics ManagedAtomicLazyReference.swift
[13/26] Compiling Atomics UnsafeAtomic.swift
[14/27] Compiling Atomics AtomicValue.swift
[15/27] Compiling Atomics AtomicMemoryOrderings.swift
[16/27] Compiling Atomics AtomicReference.swift
[17/27] Compiling Atomics AtomicStorage.swift
[18/27] Compiling Atomics AtomicInteger.swift
[19/27] Compiling Atomics AtomicOptionalWrappable.swift
[20/27] Compiling Atomics PointerConformances.swift
[21/27] Compiling Atomics Primitives.native.swift
[22/27] Compiling Atomics AtomicBool.swift
[23/27] Compiling Atomics IntegerConformances.swift
[24/27] Compiling Atomics Unmanaged extensions.swift
[25/27] Compiling Atomics OptionalRawRepresentable.swift
[26/27] Compiling Atomics RawRepresentable.swift
[27/27] Emitting module Atomics
[28/104] Emitting module Afluent
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:20:26: warning: using '@_implementationOnly' without enabling library evolution for 'Afluent' may lead to instability during execution
 18 |
 19 | #if canImport(Darwin)
 20 |     @_implementationOnly import Darwin
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'Afluent' may lead to instability during execution
 21 | #elseif canImport(Glibc)
 22 |     @_implementationOnly import Glibc
[29/112] Compiling Afluent SingleValueChannel.swift
[30/112] Compiling Afluent SingleValueSubject.swift
[31/112] Compiling Afluent Timeout.swift
[32/112] Compiling Afluent ToAsyncSequence.swift
[33/112] Compiling Afluent UnwrapOrThrow.swift
[34/112] Compiling Afluent WithUnretained.swift
[35/112] Compiling Afluent Workers.swift
[36/112] Compiling Afluent Zip.swift
[37/112] Compiling Afluent DecodeSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/DelaySequence.swift:36:49: warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
34 |                     Task {
35 |                         do {
36 |                             for try await el in upstream {
   |                                                 `- warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
37 |                                 continuation.yield((clock.now, el))
38 |                             }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/FlatMapSequence.swift:40:76: warning: capture of non-sendable type 'SegmentOfResult.AsyncIterator.Type' in an isolated closure
38 |                                                 group.addTask {
39 |                                                     try Task.checkCancellation()
40 |                                                     for try await e in try await transform(el) {
   |                                                                            `- warning: capture of non-sendable type 'SegmentOfResult.AsyncIterator.Type' in an isolated closure
41 |                                                         continuation.yield(e)
42 |                                                     }
[38/112] Compiling Afluent Deferred.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/DelaySequence.swift:36:49: warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
34 |                     Task {
35 |                         do {
36 |                             for try await el in upstream {
   |                                                 `- warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
37 |                                 continuation.yield((clock.now, el))
38 |                             }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/FlatMapSequence.swift:40:76: warning: capture of non-sendable type 'SegmentOfResult.AsyncIterator.Type' in an isolated closure
38 |                                                 group.addTask {
39 |                                                     try Task.checkCancellation()
40 |                                                     for try await e in try await transform(el) {
   |                                                                            `- warning: capture of non-sendable type 'SegmentOfResult.AsyncIterator.Type' in an isolated closure
41 |                                                         continuation.yield(e)
42 |                                                     }
[39/112] Compiling Afluent DelaySequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/DelaySequence.swift:36:49: warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
34 |                     Task {
35 |                         do {
36 |                             for try await el in upstream {
   |                                                 `- warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
37 |                                 continuation.yield((clock.now, el))
38 |                             }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/FlatMapSequence.swift:40:76: warning: capture of non-sendable type 'SegmentOfResult.AsyncIterator.Type' in an isolated closure
38 |                                                 group.addTask {
39 |                                                     try Task.checkCancellation()
40 |                                                     for try await e in try await transform(el) {
   |                                                                            `- warning: capture of non-sendable type 'SegmentOfResult.AsyncIterator.Type' in an isolated closure
41 |                                                         continuation.yield(e)
42 |                                                     }
[40/112] Compiling Afluent DematerializeSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/DelaySequence.swift:36:49: warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
34 |                     Task {
35 |                         do {
36 |                             for try await el in upstream {
   |                                                 `- warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
37 |                                 continuation.yield((clock.now, el))
38 |                             }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/FlatMapSequence.swift:40:76: warning: capture of non-sendable type 'SegmentOfResult.AsyncIterator.Type' in an isolated closure
38 |                                                 group.addTask {
39 |                                                     try Task.checkCancellation()
40 |                                                     for try await e in try await transform(el) {
   |                                                                            `- warning: capture of non-sendable type 'SegmentOfResult.AsyncIterator.Type' in an isolated closure
41 |                                                         continuation.yield(e)
42 |                                                     }
[41/112] Compiling Afluent DiscardOutputSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/DelaySequence.swift:36:49: warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
34 |                     Task {
35 |                         do {
36 |                             for try await el in upstream {
   |                                                 `- warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
37 |                                 continuation.yield((clock.now, el))
38 |                             }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/FlatMapSequence.swift:40:76: warning: capture of non-sendable type 'SegmentOfResult.AsyncIterator.Type' in an isolated closure
38 |                                                 group.addTask {
39 |                                                     try Task.checkCancellation()
40 |                                                     for try await e in try await transform(el) {
   |                                                                            `- warning: capture of non-sendable type 'SegmentOfResult.AsyncIterator.Type' in an isolated closure
41 |                                                         continuation.yield(e)
42 |                                                     }
[42/112] Compiling Afluent EncodeSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/DelaySequence.swift:36:49: warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
34 |                     Task {
35 |                         do {
36 |                             for try await el in upstream {
   |                                                 `- warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
37 |                                 continuation.yield((clock.now, el))
38 |                             }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/FlatMapSequence.swift:40:76: warning: capture of non-sendable type 'SegmentOfResult.AsyncIterator.Type' in an isolated closure
38 |                                                 group.addTask {
39 |                                                     try Task.checkCancellation()
40 |                                                     for try await e in try await transform(el) {
   |                                                                            `- warning: capture of non-sendable type 'SegmentOfResult.AsyncIterator.Type' in an isolated closure
41 |                                                         continuation.yield(e)
42 |                                                     }
[43/112] Compiling Afluent FlatMapSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/DelaySequence.swift:36:49: warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
34 |                     Task {
35 |                         do {
36 |                             for try await el in upstream {
   |                                                 `- warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
37 |                                 continuation.yield((clock.now, el))
38 |                             }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/FlatMapSequence.swift:40:76: warning: capture of non-sendable type 'SegmentOfResult.AsyncIterator.Type' in an isolated closure
38 |                                                 group.addTask {
39 |                                                     try Task.checkCancellation()
40 |                                                     for try await e in try await transform(el) {
   |                                                                            `- warning: capture of non-sendable type 'SegmentOfResult.AsyncIterator.Type' in an isolated closure
41 |                                                         continuation.yield(e)
42 |                                                     }
[44/112] Compiling Afluent GroupBySequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/DelaySequence.swift:36:49: warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
34 |                     Task {
35 |                         do {
36 |                             for try await el in upstream {
   |                                                 `- warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
37 |                                 continuation.yield((clock.now, el))
38 |                             }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/FlatMapSequence.swift:40:76: warning: capture of non-sendable type 'SegmentOfResult.AsyncIterator.Type' in an isolated closure
38 |                                                 group.addTask {
39 |                                                     try Task.checkCancellation()
40 |                                                     for try await e in try await transform(el) {
   |                                                                            `- warning: capture of non-sendable type 'SegmentOfResult.AsyncIterator.Type' in an isolated closure
41 |                                                         continuation.yield(e)
42 |                                                     }
[45/112] Compiling Afluent HandleEventsSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/DelaySequence.swift:36:49: warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
34 |                     Task {
35 |                         do {
36 |                             for try await el in upstream {
   |                                                 `- warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
37 |                                 continuation.yield((clock.now, el))
38 |                             }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/FlatMapSequence.swift:40:76: warning: capture of non-sendable type 'SegmentOfResult.AsyncIterator.Type' in an isolated closure
38 |                                                 group.addTask {
39 |                                                     try Task.checkCancellation()
40 |                                                     for try await e in try await transform(el) {
   |                                                                            `- warning: capture of non-sendable type 'SegmentOfResult.AsyncIterator.Type' in an isolated closure
41 |                                                         continuation.yield(e)
42 |                                                     }
[46/112] Compiling Afluent AnyCancellable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Subscription/AnyCancellable.swift:78:41: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
76 |         DeferredTask {
77 |             do {
78 |                 for try await output in self {
   |                                         `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
79 |                     try await receiveOutput?(output)
80 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Decode.swift:46:21: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try decoderState.decode(Success.self, from: await upstream.operation())
   |                     `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
47 |             }
48 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Decode.swift:44:14: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
42 |         }
43 |
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
   |              `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
45 |             AsynchronousOperation {
46 |                 try decoderState.decode(Success.self, from: await upstream.operation())
[47/112] Compiling Afluent AssertNoFailure.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Subscription/AnyCancellable.swift:78:41: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
76 |         DeferredTask {
77 |             do {
78 |                 for try await output in self {
   |                                         `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
79 |                     try await receiveOutput?(output)
80 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Decode.swift:46:21: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try decoderState.decode(Success.self, from: await upstream.operation())
   |                     `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
47 |             }
48 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Decode.swift:44:14: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
42 |         }
43 |
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
   |              `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
45 |             AsynchronousOperation {
46 |                 try decoderState.decode(Success.self, from: await upstream.operation())
[48/112] Compiling Afluent Assign.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Subscription/AnyCancellable.swift:78:41: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
76 |         DeferredTask {
77 |             do {
78 |                 for try await output in self {
   |                                         `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
79 |                     try await receiveOutput?(output)
80 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Decode.swift:46:21: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try decoderState.decode(Success.self, from: await upstream.operation())
   |                     `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
47 |             }
48 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Decode.swift:44:14: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
42 |         }
43 |
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
   |              `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
45 |             AsynchronousOperation {
46 |                 try decoderState.decode(Success.self, from: await upstream.operation())
[49/112] Compiling Afluent Breakpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Subscription/AnyCancellable.swift:78:41: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
76 |         DeferredTask {
77 |             do {
78 |                 for try await output in self {
   |                                         `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
79 |                     try await receiveOutput?(output)
80 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Decode.swift:46:21: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try decoderState.decode(Success.self, from: await upstream.operation())
   |                     `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
47 |             }
48 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Decode.swift:44:14: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
42 |         }
43 |
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
   |              `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
45 |             AsynchronousOperation {
46 |                 try decoderState.decode(Success.self, from: await upstream.operation())
[50/112] Compiling Afluent Catch.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Subscription/AnyCancellable.swift:78:41: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
76 |         DeferredTask {
77 |             do {
78 |                 for try await output in self {
   |                                         `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
79 |                     try await receiveOutput?(output)
80 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Decode.swift:46:21: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try decoderState.decode(Success.self, from: await upstream.operation())
   |                     `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
47 |             }
48 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Decode.swift:44:14: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
42 |         }
43 |
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
   |              `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
45 |             AsynchronousOperation {
46 |                 try decoderState.decode(Success.self, from: await upstream.operation())
[51/112] Compiling Afluent Decode.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Subscription/AnyCancellable.swift:78:41: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
76 |         DeferredTask {
77 |             do {
78 |                 for try await output in self {
   |                                         `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
79 |                     try await receiveOutput?(output)
80 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Decode.swift:46:21: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try decoderState.decode(Success.self, from: await upstream.operation())
   |                     `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
47 |             }
48 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Decode.swift:44:14: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
42 |         }
43 |
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
   |              `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
45 |             AsynchronousOperation {
46 |                 try decoderState.decode(Success.self, from: await upstream.operation())
[52/112] Compiling Afluent Delay.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Subscription/AnyCancellable.swift:78:41: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
76 |         DeferredTask {
77 |             do {
78 |                 for try await output in self {
   |                                         `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
79 |                     try await receiveOutput?(output)
80 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Decode.swift:46:21: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try decoderState.decode(Success.self, from: await upstream.operation())
   |                     `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
47 |             }
48 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Decode.swift:44:14: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
42 |         }
43 |
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
   |              `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
45 |             AsynchronousOperation {
46 |                 try decoderState.decode(Success.self, from: await upstream.operation())
[53/112] Compiling Afluent Dematerialize.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Subscription/AnyCancellable.swift:78:41: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
76 |         DeferredTask {
77 |             do {
78 |                 for try await output in self {
   |                                         `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
79 |                     try await receiveOutput?(output)
80 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Decode.swift:46:21: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try decoderState.decode(Success.self, from: await upstream.operation())
   |                     `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
47 |             }
48 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Decode.swift:44:14: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
42 |         }
43 |
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
   |              `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
45 |             AsynchronousOperation {
46 |                 try decoderState.decode(Success.self, from: await upstream.operation())
[54/112] Compiling Afluent Print.swift
[55/112] Compiling Afluent ReplaceError.swift
[56/112] Compiling Afluent ReplaceNil.swift
[57/112] Compiling Afluent Retain.swift
[58/112] Compiling Afluent Retry.swift
[59/112] Compiling Afluent RetryAfterFlatMapping.swift
[60/112] Compiling Afluent Share.swift
[61/112] Compiling Afluent ShareFromCache.swift
[62/112] Compiling Afluent DiscardOutput.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Encode.swift:46:21: warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try encoderState.encode(await upstream.operation())
   |                     `- warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
47 |             }
48 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Encode.swift:44:14: warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
42 |         }
43 |
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
   |              `- warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
45 |             AsynchronousOperation {
46 |                 try encoderState.encode(await upstream.operation())
[63/112] Compiling Afluent Encode.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Encode.swift:46:21: warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try encoderState.encode(await upstream.operation())
   |                     `- warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
47 |             }
48 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Encode.swift:44:14: warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
42 |         }
43 |
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
   |              `- warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
45 |             AsynchronousOperation {
46 |                 try encoderState.encode(await upstream.operation())
[64/112] Compiling Afluent EraseToAnyAsynchronousUnitOfWork.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Encode.swift:46:21: warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try encoderState.encode(await upstream.operation())
   |                     `- warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
47 |             }
48 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Encode.swift:44:14: warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
42 |         }
43 |
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
   |              `- warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
45 |             AsynchronousOperation {
46 |                 try encoderState.encode(await upstream.operation())
[65/112] Compiling Afluent FlatMap.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Encode.swift:46:21: warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try encoderState.encode(await upstream.operation())
   |                     `- warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
47 |             }
48 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Encode.swift:44:14: warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
42 |         }
43 |
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
   |              `- warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
45 |             AsynchronousOperation {
46 |                 try encoderState.encode(await upstream.operation())
[66/112] Compiling Afluent HandleEvents.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Encode.swift:46:21: warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try encoderState.encode(await upstream.operation())
   |                     `- warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
47 |             }
48 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Encode.swift:44:14: warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
42 |         }
43 |
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
   |              `- warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
45 |             AsynchronousOperation {
46 |                 try encoderState.encode(await upstream.operation())
[67/112] Compiling Afluent Map.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Encode.swift:46:21: warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try encoderState.encode(await upstream.operation())
   |                     `- warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
47 |             }
48 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Encode.swift:44:14: warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
42 |         }
43 |
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
   |              `- warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
45 |             AsynchronousOperation {
46 |                 try encoderState.encode(await upstream.operation())
[68/112] Compiling Afluent MapError.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Encode.swift:46:21: warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try encoderState.encode(await upstream.operation())
   |                     `- warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
47 |             }
48 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Encode.swift:44:14: warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
42 |         }
43 |
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
   |              `- warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
45 |             AsynchronousOperation {
46 |                 try encoderState.encode(await upstream.operation())
[69/112] Compiling Afluent Materialize.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Encode.swift:46:21: warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try encoderState.encode(await upstream.operation())
   |                     `- warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
47 |             }
48 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/Workers/Encode.swift:44:14: warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
42 |         }
43 |
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
   |              `- warning: capture of non-sendable type 'Encoder.Type' in an isolated closure
45 |             AsynchronousOperation {
46 |                 try encoderState.encode(await upstream.operation())
[70/112] Compiling Afluent AUOWCache+CacheUntilCompletionOrCancellation.swift
[71/112] Compiling Afluent AUOWCache+CancelAndRetry.swift
[72/112] Compiling Afluent AUOWCacheStrategy.swift
[73/112] Compiling Afluent QueueExecutor.swift
[74/112] Compiling Afluent URLSessionAdditions.swift
[75/112] Compiling Afluent AsyncSequenceCache.swift
[76/112] Compiling Afluent AsynchronousUnitOfWorkCache.swift
[77/112] Compiling Afluent CurrentValueSubject.swift
[78/112] Compiling Afluent DeferredTask.swift
[79/112] Compiling Afluent JustSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:20:26: warning: using '@_implementationOnly' without enabling library evolution for 'Afluent' may lead to instability during execution
 18 |
 19 | #if canImport(Darwin)
 20 |     @_implementationOnly import Darwin
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'Afluent' may lead to instability during execution
 21 | #elseif canImport(Glibc)
 22 |     @_implementationOnly import Glibc
[80/112] Compiling Afluent MapErrorSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:20:26: warning: using '@_implementationOnly' without enabling library evolution for 'Afluent' may lead to instability during execution
 18 |
 19 | #if canImport(Darwin)
 20 |     @_implementationOnly import Darwin
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'Afluent' may lead to instability during execution
 21 | #elseif canImport(Glibc)
 22 |     @_implementationOnly import Glibc
[81/112] Compiling Afluent MaterializeSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:20:26: warning: using '@_implementationOnly' without enabling library evolution for 'Afluent' may lead to instability during execution
 18 |
 19 | #if canImport(Darwin)
 20 |     @_implementationOnly import Darwin
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'Afluent' may lead to instability during execution
 21 | #elseif canImport(Glibc)
 22 |     @_implementationOnly import Glibc
[82/112] Compiling Afluent OutputSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:20:26: warning: using '@_implementationOnly' without enabling library evolution for 'Afluent' may lead to instability during execution
 18 |
 19 | #if canImport(Darwin)
 20 |     @_implementationOnly import Darwin
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'Afluent' may lead to instability during execution
 21 | #elseif canImport(Glibc)
 22 |     @_implementationOnly import Glibc
[83/112] Compiling Afluent PlatformLock.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:20:26: warning: using '@_implementationOnly' without enabling library evolution for 'Afluent' may lead to instability during execution
 18 |
 19 | #if canImport(Darwin)
 20 |     @_implementationOnly import Darwin
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'Afluent' may lead to instability during execution
 21 | #elseif canImport(Glibc)
 22 |     @_implementationOnly import Glibc
[84/112] Compiling Afluent PrintSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:20:26: warning: using '@_implementationOnly' without enabling library evolution for 'Afluent' may lead to instability during execution
 18 |
 19 | #if canImport(Darwin)
 20 |     @_implementationOnly import Darwin
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'Afluent' may lead to instability during execution
 21 | #elseif canImport(Glibc)
 22 |     @_implementationOnly import Glibc
[85/112] Compiling Afluent ReplaceErrorSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:20:26: warning: using '@_implementationOnly' without enabling library evolution for 'Afluent' may lead to instability during execution
 18 |
 19 | #if canImport(Darwin)
 20 |     @_implementationOnly import Darwin
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'Afluent' may lead to instability during execution
 21 | #elseif canImport(Glibc)
 22 |     @_implementationOnly import Glibc
[86/112] Compiling Afluent ReplaceNilSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:20:26: warning: using '@_implementationOnly' without enabling library evolution for 'Afluent' may lead to instability during execution
 18 |
 19 | #if canImport(Darwin)
 20 |     @_implementationOnly import Darwin
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'Afluent' may lead to instability during execution
 21 | #elseif canImport(Glibc)
 22 |     @_implementationOnly import Glibc
[87/112] Compiling Afluent RetryByBackoffStrategy.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/AnyAsyncSequence.swift:17:30: warning: capture of non-sendable type 'S.AsyncIterator.Type' in an isolated closure
15 |         public init<S: AsyncSequence & Sendable>(erasing sequence: S)
16 |         where S.Element == Element, S.Element: Sendable {
17 |             makeIterator = { AnyAsyncIterator(erasing: sequence.makeAsyncIterator()) }
   |                              `- warning: capture of non-sendable type 'S.AsyncIterator.Type' in an isolated closure
18 |         }
19 |
[88/112] Compiling Afluent RetryByCountStrategy.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/AnyAsyncSequence.swift:17:30: warning: capture of non-sendable type 'S.AsyncIterator.Type' in an isolated closure
15 |         public init<S: AsyncSequence & Sendable>(erasing sequence: S)
16 |         where S.Element == Element, S.Element: Sendable {
17 |             makeIterator = { AnyAsyncIterator(erasing: sequence.makeAsyncIterator()) }
   |                              `- warning: capture of non-sendable type 'S.AsyncIterator.Type' in an isolated closure
18 |         }
19 |
[89/112] Compiling Afluent RetryStrategy.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/AnyAsyncSequence.swift:17:30: warning: capture of non-sendable type 'S.AsyncIterator.Type' in an isolated closure
15 |         public init<S: AsyncSequence & Sendable>(erasing sequence: S)
16 |         where S.Element == Element, S.Element: Sendable {
17 |             makeIterator = { AnyAsyncIterator(erasing: sequence.makeAsyncIterator()) }
   |                              `- warning: capture of non-sendable type 'S.AsyncIterator.Type' in an isolated closure
18 |         }
19 |
[90/112] Compiling Afluent AnyAsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/AnyAsyncSequence.swift:17:30: warning: capture of non-sendable type 'S.AsyncIterator.Type' in an isolated closure
15 |         public init<S: AsyncSequence & Sendable>(erasing sequence: S)
16 |         where S.Element == Element, S.Element: Sendable {
17 |             makeIterator = { AnyAsyncIterator(erasing: sequence.makeAsyncIterator()) }
   |                              `- warning: capture of non-sendable type 'S.AsyncIterator.Type' in an isolated closure
18 |         }
19 |
[91/112] Compiling Afluent AssertNoFailureSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/AnyAsyncSequence.swift:17:30: warning: capture of non-sendable type 'S.AsyncIterator.Type' in an isolated closure
15 |         public init<S: AsyncSequence & Sendable>(erasing sequence: S)
16 |         where S.Element == Element, S.Element: Sendable {
17 |             makeIterator = { AnyAsyncIterator(erasing: sequence.makeAsyncIterator()) }
   |                              `- warning: capture of non-sendable type 'S.AsyncIterator.Type' in an isolated closure
18 |         }
19 |
[92/112] Compiling Afluent AsyncSequences.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/AnyAsyncSequence.swift:17:30: warning: capture of non-sendable type 'S.AsyncIterator.Type' in an isolated closure
15 |         public init<S: AsyncSequence & Sendable>(erasing sequence: S)
16 |         where S.Element == Element, S.Element: Sendable {
17 |             makeIterator = { AnyAsyncIterator(erasing: sequence.makeAsyncIterator()) }
   |                              `- warning: capture of non-sendable type 'S.AsyncIterator.Type' in an isolated closure
18 |         }
19 |
[93/112] Compiling Afluent BreakpointSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/AnyAsyncSequence.swift:17:30: warning: capture of non-sendable type 'S.AsyncIterator.Type' in an isolated closure
15 |         public init<S: AsyncSequence & Sendable>(erasing sequence: S)
16 |         where S.Element == Element, S.Element: Sendable {
17 |             makeIterator = { AnyAsyncIterator(erasing: sequence.makeAsyncIterator()) }
   |                              `- warning: capture of non-sendable type 'S.AsyncIterator.Type' in an isolated closure
18 |         }
19 |
[94/112] Compiling Afluent CatchSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/AnyAsyncSequence.swift:17:30: warning: capture of non-sendable type 'S.AsyncIterator.Type' in an isolated closure
15 |         public init<S: AsyncSequence & Sendable>(erasing sequence: S)
16 |         where S.Element == Element, S.Element: Sendable {
17 |             makeIterator = { AnyAsyncIterator(erasing: sequence.makeAsyncIterator()) }
   |                              `- warning: capture of non-sendable type 'S.AsyncIterator.Type' in an isolated closure
18 |         }
19 |
[95/112] Compiling Afluent CollectSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/AnyAsyncSequence.swift:17:30: warning: capture of non-sendable type 'S.AsyncIterator.Type' in an isolated closure
15 |         public init<S: AsyncSequence & Sendable>(erasing sequence: S)
16 |         where S.Element == Element, S.Element: Sendable {
17 |             makeIterator = { AnyAsyncIterator(erasing: sequence.makeAsyncIterator()) }
   |                              `- warning: capture of non-sendable type 'S.AsyncIterator.Type' in an isolated closure
18 |         }
19 |
[96/112] Compiling Afluent RetryAfterFlatMappingSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/RetryAfterFlatMappingSequence.swift:83:48: warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
 81 |                     error: error,
 82 |                     beforeRetry: {
 83 |                         for try await _ in try await state.transform($0) {}
    |                                                `- warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
 84 |                     })
 85 |                 {
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/RetryAfterFlatMappingSequence.swift:174:48: warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
172 |                     error: error,
173 |                     beforeRetry: { err in
174 |                         for try await _ in try await state.transform(err.throwIf(not: state.error))
    |                                                `- warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
175 |                         {}
176 |                     })
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/RetryAfterFlatMappingSequence.swift:266:48: warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
264 |                     error: error,
265 |                     beforeRetry: { err in
266 |                         for try await _ in try await state.transform(err.throwIf(not: state.error))
    |                                                `- warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
267 |                         {}
268 |                     })
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/ShareSequence.swift:152:46: warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure
150 |             Task {
151 |                 do {
152 |                     for try await element in base {
    |                                              `- warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure
153 |                         State.emit(state, result: .success(element))
154 |                     }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/ThrottleSequence.swift:80:50: warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
 78 |                 self.iterationTask = Task {
 79 |                     do {
 80 |                         for try await element in upstream {
    |                                                  `- warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
 81 |                             async let _ = state.setNext(element: element, useLatest: latest)
 82 |                         }
[97/112] Compiling Afluent RetrySequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/RetryAfterFlatMappingSequence.swift:83:48: warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
 81 |                     error: error,
 82 |                     beforeRetry: {
 83 |                         for try await _ in try await state.transform($0) {}
    |                                                `- warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
 84 |                     })
 85 |                 {
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/RetryAfterFlatMappingSequence.swift:174:48: warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
172 |                     error: error,
173 |                     beforeRetry: { err in
174 |                         for try await _ in try await state.transform(err.throwIf(not: state.error))
    |                                                `- warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
175 |                         {}
176 |                     })
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/RetryAfterFlatMappingSequence.swift:266:48: warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
264 |                     error: error,
265 |                     beforeRetry: { err in
266 |                         for try await _ in try await state.transform(err.throwIf(not: state.error))
    |                                                `- warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
267 |                         {}
268 |                     })
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/ShareSequence.swift:152:46: warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure
150 |             Task {
151 |                 do {
152 |                     for try await element in base {
    |                                              `- warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure
153 |                         State.emit(state, result: .success(element))
154 |                     }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/ThrottleSequence.swift:80:50: warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
 78 |                 self.iterationTask = Task {
 79 |                     do {
 80 |                         for try await element in upstream {
    |                                                  `- warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
 81 |                             async let _ = state.setNext(element: element, useLatest: latest)
 82 |                         }
[98/112] Compiling Afluent ScanSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/RetryAfterFlatMappingSequence.swift:83:48: warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
 81 |                     error: error,
 82 |                     beforeRetry: {
 83 |                         for try await _ in try await state.transform($0) {}
    |                                                `- warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
 84 |                     })
 85 |                 {
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/RetryAfterFlatMappingSequence.swift:174:48: warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
172 |                     error: error,
173 |                     beforeRetry: { err in
174 |                         for try await _ in try await state.transform(err.throwIf(not: state.error))
    |                                                `- warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
175 |                         {}
176 |                     })
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/RetryAfterFlatMappingSequence.swift:266:48: warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
264 |                     error: error,
265 |                     beforeRetry: { err in
266 |                         for try await _ in try await state.transform(err.throwIf(not: state.error))
    |                                                `- warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
267 |                         {}
268 |                     })
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/ShareSequence.swift:152:46: warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure
150 |             Task {
151 |                 do {
152 |                     for try await element in base {
    |                                              `- warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure
153 |                         State.emit(state, result: .success(element))
154 |                     }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/ThrottleSequence.swift:80:50: warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
 78 |                 self.iterationTask = Task {
 79 |                     do {
 80 |                         for try await element in upstream {
    |                                                  `- warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
 81 |                             async let _ = state.setNext(element: element, useLatest: latest)
 82 |                         }
[99/112] Compiling Afluent ShareFromCacheSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/RetryAfterFlatMappingSequence.swift:83:48: warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
 81 |                     error: error,
 82 |                     beforeRetry: {
 83 |                         for try await _ in try await state.transform($0) {}
    |                                                `- warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
 84 |                     })
 85 |                 {
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/RetryAfterFlatMappingSequence.swift:174:48: warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
172 |                     error: error,
173 |                     beforeRetry: { err in
174 |                         for try await _ in try await state.transform(err.throwIf(not: state.error))
    |                                                `- warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
175 |                         {}
176 |                     })
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/RetryAfterFlatMappingSequence.swift:266:48: warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
264 |                     error: error,
265 |                     beforeRetry: { err in
266 |                         for try await _ in try await state.transform(err.throwIf(not: state.error))
    |                                                `- warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
267 |                         {}
268 |                     })
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/ShareSequence.swift:152:46: warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure
150 |             Task {
151 |                 do {
152 |                     for try await element in base {
    |                                              `- warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure
153 |                         State.emit(state, result: .success(element))
154 |                     }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/ThrottleSequence.swift:80:50: warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
 78 |                 self.iterationTask = Task {
 79 |                     do {
 80 |                         for try await element in upstream {
    |                                                  `- warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
 81 |                             async let _ = state.setNext(element: element, useLatest: latest)
 82 |                         }
[100/112] Compiling Afluent ShareSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/RetryAfterFlatMappingSequence.swift:83:48: warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
 81 |                     error: error,
 82 |                     beforeRetry: {
 83 |                         for try await _ in try await state.transform($0) {}
    |                                                `- warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
 84 |                     })
 85 |                 {
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/RetryAfterFlatMappingSequence.swift:174:48: warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
172 |                     error: error,
173 |                     beforeRetry: { err in
174 |                         for try await _ in try await state.transform(err.throwIf(not: state.error))
    |                                                `- warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
175 |                         {}
176 |                     })
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/RetryAfterFlatMappingSequence.swift:266:48: warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
264 |                     error: error,
265 |                     beforeRetry: { err in
266 |                         for try await _ in try await state.transform(err.throwIf(not: state.error))
    |                                                `- warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
267 |                         {}
268 |                     })
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/ShareSequence.swift:152:46: warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure
150 |             Task {
151 |                 do {
152 |                     for try await element in base {
    |                                              `- warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure
153 |                         State.emit(state, result: .success(element))
154 |                     }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/ThrottleSequence.swift:80:50: warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
 78 |                 self.iterationTask = Task {
 79 |                     do {
 80 |                         for try await element in upstream {
    |                                                  `- warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
 81 |                             async let _ = state.setNext(element: element, useLatest: latest)
 82 |                         }
[101/112] Compiling Afluent ThrottleSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/RetryAfterFlatMappingSequence.swift:83:48: warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
 81 |                     error: error,
 82 |                     beforeRetry: {
 83 |                         for try await _ in try await state.transform($0) {}
    |                                                `- warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
 84 |                     })
 85 |                 {
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/RetryAfterFlatMappingSequence.swift:174:48: warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
172 |                     error: error,
173 |                     beforeRetry: { err in
174 |                         for try await _ in try await state.transform(err.throwIf(not: state.error))
    |                                                `- warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
175 |                         {}
176 |                     })
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/RetryAfterFlatMappingSequence.swift:266:48: warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
264 |                     error: error,
265 |                     beforeRetry: { err in
266 |                         for try await _ in try await state.transform(err.throwIf(not: state.error))
    |                                                `- warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
267 |                         {}
268 |                     })
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/ShareSequence.swift:152:46: warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure
150 |             Task {
151 |                 do {
152 |                     for try await element in base {
    |                                              `- warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure
153 |                         State.emit(state, result: .success(element))
154 |                     }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/ThrottleSequence.swift:80:50: warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
 78 |                 self.iterationTask = Task {
 79 |                     do {
 80 |                         for try await element in upstream {
    |                                                  `- warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
 81 |                             async let _ = state.setNext(element: element, useLatest: latest)
 82 |                         }
[102/112] Compiling Afluent TimerSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/RetryAfterFlatMappingSequence.swift:83:48: warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
 81 |                     error: error,
 82 |                     beforeRetry: {
 83 |                         for try await _ in try await state.transform($0) {}
    |                                                `- warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
 84 |                     })
 85 |                 {
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/RetryAfterFlatMappingSequence.swift:174:48: warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
172 |                     error: error,
173 |                     beforeRetry: { err in
174 |                         for try await _ in try await state.transform(err.throwIf(not: state.error))
    |                                                `- warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
175 |                         {}
176 |                     })
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/RetryAfterFlatMappingSequence.swift:266:48: warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
264 |                     error: error,
265 |                     beforeRetry: { err in
266 |                         for try await _ in try await state.transform(err.throwIf(not: state.error))
    |                                                `- warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
267 |                         {}
268 |                     })
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/ShareSequence.swift:152:46: warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure
150 |             Task {
151 |                 do {
152 |                     for try await element in base {
    |                                              `- warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure
153 |                         State.emit(state, result: .success(element))
154 |                     }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/ThrottleSequence.swift:80:50: warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
 78 |                 self.iterationTask = Task {
 79 |                     do {
 80 |                         for try await element in upstream {
    |                                                  `- warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
 81 |                             async let _ = state.setNext(element: element, useLatest: latest)
 82 |                         }
[103/112] Compiling Afluent SerialTaskQueue.swift
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/RetryAfterFlatMappingSequence.swift:83:48: warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
 81 |                     error: error,
 82 |                     beforeRetry: {
 83 |                         for try await _ in try await state.transform($0) {}
    |                                                `- warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
 84 |                     })
 85 |                 {
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/RetryAfterFlatMappingSequence.swift:174:48: warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
172 |                     error: error,
173 |                     beforeRetry: { err in
174 |                         for try await _ in try await state.transform(err.throwIf(not: state.error))
    |                                                `- warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
175 |                         {}
176 |                     })
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/RetryAfterFlatMappingSequence.swift:266:48: warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
264 |                     error: error,
265 |                     beforeRetry: { err in
266 |                         for try await _ in try await state.transform(err.throwIf(not: state.error))
    |                                                `- warning: capture of non-sendable type 'Downstream.AsyncIterator.Type' in an isolated closure
267 |                         {}
268 |                     })
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/ShareSequence.swift:152:46: warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure
150 |             Task {
151 |                 do {
152 |                     for try await element in base {
    |                                              `- warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure
153 |                         State.emit(state, result: .success(element))
154 |                     }
/Users/admin/builder/spi-builder-workspace/Sources/Afluent/SequenceOperators/ThrottleSequence.swift:80:50: warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
 78 |                 self.iterationTask = Task {
 79 |                     do {
 80 |                         for try await element in upstream {
    |                                                  `- warning: capture of non-sendable type 'Upstream.AsyncIterator.Type' in an isolated closure
 81 |                             async let _ = state.setNext(element: element, useLatest: latest)
 82 |                         }
[104/112] Compiling Afluent TimeoutError.swift
[105/112] Compiling Afluent AsyncSequenceExtensions.swift
[106/112] Compiling Afluent ErrorExtensions.swift
[107/112] Compiling Afluent KeyPathExtensions.swift
[108/112] Compiling Afluent RecursiveLockExtensions.swift
[109/112] Compiling Afluent PassthroughSubject.swift
[110/112] Compiling Afluent AsynchronousUnitOfWork.swift
[111/112] Compiling Afluent Race.swift
[112/112] Compiling Afluent Rethrow.swift
[113/115] Emitting module AfluentTesting
[114/115] Compiling AfluentTesting WaitUntilCondition.swift
[115/115] Compiling AfluentTesting WaitUntilScheduled.swift
Build complete! (26.37s)
Fetching https://github.com/apple/swift-docc-plugin
Fetching https://github.com/AliSoftware/OHHTTPStubs.git
Fetching https://github.com/apple/swift-atomics.git
Fetching https://github.com/pointfreeco/swift-clocks.git
Fetching https://github.com/pointfreeco/swift-concurrency-extras.git
[1/1292] Fetching swift-clocks
[105/3374] Fetching swift-clocks, swift-docc-plugin
[168/4235] Fetching swift-clocks, swift-docc-plugin, swift-concurrency-extras
[237/6032] Fetching swift-clocks, swift-docc-plugin, swift-concurrency-extras, swift-atomics
[366/13932] Fetching swift-clocks, swift-docc-plugin, swift-concurrency-extras, swift-atomics, ohhttpstubs
Fetched https://github.com/apple/swift-atomics.git from cache (1.06s)
Fetched https://github.com/pointfreeco/swift-clocks.git from cache (1.06s)
[9782/10843] Fetching swift-docc-plugin, swift-concurrency-extras, ohhttpstubs
Fetched https://github.com/pointfreeco/swift-concurrency-extras.git from cache (1.14s)
Fetched https://github.com/apple/swift-docc-plugin from cache (1.14s)
Fetched https://github.com/AliSoftware/OHHTTPStubs.git from cache (1.14s)
Computing version for https://github.com/AliSoftware/OHHTTPStubs.git
Computed https://github.com/AliSoftware/OHHTTPStubs.git at 9.1.0 (3.98s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (0.42s)
Computing version for https://github.com/pointfreeco/swift-concurrency-extras.git
Computed https://github.com/pointfreeco/swift-concurrency-extras.git at 1.3.1 (0.44s)
Computing version for https://github.com/pointfreeco/swift-clocks.git
Computed https://github.com/pointfreeco/swift-clocks.git at 1.0.6 (0.43s)
Fetching https://github.com/pointfreeco/xctest-dynamic-overlay
[1/5467] Fetching xctest-dynamic-overlay
Fetched https://github.com/pointfreeco/xctest-dynamic-overlay from cache (1.32s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.4 (1.86s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3413] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.08s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.67s)
Computing version for https://github.com/pointfreeco/xctest-dynamic-overlay
Computed https://github.com/pointfreeco/xctest-dynamic-overlay at 1.5.2 (0.43s)
Creating working copy for https://github.com/AliSoftware/OHHTTPStubs.git
Working copy of https://github.com/AliSoftware/OHHTTPStubs.git resolved at 9.1.0
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.3.0
Creating working copy for https://github.com/pointfreeco/swift-concurrency-extras.git
Working copy of https://github.com/pointfreeco/swift-concurrency-extras.git resolved at 1.3.1
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.4
Creating working copy for https://github.com/pointfreeco/xctest-dynamic-overlay
Working copy of https://github.com/pointfreeco/xctest-dynamic-overlay resolved at 1.5.2
Creating working copy for https://github.com/pointfreeco/swift-clocks.git
Working copy of https://github.com/pointfreeco/swift-clocks.git resolved at 1.0.6
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-atomics",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.2.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-atomics.git"
    },
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    },
    {
      "identity" : "ohhttpstubs",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "9.1.0",
            "upper_bound" : "10.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/AliSoftware/OHHTTPStubs.git"
    },
    {
      "identity" : "swift-clocks",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.2",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-clocks.git"
    },
    {
      "identity" : "swift-concurrency-extras",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-concurrency-extras.git"
    }
  ],
  "manifest_display_name" : "Afluent",
  "name" : "Afluent",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "15.0"
    },
    {
      "name" : "tvos",
      "version" : "16.0"
    },
    {
      "name" : "watchos",
      "version" : "9.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "Afluent",
      "targets" : [
        "Afluent"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "AfluentTesting",
      "targets" : [
        "AfluentTesting"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5.10",
    "6"
  ],
  "targets" : [
    {
      "c99name" : "AfluentTests",
      "module_type" : "SwiftTarget",
      "name" : "AfluentTests",
      "path" : "Tests/AfluentTests",
      "product_dependencies" : [
        "OHHTTPStubs",
        "OHHTTPStubsSwift",
        "ConcurrencyExtras",
        "Clocks"
      ],
      "sources" : [
        "CurrentValueSubjectTests.swift",
        "DeferredTaskTests.swift",
        "ExponentialBackoffTests.swift",
        "PassthroughSubjectTests.swift",
        "QueueExecutorTests.swift",
        "SequenceTests/AnyAsyncSequenceTests.swift",
        "SequenceTests/CatchSequenceTests.swift",
        "SequenceTests/CollectSequenceTests.swift",
        "SequenceTests/DecodeSequenceTests.swift",
        "SequenceTests/DeferredSequenceTests.swift",
        "SequenceTests/DelaySequenceTests.swift",
        "SequenceTests/DiscardOutputSequenceTests.swift",
        "SequenceTests/EncodeSequenceTests.swift",
        "SequenceTests/FlatMapSequenceTests.swift",
        "SequenceTests/GroupBySequenceTests.swift",
        "SequenceTests/HandleEventsSequenceTests.swift",
        "SequenceTests/JustSequenceTests.swift",
        "SequenceTests/MapErrorSequenceTests.swift",
        "SequenceTests/MaterializeSequenceTests.swift",
        "SequenceTests/OutputSequenceTests.swift",
        "SequenceTests/ReplaceErrorSequenceTests.swift",
        "SequenceTests/ReplaceNilSequenceTests.swift",
        "SequenceTests/RetryAfterFlatMappingSequenceTests.swift",
        "SequenceTests/RetryOnAfterFlatMappingSequenceTests.swift",
        "SequenceTests/RetryOnSequenceTests.swift",
        "SequenceTests/RetrySequenceTests.swift",
        "SequenceTests/ScanSequenceTests.swift",
        "SequenceTests/ShareFromCacheSequenceTests.swift",
        "SequenceTests/ShareSequenceTests.swift",
        "SequenceTests/ThrottleSequenceTests.swift",
        "SequenceTests/TimerSequenceTests.swift",
        "SerialTaskQueueTests.swift",
        "SubscriptionTests.swift",
        "SwiftTestingBridge.swift",
        "TestHelpers/ArrayExtensions.swift",
        "TestHelpers/GeneralError.swift",
        "WorkerTests/AssignTests.swift",
        "WorkerTests/CancelTests.swift",
        "WorkerTests/CatchTests.swift",
        "WorkerTests/DecodeTests.swift",
        "WorkerTests/DelayTests.swift",
        "WorkerTests/DiscardOutputTests.swift",
        "WorkerTests/EncodeTests.swift",
        "WorkerTests/EraseToAnyAsynchronousUnitOfWorkTests.swift",
        "WorkerTests/ExecuteOnTaskExecutorTests.swift",
        "WorkerTests/ExecutePriorityTests.swift",
        "WorkerTests/FlatMapTests.swift",
        "WorkerTests/HandleEventsTests.swift",
        "WorkerTests/MapErrorTests.swift",
        "WorkerTests/MapTests.swift",
        "WorkerTests/MaterializeTests.swift",
        "WorkerTests/ReplaceErrorTests.swift",
        "WorkerTests/ReplaceNilTests.swift",
        "WorkerTests/RetainTests.swift",
        "WorkerTests/RetryAfterFlatMappingTests.swift",
        "WorkerTests/RetryOnAfterFlatMappingTests.swift",
        "WorkerTests/RetryOnTests.swift",
        "WorkerTests/RetryTests.swift",
        "WorkerTests/ShareFromCacheTests.swift",
        "WorkerTests/ShareTests.swift",
        "WorkerTests/SingleValueChannelTests.swift",
        "WorkerTests/SingleValueSubjectTests.swift",
        "WorkerTests/TimeoutTests.swift",
        "WorkerTests/ToStreamTests.swift",
        "WorkerTests/URLSessionAdditionsTests.swift",
        "WorkerTests/UnwrapOrThrowTests.swift",
        "WorkerTests/WithUnretainedTests.swift",
        "WorkerTests/ZipTests.swift"
      ],
      "target_dependencies" : [
        "Afluent",
        "AfluentTesting"
      ],
      "type" : "test"
    },
    {
      "c99name" : "AfluentTesting",
      "module_type" : "SwiftTarget",
      "name" : "AfluentTesting",
      "path" : "Sources/AfluentTesting",
      "product_memberships" : [
        "AfluentTesting"
      ],
      "sources" : [
        "WaitUntilCondition.swift",
        "WaitUntilScheduled.swift"
      ],
      "target_dependencies" : [
        "Afluent"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Afluent",
      "module_type" : "SwiftTarget",
      "name" : "Afluent",
      "path" : "Sources/Afluent",
      "product_dependencies" : [
        "Atomics"
      ],
      "product_memberships" : [
        "Afluent",
        "AfluentTesting"
      ],
      "sources" : [
        "AUOWCacheStrategies/AUOWCache+CacheUntilCompletionOrCancellation.swift",
        "AUOWCacheStrategies/AUOWCache+CancelAndRetry.swift",
        "AUOWCacheStrategies/AUOWCacheStrategy.swift",
        "Additions/QueueExecutor.swift",
        "Additions/URLSessionAdditions.swift",
        "AsyncSequenceCache.swift",
        "AsynchronousUnitOfWorkCache.swift",
        "CurrentValueSubject.swift",
        "DeferredTask.swift",
        "Errors/TimeoutError.swift",
        "Extensions/AsyncSequenceExtensions.swift",
        "Extensions/ErrorExtensions.swift",
        "Extensions/KeyPathExtensions.swift",
        "Extensions/RecursiveLockExtensions.swift",
        "PassthroughSubject.swift",
        "Protocols/AsynchronousUnitOfWork.swift",
        "Race.swift",
        "Rethrow.swift",
        "RetryStrategies/RetryByBackoffStrategy.swift",
        "RetryStrategies/RetryByCountStrategy.swift",
        "RetryStrategies/RetryStrategy.swift",
        "SequenceOperators/AnyAsyncSequence.swift",
        "SequenceOperators/AssertNoFailureSequence.swift",
        "SequenceOperators/AsyncSequences.swift",
        "SequenceOperators/BreakpointSequence.swift",
        "SequenceOperators/CatchSequence.swift",
        "SequenceOperators/CollectSequence.swift",
        "SequenceOperators/DecodeSequence.swift",
        "SequenceOperators/Deferred.swift",
        "SequenceOperators/DelaySequence.swift",
        "SequenceOperators/DematerializeSequence.swift",
        "SequenceOperators/DiscardOutputSequence.swift",
        "SequenceOperators/EncodeSequence.swift",
        "SequenceOperators/FlatMapSequence.swift",
        "SequenceOperators/GroupBySequence.swift",
        "SequenceOperators/HandleEventsSequence.swift",
        "SequenceOperators/JustSequence.swift",
        "SequenceOperators/MapErrorSequence.swift",
        "SequenceOperators/MaterializeSequence.swift",
        "SequenceOperators/OutputSequence.swift",
        "SequenceOperators/PlatformLock.swift",
        "SequenceOperators/PrintSequence.swift",
        "SequenceOperators/ReplaceErrorSequence.swift",
        "SequenceOperators/ReplaceNilSequence.swift",
        "SequenceOperators/RetryAfterFlatMappingSequence.swift",
        "SequenceOperators/RetrySequence.swift",
        "SequenceOperators/ScanSequence.swift",
        "SequenceOperators/ShareFromCacheSequence.swift",
        "SequenceOperators/ShareSequence.swift",
        "SequenceOperators/ThrottleSequence.swift",
        "SequenceOperators/TimerSequence.swift",
        "SerialTaskQueue.swift",
        "Subscription/AnyCancellable.swift",
        "Workers/AssertNoFailure.swift",
        "Workers/Assign.swift",
        "Workers/Breakpoint.swift",
        "Workers/Catch.swift",
        "Workers/Decode.swift",
        "Workers/Delay.swift",
        "Workers/Dematerialize.swift",
        "Workers/DiscardOutput.swift",
        "Workers/Encode.swift",
        "Workers/EraseToAnyAsynchronousUnitOfWork.swift",
        "Workers/FlatMap.swift",
        "Workers/HandleEvents.swift",
        "Workers/Map.swift",
        "Workers/MapError.swift",
        "Workers/Materialize.swift",
        "Workers/Print.swift",
        "Workers/ReplaceError.swift",
        "Workers/ReplaceNil.swift",
        "Workers/Retain.swift",
        "Workers/Retry.swift",
        "Workers/RetryAfterFlatMapping.swift",
        "Workers/Share.swift",
        "Workers/ShareFromCache.swift",
        "Workers/SingleValueChannel.swift",
        "Workers/SingleValueSubject.swift",
        "Workers/Timeout.swift",
        "Workers/ToAsyncSequence.swift",
        "Workers/UnwrapOrThrow.swift",
        "Workers/WithUnretained.swift",
        "Workers/Workers.swift",
        "Workers/Zip.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Done.