This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of ComposableRequest with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/sbertix/ComposableRequest.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/sbertix/ComposableRequest
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 1510263 feat!: update to `7.0.0` (#51)
Cloned https://github.com/sbertix/ComposableRequest.git
Revision (git rev-parse @):
151026359f4a2c89dcd06f6880eb4a940dcbb7bc
SUCCESS checkout https://github.com/sbertix/ComposableRequest.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/sbertix/ComposableRequest.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/5] Write sources
[4/5] Write swift-version-6F35C1178C84523A.txt
[6/13] Emitting module Storages
[7/13] Compiling Storages Storage.swift
[8/13] Compiling Storages Storable.swift
[9/13] Emitting module KeychainAccess
[10/13] Compiling KeychainAccess Keychain.swift
[11/13] Compiling Storages TransientStorage.swift
[12/13] Compiling Storages UserDefaultsStorage.swift
[13/13] Compiling Storages AnyStorage.swift
[14/65] Emitting module EncryptedStorages
[15/65] Compiling EncryptedStorages KeychainStorage.swift
[16/65] Compiling Requests DefaultResponse.swift
[17/65] Compiling Requests EndpointError.swift
[18/65] Compiling Requests NextAction.swift
[19/65] Compiling Requests NextInput.swift
[20/65] Compiling Requests Lock.swift
[21/70] Emitting module Requests
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Misc/CodableHTTPCookie.swift:11:20: warning: class 'CodableHTTPCookie' must restate inherited '@unchecked Sendable' conformance
 9 |
10 | /// A `subclass` of `HTTPCookie` conforming to `Codable`.
11 | public final class CodableHTTPCookie: HTTPCookie, Codable {
   |                    `- warning: class 'CodableHTTPCookie' must restate inherited '@unchecked Sendable' conformance
12 |     /// Init.
13 |     /// - parameter properties: A valid `Dictionary` of `Any`.
[22/70] Compiling Requests Single.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/EndpointResolver.swift:49:27: warning: capture of 'subscriber' with non-sendable type '(Result<DefaultResponse, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 47 |                 task = .init {
 48 |                     guard !Task.isCancelled else { return }
 49 |                     await subscriber(Result.async { try await resolve(request) })
    |                           |- warning: capture of 'subscriber' with non-sendable type '(Result<DefaultResponse, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                           `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 50 |                 }
 51 |             }
<unknown>:0: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/EndpointResolver.swift:49:63: warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 47 |                 task = .init {
 48 |                     guard !Task.isCancelled else { return }
 49 |                     await subscriber(Result.async { try await resolve(request) })
    |                                                               `- warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 50 |                 }
 51 |             }
<unknown>:0: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/EndpointResolver.swift:49:63: warning: capture of 'self' with non-sendable type 'Self' in an isolated closure; this is an error in the Swift 6 language mode
 47 |                 task = .init {
 48 |                     guard !Task.isCancelled else { return }
 49 |                     await subscriber(Result.async { try await resolve(request) })
    |                                                               `- warning: capture of 'self' with non-sendable type 'Self' in an isolated closure; this is an error in the Swift 6 language mode
 50 |                 }
 51 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/EndpointResolver.swift:89:17: warning: capture of 'onCancel' with non-sendable type '() -> Void?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 87 |                 }
 88 |             } onCancel: {
 89 |                 onCancel()
    |                 |- warning: capture of 'onCancel' with non-sendable type '() -> Void?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 90 |             }
 91 |         }
[23/70] Compiling Requests Static.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/EndpointResolver.swift:49:27: warning: capture of 'subscriber' with non-sendable type '(Result<DefaultResponse, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 47 |                 task = .init {
 48 |                     guard !Task.isCancelled else { return }
 49 |                     await subscriber(Result.async { try await resolve(request) })
    |                           |- warning: capture of 'subscriber' with non-sendable type '(Result<DefaultResponse, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                           `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 50 |                 }
 51 |             }
<unknown>:0: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/EndpointResolver.swift:49:63: warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 47 |                 task = .init {
 48 |                     guard !Task.isCancelled else { return }
 49 |                     await subscriber(Result.async { try await resolve(request) })
    |                                                               `- warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 50 |                 }
 51 |             }
<unknown>:0: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/EndpointResolver.swift:49:63: warning: capture of 'self' with non-sendable type 'Self' in an isolated closure; this is an error in the Swift 6 language mode
 47 |                 task = .init {
 48 |                     guard !Task.isCancelled else { return }
 49 |                     await subscriber(Result.async { try await resolve(request) })
    |                                                               `- warning: capture of 'self' with non-sendable type 'Self' in an isolated closure; this is an error in the Swift 6 language mode
 50 |                 }
 51 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/EndpointResolver.swift:89:17: warning: capture of 'onCancel' with non-sendable type '() -> Void?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 87 |                 }
 88 |             } onCancel: {
 89 |                 onCancel()
    |                 |- warning: capture of 'onCancel' with non-sendable type '() -> Void?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 90 |             }
 91 |         }
[24/70] Compiling Requests Endpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/EndpointResolver.swift:49:27: warning: capture of 'subscriber' with non-sendable type '(Result<DefaultResponse, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 47 |                 task = .init {
 48 |                     guard !Task.isCancelled else { return }
 49 |                     await subscriber(Result.async { try await resolve(request) })
    |                           |- warning: capture of 'subscriber' with non-sendable type '(Result<DefaultResponse, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                           `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 50 |                 }
 51 |             }
<unknown>:0: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/EndpointResolver.swift:49:63: warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 47 |                 task = .init {
 48 |                     guard !Task.isCancelled else { return }
 49 |                     await subscriber(Result.async { try await resolve(request) })
    |                                                               `- warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 50 |                 }
 51 |             }
<unknown>:0: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/EndpointResolver.swift:49:63: warning: capture of 'self' with non-sendable type 'Self' in an isolated closure; this is an error in the Swift 6 language mode
 47 |                 task = .init {
 48 |                     guard !Task.isCancelled else { return }
 49 |                     await subscriber(Result.async { try await resolve(request) })
    |                                                               `- warning: capture of 'self' with non-sendable type 'Self' in an isolated closure; this is an error in the Swift 6 language mode
 50 |                 }
 51 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/EndpointResolver.swift:89:17: warning: capture of 'onCancel' with non-sendable type '() -> Void?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 87 |                 }
 88 |             } onCancel: {
 89 |                 onCancel()
    |                 |- warning: capture of 'onCancel' with non-sendable type '() -> Void?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 90 |             }
 91 |         }
[25/70] Compiling Requests EndpointResolver.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/EndpointResolver.swift:49:27: warning: capture of 'subscriber' with non-sendable type '(Result<DefaultResponse, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 47 |                 task = .init {
 48 |                     guard !Task.isCancelled else { return }
 49 |                     await subscriber(Result.async { try await resolve(request) })
    |                           |- warning: capture of 'subscriber' with non-sendable type '(Result<DefaultResponse, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                           `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 50 |                 }
 51 |             }
<unknown>:0: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/EndpointResolver.swift:49:63: warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 47 |                 task = .init {
 48 |                     guard !Task.isCancelled else { return }
 49 |                     await subscriber(Result.async { try await resolve(request) })
    |                                                               `- warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 50 |                 }
 51 |             }
<unknown>:0: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/EndpointResolver.swift:49:63: warning: capture of 'self' with non-sendable type 'Self' in an isolated closure; this is an error in the Swift 6 language mode
 47 |                 task = .init {
 48 |                     guard !Task.isCancelled else { return }
 49 |                     await subscriber(Result.async { try await resolve(request) })
    |                                                               `- warning: capture of 'self' with non-sendable type 'Self' in an isolated closure; this is an error in the Swift 6 language mode
 50 |                 }
 51 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/EndpointResolver.swift:89:17: warning: capture of 'onCancel' with non-sendable type '() -> Void?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 87 |                 }
 88 |             } onCancel: {
 89 |                 onCancel()
    |                 |- warning: capture of 'onCancel' with non-sendable type '() -> Void?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 90 |             }
 91 |         }
[26/70] Compiling Requests LoopEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/EndpointResolver.swift:49:27: warning: capture of 'subscriber' with non-sendable type '(Result<DefaultResponse, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 47 |                 task = .init {
 48 |                     guard !Task.isCancelled else { return }
 49 |                     await subscriber(Result.async { try await resolve(request) })
    |                           |- warning: capture of 'subscriber' with non-sendable type '(Result<DefaultResponse, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                           `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 50 |                 }
 51 |             }
<unknown>:0: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/EndpointResolver.swift:49:63: warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 47 |                 task = .init {
 48 |                     guard !Task.isCancelled else { return }
 49 |                     await subscriber(Result.async { try await resolve(request) })
    |                                                               `- warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 50 |                 }
 51 |             }
<unknown>:0: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/EndpointResolver.swift:49:63: warning: capture of 'self' with non-sendable type 'Self' in an isolated closure; this is an error in the Swift 6 language mode
 47 |                 task = .init {
 48 |                     guard !Task.isCancelled else { return }
 49 |                     await subscriber(Result.async { try await resolve(request) })
    |                                                               `- warning: capture of 'self' with non-sendable type 'Self' in an isolated closure; this is an error in the Swift 6 language mode
 50 |                 }
 51 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/EndpointResolver.swift:89:17: warning: capture of 'onCancel' with non-sendable type '() -> Void?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 87 |                 }
 88 |             } onCancel: {
 89 |                 onCancel()
    |                 |- warning: capture of 'onCancel' with non-sendable type '() -> Void?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 90 |             }
 91 |         }
[27/70] Compiling Requests AnyDecodable.swift
[28/70] Compiling Requests Cellular.swift
[29/70] Compiling Requests Constrained.swift
[30/70] Compiling Requests Expensive.swift
[31/70] Compiling Requests Service.swift
[32/70] Compiling Requests Timeout.swift
[33/70] Compiling Requests Collect.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:60:16: warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?' (aka 'Optional<AsyncThrowingStream<Child.Output, any Error>.Iterator>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
 60 |             if iterator == nil {
    |                `- warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?' (aka 'Optional<AsyncThrowingStream<Child.Output, any Error>.Iterator>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 61 |                 let output = try await parent.resolve(with: session)
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
_Concurrency.AsyncThrowingStream:3:19: note: struct 'Iterator' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 2 | extension AsyncThrowingStream : AsyncSequence {
 3 |     public struct Iterator : AsyncIteratorProtocol {
   |                   `- note: struct 'Iterator' does not conform to the 'Sendable' protocol
 4 |         public mutating func next() async throws -> Element?
 5 |         @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:40: warning: capture of 'self' with non-sendable type 'FlatMap<Parent, Child>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 23 | /// otherwise be possible by extending it to
 24 | /// `LoopEndpoint`s.
 25 | public struct FlatMap<Parent: SingleEndpoint, Child: Endpoint> {
    |               `- note: consider making generic struct 'FlatMap' conform to the 'Sendable' protocol
 26 |     /// The associated output type.
 27 |     public typealias Output = Child.Output
    :
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                        `- warning: capture of 'self' with non-sendable type 'FlatMap<Parent, Child>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:61: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                          `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                                             `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:60:16: warning: reference to captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
 60 |             if iterator == nil {
    |                `- warning: reference to captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 61 |                 let output = try await parent.resolve(with: session)
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:62:17: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
    |                 `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 63 |             }
 64 |             return try await iterator?.next()
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:64:30: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
 64 |             return try await iterator?.next()
    |                              `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 65 |         }
 66 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:64:64: warning: capture of 'self' with non-sendable type 'ForEach<Next, Content>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
15 | /// implementation handling a sequence of
16 | /// requests.
17 | public struct ForEach<Next: Sendable, Content: SingleEndpoint> {
   |               `- note: consider making generic struct 'ForEach' conform to the 'Sendable' protocol
18 |     /// The associated output type.
19 |     public typealias Output = Content.Output
   :
62 |         return .init {
63 |             // If next input is `nil`, cancel the stream.
64 |             guard let offset = await nextInput.value, offset < pages.count else { return nil }
   |                                                                `- warning: capture of 'self' with non-sendable type 'ForEach<Next, Content>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
65 |             let output = try await content(offset, pages[offset]).resolve(with: session)
66 |             await nextInput.update(with: offset + 1)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:65:81: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
56 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
57 |     /// - returns: Some `AsyncStream`.
58 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
   |                         `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
59 |         // Hold reference to next input,
60 |         // so we can paginate properly.
   :
63 |             // If next input is `nil`, cancel the stream.
64 |             guard let offset = await nextInput.value, offset < pages.count else { return nil }
65 |             let output = try await content(offset, pages[offset]).resolve(with: session)
   |                                                                                 `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
66 |             await nextInput.update(with: offset + 1)
67 |             return output
[34/70] Compiling Requests Endpoints.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:60:16: warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?' (aka 'Optional<AsyncThrowingStream<Child.Output, any Error>.Iterator>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
 60 |             if iterator == nil {
    |                `- warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?' (aka 'Optional<AsyncThrowingStream<Child.Output, any Error>.Iterator>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 61 |                 let output = try await parent.resolve(with: session)
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
_Concurrency.AsyncThrowingStream:3:19: note: struct 'Iterator' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 2 | extension AsyncThrowingStream : AsyncSequence {
 3 |     public struct Iterator : AsyncIteratorProtocol {
   |                   `- note: struct 'Iterator' does not conform to the 'Sendable' protocol
 4 |         public mutating func next() async throws -> Element?
 5 |         @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:40: warning: capture of 'self' with non-sendable type 'FlatMap<Parent, Child>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 23 | /// otherwise be possible by extending it to
 24 | /// `LoopEndpoint`s.
 25 | public struct FlatMap<Parent: SingleEndpoint, Child: Endpoint> {
    |               `- note: consider making generic struct 'FlatMap' conform to the 'Sendable' protocol
 26 |     /// The associated output type.
 27 |     public typealias Output = Child.Output
    :
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                        `- warning: capture of 'self' with non-sendable type 'FlatMap<Parent, Child>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:61: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                          `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                                             `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:60:16: warning: reference to captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
 60 |             if iterator == nil {
    |                `- warning: reference to captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 61 |                 let output = try await parent.resolve(with: session)
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:62:17: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
    |                 `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 63 |             }
 64 |             return try await iterator?.next()
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:64:30: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
 64 |             return try await iterator?.next()
    |                              `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 65 |         }
 66 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:64:64: warning: capture of 'self' with non-sendable type 'ForEach<Next, Content>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
15 | /// implementation handling a sequence of
16 | /// requests.
17 | public struct ForEach<Next: Sendable, Content: SingleEndpoint> {
   |               `- note: consider making generic struct 'ForEach' conform to the 'Sendable' protocol
18 |     /// The associated output type.
19 |     public typealias Output = Content.Output
   :
62 |         return .init {
63 |             // If next input is `nil`, cancel the stream.
64 |             guard let offset = await nextInput.value, offset < pages.count else { return nil }
   |                                                                `- warning: capture of 'self' with non-sendable type 'ForEach<Next, Content>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
65 |             let output = try await content(offset, pages[offset]).resolve(with: session)
66 |             await nextInput.update(with: offset + 1)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:65:81: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
56 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
57 |     /// - returns: Some `AsyncStream`.
58 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
   |                         `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
59 |         // Hold reference to next input,
60 |         // so we can paginate properly.
   :
63 |             // If next input is `nil`, cancel the stream.
64 |             guard let offset = await nextInput.value, offset < pages.count else { return nil }
65 |             let output = try await content(offset, pages[offset]).resolve(with: session)
   |                                                                                 `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
66 |             await nextInput.update(with: offset + 1)
67 |             return output
[35/70] Compiling Requests First.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:60:16: warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?' (aka 'Optional<AsyncThrowingStream<Child.Output, any Error>.Iterator>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
 60 |             if iterator == nil {
    |                `- warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?' (aka 'Optional<AsyncThrowingStream<Child.Output, any Error>.Iterator>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 61 |                 let output = try await parent.resolve(with: session)
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
_Concurrency.AsyncThrowingStream:3:19: note: struct 'Iterator' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 2 | extension AsyncThrowingStream : AsyncSequence {
 3 |     public struct Iterator : AsyncIteratorProtocol {
   |                   `- note: struct 'Iterator' does not conform to the 'Sendable' protocol
 4 |         public mutating func next() async throws -> Element?
 5 |         @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:40: warning: capture of 'self' with non-sendable type 'FlatMap<Parent, Child>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 23 | /// otherwise be possible by extending it to
 24 | /// `LoopEndpoint`s.
 25 | public struct FlatMap<Parent: SingleEndpoint, Child: Endpoint> {
    |               `- note: consider making generic struct 'FlatMap' conform to the 'Sendable' protocol
 26 |     /// The associated output type.
 27 |     public typealias Output = Child.Output
    :
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                        `- warning: capture of 'self' with non-sendable type 'FlatMap<Parent, Child>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:61: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                          `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                                             `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:60:16: warning: reference to captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
 60 |             if iterator == nil {
    |                `- warning: reference to captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 61 |                 let output = try await parent.resolve(with: session)
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:62:17: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
    |                 `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 63 |             }
 64 |             return try await iterator?.next()
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:64:30: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
 64 |             return try await iterator?.next()
    |                              `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 65 |         }
 66 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:64:64: warning: capture of 'self' with non-sendable type 'ForEach<Next, Content>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
15 | /// implementation handling a sequence of
16 | /// requests.
17 | public struct ForEach<Next: Sendable, Content: SingleEndpoint> {
   |               `- note: consider making generic struct 'ForEach' conform to the 'Sendable' protocol
18 |     /// The associated output type.
19 |     public typealias Output = Content.Output
   :
62 |         return .init {
63 |             // If next input is `nil`, cancel the stream.
64 |             guard let offset = await nextInput.value, offset < pages.count else { return nil }
   |                                                                `- warning: capture of 'self' with non-sendable type 'ForEach<Next, Content>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
65 |             let output = try await content(offset, pages[offset]).resolve(with: session)
66 |             await nextInput.update(with: offset + 1)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:65:81: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
56 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
57 |     /// - returns: Some `AsyncStream`.
58 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
   |                         `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
59 |         // Hold reference to next input,
60 |         // so we can paginate properly.
   :
63 |             // If next input is `nil`, cancel the stream.
64 |             guard let offset = await nextInput.value, offset < pages.count else { return nil }
65 |             let output = try await content(offset, pages[offset]).resolve(with: session)
   |                                                                                 `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
66 |             await nextInput.update(with: offset + 1)
67 |             return output
[36/70] Compiling Requests FlatMap.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:60:16: warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?' (aka 'Optional<AsyncThrowingStream<Child.Output, any Error>.Iterator>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
 60 |             if iterator == nil {
    |                `- warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?' (aka 'Optional<AsyncThrowingStream<Child.Output, any Error>.Iterator>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 61 |                 let output = try await parent.resolve(with: session)
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
_Concurrency.AsyncThrowingStream:3:19: note: struct 'Iterator' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 2 | extension AsyncThrowingStream : AsyncSequence {
 3 |     public struct Iterator : AsyncIteratorProtocol {
   |                   `- note: struct 'Iterator' does not conform to the 'Sendable' protocol
 4 |         public mutating func next() async throws -> Element?
 5 |         @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:40: warning: capture of 'self' with non-sendable type 'FlatMap<Parent, Child>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 23 | /// otherwise be possible by extending it to
 24 | /// `LoopEndpoint`s.
 25 | public struct FlatMap<Parent: SingleEndpoint, Child: Endpoint> {
    |               `- note: consider making generic struct 'FlatMap' conform to the 'Sendable' protocol
 26 |     /// The associated output type.
 27 |     public typealias Output = Child.Output
    :
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                        `- warning: capture of 'self' with non-sendable type 'FlatMap<Parent, Child>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:61: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                          `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                                             `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:60:16: warning: reference to captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
 60 |             if iterator == nil {
    |                `- warning: reference to captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 61 |                 let output = try await parent.resolve(with: session)
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:62:17: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
    |                 `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 63 |             }
 64 |             return try await iterator?.next()
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:64:30: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
 64 |             return try await iterator?.next()
    |                              `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 65 |         }
 66 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:64:64: warning: capture of 'self' with non-sendable type 'ForEach<Next, Content>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
15 | /// implementation handling a sequence of
16 | /// requests.
17 | public struct ForEach<Next: Sendable, Content: SingleEndpoint> {
   |               `- note: consider making generic struct 'ForEach' conform to the 'Sendable' protocol
18 |     /// The associated output type.
19 |     public typealias Output = Content.Output
   :
62 |         return .init {
63 |             // If next input is `nil`, cancel the stream.
64 |             guard let offset = await nextInput.value, offset < pages.count else { return nil }
   |                                                                `- warning: capture of 'self' with non-sendable type 'ForEach<Next, Content>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
65 |             let output = try await content(offset, pages[offset]).resolve(with: session)
66 |             await nextInput.update(with: offset + 1)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:65:81: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
56 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
57 |     /// - returns: Some `AsyncStream`.
58 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
   |                         `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
59 |         // Hold reference to next input,
60 |         // so we can paginate properly.
   :
63 |             // If next input is `nil`, cancel the stream.
64 |             guard let offset = await nextInput.value, offset < pages.count else { return nil }
65 |             let output = try await content(offset, pages[offset]).resolve(with: session)
   |                                                                                 `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
66 |             await nextInput.update(with: offset + 1)
67 |             return output
[37/70] Compiling Requests ForEach.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:60:16: warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?' (aka 'Optional<AsyncThrowingStream<Child.Output, any Error>.Iterator>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
 60 |             if iterator == nil {
    |                `- warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?' (aka 'Optional<AsyncThrowingStream<Child.Output, any Error>.Iterator>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 61 |                 let output = try await parent.resolve(with: session)
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
_Concurrency.AsyncThrowingStream:3:19: note: struct 'Iterator' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 2 | extension AsyncThrowingStream : AsyncSequence {
 3 |     public struct Iterator : AsyncIteratorProtocol {
   |                   `- note: struct 'Iterator' does not conform to the 'Sendable' protocol
 4 |         public mutating func next() async throws -> Element?
 5 |         @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:40: warning: capture of 'self' with non-sendable type 'FlatMap<Parent, Child>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 23 | /// otherwise be possible by extending it to
 24 | /// `LoopEndpoint`s.
 25 | public struct FlatMap<Parent: SingleEndpoint, Child: Endpoint> {
    |               `- note: consider making generic struct 'FlatMap' conform to the 'Sendable' protocol
 26 |     /// The associated output type.
 27 |     public typealias Output = Child.Output
    :
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                        `- warning: capture of 'self' with non-sendable type 'FlatMap<Parent, Child>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:61: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                          `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                                             `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:60:16: warning: reference to captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
 60 |             if iterator == nil {
    |                `- warning: reference to captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 61 |                 let output = try await parent.resolve(with: session)
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:62:17: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
    |                 `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 63 |             }
 64 |             return try await iterator?.next()
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:64:30: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
 64 |             return try await iterator?.next()
    |                              `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 65 |         }
 66 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:64:64: warning: capture of 'self' with non-sendable type 'ForEach<Next, Content>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
15 | /// implementation handling a sequence of
16 | /// requests.
17 | public struct ForEach<Next: Sendable, Content: SingleEndpoint> {
   |               `- note: consider making generic struct 'ForEach' conform to the 'Sendable' protocol
18 |     /// The associated output type.
19 |     public typealias Output = Content.Output
   :
62 |         return .init {
63 |             // If next input is `nil`, cancel the stream.
64 |             guard let offset = await nextInput.value, offset < pages.count else { return nil }
   |                                                                `- warning: capture of 'self' with non-sendable type 'ForEach<Next, Content>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
65 |             let output = try await content(offset, pages[offset]).resolve(with: session)
66 |             await nextInput.update(with: offset + 1)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:65:81: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
56 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
57 |     /// - returns: Some `AsyncStream`.
58 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
   |                         `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
59 |         // Hold reference to next input,
60 |         // so we can paginate properly.
   :
63 |             // If next input is `nil`, cancel the stream.
64 |             guard let offset = await nextInput.value, offset < pages.count else { return nil }
65 |             let output = try await content(offset, pages[offset]).resolve(with: session)
   |                                                                                 `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
66 |             await nextInput.update(with: offset + 1)
67 |             return output
[38/70] Compiling Requests Future.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:60:16: warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?' (aka 'Optional<AsyncThrowingStream<Child.Output, any Error>.Iterator>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
 60 |             if iterator == nil {
    |                `- warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?' (aka 'Optional<AsyncThrowingStream<Child.Output, any Error>.Iterator>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 61 |                 let output = try await parent.resolve(with: session)
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
_Concurrency.AsyncThrowingStream:3:19: note: struct 'Iterator' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 2 | extension AsyncThrowingStream : AsyncSequence {
 3 |     public struct Iterator : AsyncIteratorProtocol {
   |                   `- note: struct 'Iterator' does not conform to the 'Sendable' protocol
 4 |         public mutating func next() async throws -> Element?
 5 |         @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:40: warning: capture of 'self' with non-sendable type 'FlatMap<Parent, Child>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 23 | /// otherwise be possible by extending it to
 24 | /// `LoopEndpoint`s.
 25 | public struct FlatMap<Parent: SingleEndpoint, Child: Endpoint> {
    |               `- note: consider making generic struct 'FlatMap' conform to the 'Sendable' protocol
 26 |     /// The associated output type.
 27 |     public typealias Output = Child.Output
    :
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                        `- warning: capture of 'self' with non-sendable type 'FlatMap<Parent, Child>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:61: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                          `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                                             `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:60:16: warning: reference to captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
 60 |             if iterator == nil {
    |                `- warning: reference to captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 61 |                 let output = try await parent.resolve(with: session)
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:62:17: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
    |                 `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 63 |             }
 64 |             return try await iterator?.next()
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:64:30: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
 64 |             return try await iterator?.next()
    |                              `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 65 |         }
 66 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:64:64: warning: capture of 'self' with non-sendable type 'ForEach<Next, Content>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
15 | /// implementation handling a sequence of
16 | /// requests.
17 | public struct ForEach<Next: Sendable, Content: SingleEndpoint> {
   |               `- note: consider making generic struct 'ForEach' conform to the 'Sendable' protocol
18 |     /// The associated output type.
19 |     public typealias Output = Content.Output
   :
62 |         return .init {
63 |             // If next input is `nil`, cancel the stream.
64 |             guard let offset = await nextInput.value, offset < pages.count else { return nil }
   |                                                                `- warning: capture of 'self' with non-sendable type 'ForEach<Next, Content>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
65 |             let output = try await content(offset, pages[offset]).resolve(with: session)
66 |             await nextInput.update(with: offset + 1)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:65:81: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
56 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
57 |     /// - returns: Some `AsyncStream`.
58 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
   |                         `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
59 |         // Hold reference to next input,
60 |         // so we can paginate properly.
   :
63 |             // If next input is `nil`, cancel the stream.
64 |             guard let offset = await nextInput.value, offset < pages.count else { return nil }
65 |             let output = try await content(offset, pages[offset]).resolve(with: session)
   |                                                                                 `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
66 |             await nextInput.update(with: offset + 1)
67 |             return output
[39/70] Compiling Requests SingleEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:50:27: warning: capture of 'subscriber' with non-sendable type '(Result<Self.Output, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
 50 |                     await subscriber(Result.async { try await resolve(with: session) })
    |                           |- warning: capture of 'subscriber' with non-sendable type '(Result<Self.Output, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                           `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 51 |                 }
 52 |             }
<unknown>:0: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:50:63: warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
 50 |                     await subscriber(Result.async { try await resolve(with: session) })
    |                                                               `- warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 51 |                 }
 52 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:50:77: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 40 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 41 |     /// - returns: Some `AnyPublisher`.
 42 |     func resolve<R: EndpointResolver>(with session: R) -> AnyPublisher<Output, any Error> {
    |                  `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 43 |         // Hold reference to the task, so we can cancel
 44 |         // it according to the `Publisher` stream.
    :
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
 50 |                     await subscriber(Result.async { try await resolve(with: session) })
    |                                                                             `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 51 |                 }
 52 |             }
<unknown>:0: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:50:63: warning: capture of 'self' with non-sendable type 'Self' in an isolated closure; this is an error in the Swift 6 language mode
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
 50 |                     await subscriber(Result.async { try await resolve(with: session) })
    |                                                               `- warning: capture of 'self' with non-sendable type 'Self' in an isolated closure; this is an error in the Swift 6 language mode
 51 |                 }
 52 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:50:77: warning: capture of 'session' with non-sendable type 'R' in an isolated closure; this is an error in the Swift 6 language mode
 40 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 41 |     /// - returns: Some `AnyPublisher`.
 42 |     func resolve<R: EndpointResolver>(with session: R) -> AnyPublisher<Output, any Error> {
    |                  `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 43 |         // Hold reference to the task, so we can cancel
 44 |         // it according to the `Publisher` stream.
    :
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
 50 |                     await subscriber(Result.async { try await resolve(with: session) })
    |                                                                             `- warning: capture of 'session' with non-sendable type 'R' in an isolated closure; this is an error in the Swift 6 language mode
 51 |                 }
 52 |             }
<unknown>:0: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:80:30: warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 78 |             guard await nextInput.value != nil else { return nil }
 79 |             await nextInput.update(with: nil)
 80 |             return try await resolve(with: session)
    |                              `- warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 81 |         }
 82 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:80:44: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 65 |     /// - returns: Some `AsyncStream`.
 66 |     @_spi(Private)
 67 |     func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                   `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 68 |         // You should only ever return one
 69 |         // item.
    :
 78 |             guard await nextInput.value != nil else { return nil }
 79 |             await nextInput.update(with: nil)
 80 |             return try await resolve(with: session)
    |                                            `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 81 |         }
 82 |     }
[40/70] Compiling Requests AnyEndpointResolver.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:50:27: warning: capture of 'subscriber' with non-sendable type '(Result<Self.Output, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
 50 |                     await subscriber(Result.async { try await resolve(with: session) })
    |                           |- warning: capture of 'subscriber' with non-sendable type '(Result<Self.Output, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                           `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 51 |                 }
 52 |             }
<unknown>:0: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:50:63: warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
 50 |                     await subscriber(Result.async { try await resolve(with: session) })
    |                                                               `- warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 51 |                 }
 52 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:50:77: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 40 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 41 |     /// - returns: Some `AnyPublisher`.
 42 |     func resolve<R: EndpointResolver>(with session: R) -> AnyPublisher<Output, any Error> {
    |                  `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 43 |         // Hold reference to the task, so we can cancel
 44 |         // it according to the `Publisher` stream.
    :
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
 50 |                     await subscriber(Result.async { try await resolve(with: session) })
    |                                                                             `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 51 |                 }
 52 |             }
<unknown>:0: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:50:63: warning: capture of 'self' with non-sendable type 'Self' in an isolated closure; this is an error in the Swift 6 language mode
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
 50 |                     await subscriber(Result.async { try await resolve(with: session) })
    |                                                               `- warning: capture of 'self' with non-sendable type 'Self' in an isolated closure; this is an error in the Swift 6 language mode
 51 |                 }
 52 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:50:77: warning: capture of 'session' with non-sendable type 'R' in an isolated closure; this is an error in the Swift 6 language mode
 40 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 41 |     /// - returns: Some `AnyPublisher`.
 42 |     func resolve<R: EndpointResolver>(with session: R) -> AnyPublisher<Output, any Error> {
    |                  `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 43 |         // Hold reference to the task, so we can cancel
 44 |         // it according to the `Publisher` stream.
    :
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
 50 |                     await subscriber(Result.async { try await resolve(with: session) })
    |                                                                             `- warning: capture of 'session' with non-sendable type 'R' in an isolated closure; this is an error in the Swift 6 language mode
 51 |                 }
 52 |             }
<unknown>:0: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:80:30: warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 78 |             guard await nextInput.value != nil else { return nil }
 79 |             await nextInput.update(with: nil)
 80 |             return try await resolve(with: session)
    |                              `- warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 81 |         }
 82 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:80:44: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 65 |     /// - returns: Some `AsyncStream`.
 66 |     @_spi(Private)
 67 |     func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                   `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 68 |         // You should only ever return one
 69 |         // item.
    :
 78 |             guard await nextInput.value != nil else { return nil }
 79 |             await nextInput.update(with: nil)
 80 |             return try await resolve(with: session)
    |                                            `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 81 |         }
 82 |     }
[41/70] Compiling Requests AnyLoopEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:50:27: warning: capture of 'subscriber' with non-sendable type '(Result<Self.Output, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
 50 |                     await subscriber(Result.async { try await resolve(with: session) })
    |                           |- warning: capture of 'subscriber' with non-sendable type '(Result<Self.Output, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                           `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 51 |                 }
 52 |             }
<unknown>:0: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:50:63: warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
 50 |                     await subscriber(Result.async { try await resolve(with: session) })
    |                                                               `- warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 51 |                 }
 52 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:50:77: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 40 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 41 |     /// - returns: Some `AnyPublisher`.
 42 |     func resolve<R: EndpointResolver>(with session: R) -> AnyPublisher<Output, any Error> {
    |                  `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 43 |         // Hold reference to the task, so we can cancel
 44 |         // it according to the `Publisher` stream.
    :
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
 50 |                     await subscriber(Result.async { try await resolve(with: session) })
    |                                                                             `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 51 |                 }
 52 |             }
<unknown>:0: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:50:63: warning: capture of 'self' with non-sendable type 'Self' in an isolated closure; this is an error in the Swift 6 language mode
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
 50 |                     await subscriber(Result.async { try await resolve(with: session) })
    |                                                               `- warning: capture of 'self' with non-sendable type 'Self' in an isolated closure; this is an error in the Swift 6 language mode
 51 |                 }
 52 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:50:77: warning: capture of 'session' with non-sendable type 'R' in an isolated closure; this is an error in the Swift 6 language mode
 40 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 41 |     /// - returns: Some `AnyPublisher`.
 42 |     func resolve<R: EndpointResolver>(with session: R) -> AnyPublisher<Output, any Error> {
    |                  `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 43 |         // Hold reference to the task, so we can cancel
 44 |         // it according to the `Publisher` stream.
    :
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
 50 |                     await subscriber(Result.async { try await resolve(with: session) })
    |                                                                             `- warning: capture of 'session' with non-sendable type 'R' in an isolated closure; this is an error in the Swift 6 language mode
 51 |                 }
 52 |             }
<unknown>:0: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:80:30: warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 78 |             guard await nextInput.value != nil else { return nil }
 79 |             await nextInput.update(with: nil)
 80 |             return try await resolve(with: session)
    |                              `- warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 81 |         }
 82 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:80:44: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 65 |     /// - returns: Some `AsyncStream`.
 66 |     @_spi(Private)
 67 |     func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                   `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 68 |         // You should only ever return one
 69 |         // item.
    :
 78 |             guard await nextInput.value != nil else { return nil }
 79 |             await nextInput.update(with: nil)
 80 |             return try await resolve(with: session)
    |                                            `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 81 |         }
 82 |     }
[42/70] Compiling Requests AnySingleEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:50:27: warning: capture of 'subscriber' with non-sendable type '(Result<Self.Output, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
 50 |                     await subscriber(Result.async { try await resolve(with: session) })
    |                           |- warning: capture of 'subscriber' with non-sendable type '(Result<Self.Output, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                           `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 51 |                 }
 52 |             }
<unknown>:0: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:50:63: warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
 50 |                     await subscriber(Result.async { try await resolve(with: session) })
    |                                                               `- warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 51 |                 }
 52 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:50:77: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 40 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 41 |     /// - returns: Some `AnyPublisher`.
 42 |     func resolve<R: EndpointResolver>(with session: R) -> AnyPublisher<Output, any Error> {
    |                  `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 43 |         // Hold reference to the task, so we can cancel
 44 |         // it according to the `Publisher` stream.
    :
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
 50 |                     await subscriber(Result.async { try await resolve(with: session) })
    |                                                                             `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 51 |                 }
 52 |             }
<unknown>:0: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:50:63: warning: capture of 'self' with non-sendable type 'Self' in an isolated closure; this is an error in the Swift 6 language mode
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
 50 |                     await subscriber(Result.async { try await resolve(with: session) })
    |                                                               `- warning: capture of 'self' with non-sendable type 'Self' in an isolated closure; this is an error in the Swift 6 language mode
 51 |                 }
 52 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:50:77: warning: capture of 'session' with non-sendable type 'R' in an isolated closure; this is an error in the Swift 6 language mode
 40 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 41 |     /// - returns: Some `AnyPublisher`.
 42 |     func resolve<R: EndpointResolver>(with session: R) -> AnyPublisher<Output, any Error> {
    |                  `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 43 |         // Hold reference to the task, so we can cancel
 44 |         // it according to the `Publisher` stream.
    :
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
 50 |                     await subscriber(Result.async { try await resolve(with: session) })
    |                                                                             `- warning: capture of 'session' with non-sendable type 'R' in an isolated closure; this is an error in the Swift 6 language mode
 51 |                 }
 52 |             }
<unknown>:0: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:80:30: warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 78 |             guard await nextInput.value != nil else { return nil }
 79 |             await nextInput.update(with: nil)
 80 |             return try await resolve(with: session)
    |                              `- warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 81 |         }
 82 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:80:44: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 65 |     /// - returns: Some `AsyncStream`.
 66 |     @_spi(Private)
 67 |     func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                   `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 68 |         // You should only ever return one
 69 |         // item.
    :
 78 |             guard await nextInput.value != nil else { return nil }
 79 |             await nextInput.update(with: nil)
 80 |             return try await resolve(with: session)
    |                                            `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 81 |         }
 82 |     }
[43/70] Compiling Requests CharacterSet.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:50:27: warning: capture of 'subscriber' with non-sendable type '(Result<Self.Output, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
 50 |                     await subscriber(Result.async { try await resolve(with: session) })
    |                           |- warning: capture of 'subscriber' with non-sendable type '(Result<Self.Output, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                           `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 51 |                 }
 52 |             }
<unknown>:0: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:50:63: warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
 50 |                     await subscriber(Result.async { try await resolve(with: session) })
    |                                                               `- warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 51 |                 }
 52 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:50:77: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 40 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 41 |     /// - returns: Some `AnyPublisher`.
 42 |     func resolve<R: EndpointResolver>(with session: R) -> AnyPublisher<Output, any Error> {
    |                  `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 43 |         // Hold reference to the task, so we can cancel
 44 |         // it according to the `Publisher` stream.
    :
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
 50 |                     await subscriber(Result.async { try await resolve(with: session) })
    |                                                                             `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 51 |                 }
 52 |             }
<unknown>:0: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:50:63: warning: capture of 'self' with non-sendable type 'Self' in an isolated closure; this is an error in the Swift 6 language mode
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
 50 |                     await subscriber(Result.async { try await resolve(with: session) })
    |                                                               `- warning: capture of 'self' with non-sendable type 'Self' in an isolated closure; this is an error in the Swift 6 language mode
 51 |                 }
 52 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:50:77: warning: capture of 'session' with non-sendable type 'R' in an isolated closure; this is an error in the Swift 6 language mode
 40 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 41 |     /// - returns: Some `AnyPublisher`.
 42 |     func resolve<R: EndpointResolver>(with session: R) -> AnyPublisher<Output, any Error> {
    |                  `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 43 |         // Hold reference to the task, so we can cancel
 44 |         // it according to the `Publisher` stream.
    :
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
 50 |                     await subscriber(Result.async { try await resolve(with: session) })
    |                                                                             `- warning: capture of 'session' with non-sendable type 'R' in an isolated closure; this is an error in the Swift 6 language mode
 51 |                 }
 52 |             }
<unknown>:0: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:80:30: warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 78 |             guard await nextInput.value != nil else { return nil }
 79 |             await nextInput.update(with: nil)
 80 |             return try await resolve(with: session)
    |                              `- warning: capture of 'self' with non-sendable type 'Self' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 81 |         }
 82 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:80:44: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 65 |     /// - returns: Some `AsyncStream`.
 66 |     @_spi(Private)
 67 |     func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                   `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 68 |         // You should only ever return one
 69 |         // item.
    :
 78 |             guard await nextInput.value != nil else { return nil }
 79 |             await nextInput.update(with: nil)
 80 |             return try await resolve(with: session)
    |                                            `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 81 |         }
 82 |     }
[44/70] Compiling Requests HandleEvents.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/HandleEvents.swift:50:46: warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Parent.Output, any Error>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 48 |         return .init {
 49 |             do {
 50 |                 guard let result = try await iterator.next() else { return nil }
    |                                              `- warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Parent.Output, any Error>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 51 |                 handler(.success(result))
 52 |                 return result
_Concurrency.AsyncThrowingStream:3:19: note: struct 'Iterator' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 2 | extension AsyncThrowingStream : AsyncSequence {
 3 |     public struct Iterator : AsyncIteratorProtocol {
   |                   `- note: struct 'Iterator' does not conform to the 'Sendable' protocol
 4 |         public mutating func next() async throws -> Element?
 5 |         @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/HandleEvents.swift:51:17: warning: capture of 'self' with non-sendable type 'HandleEvents<Parent>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 15 | /// implementation handling success and failures
 16 | /// of an existing one, without modifying them.
 17 | public struct HandleEvents<Parent: Endpoint> {
    |               `- note: consider making generic struct 'HandleEvents' conform to the 'Sendable' protocol
 18 |     /// The parent endpoint.
 19 |     private let parent: Parent
    :
 49 |             do {
 50 |                 guard let result = try await iterator.next() else { return nil }
 51 |                 handler(.success(result))
    |                 `- warning: capture of 'self' with non-sendable type 'HandleEvents<Parent>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 52 |                 return result
 53 |             } catch {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/HandleEvents.swift:50:46: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 48 |         return .init {
 49 |             do {
 50 |                 guard let result = try await iterator.next() else { return nil }
    |                                              `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 51 |                 handler(.success(result))
 52 |                 return result
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:76:36: warning: capture of 'self' with non-sendable type 'Loop<Next, Content>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 14 | /// A `struct` defining a custom endpoint
 15 | /// implementation handling a paginated request.
 16 | public struct Loop<Next: Sendable, Content: SingleEndpoint> {
    |               `- note: consider making generic struct 'Loop' conform to the 'Sendable' protocol
 17 |     /// The associated output type.
 18 |     public typealias Output = Content.Output
    :
 74 |             guard let input = await nextInput.value else { return nil }
 75 |             let offset = await nextInput.count
 76 |             let output = try await content(offset, input).resolve(with: session)
    |                                    `- warning: capture of 'self' with non-sendable type 'Loop<Next, Content>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 77 |             // Update next input.
 78 |             switch try next(offset, output) {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:76:73: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 66 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 67 |     /// - returns: Some `AsyncStream`.
 68 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                         `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 69 |         // Hold reference to next input,
 70 |         // so we can paginate properly.
    :
 74 |             guard let input = await nextInput.value else { return nil }
 75 |             let offset = await nextInput.count
 76 |             let output = try await content(offset, input).resolve(with: session)
    |                                                                         `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 77 |             // Update next input.
 78 |             switch try next(offset, output) {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Map.swift:48:34: warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Parent.Output, any Error>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
 48 |         return .init { try await iterator.next().flatMap(content) }
    |                                  `- warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Parent.Output, any Error>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 49 |     }
 50 |
_Concurrency.AsyncThrowingStream:3:19: note: struct 'Iterator' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 2 | extension AsyncThrowingStream : AsyncSequence {
 3 |     public struct Iterator : AsyncIteratorProtocol {
   |                   `- note: struct 'Iterator' does not conform to the 'Sendable' protocol
 4 |         public mutating func next() async throws -> Element?
 5 |         @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Map.swift:48:58: warning: capture of 'self' with non-sendable type 'Map<Parent, Output>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 15 | /// implementation handling an output generated
 16 | /// from an existing one.
 17 | public struct Map<Parent: Endpoint, Output> {
    |               `- note: consider making generic struct 'Map' conform to the 'Sendable' protocol
 18 |     /// The parent endpoint.
 19 |     private let parent: Parent
    :
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
 48 |         return .init { try await iterator.next().flatMap(content) }
    |                                                          `- warning: capture of 'self' with non-sendable type 'Map<Parent, Output>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 49 |     }
 50 |
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Map.swift:48:34: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
 48 |         return .init { try await iterator.next().flatMap(content) }
    |                                  `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 49 |     }
 50 |
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Prefix.swift:45:34: warning: capture of 'iterator' with non-sendable type 'AsyncPrefixSequence<AsyncThrowingStream<Parent.Output, any Error>>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
43 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
44 |         var iterator = parent.resolve(with: session).prefix(count).makeAsyncIterator()
45 |         return .init { try await iterator.next() }
   |                                  `- warning: capture of 'iterator' with non-sendable type 'AsyncPrefixSequence<AsyncThrowingStream<Parent.Output, any Error>>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
46 |     }
47 |
_Concurrency.AsyncThrowingStream:3:19: note: struct 'Iterator' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 2 | extension AsyncThrowingStream : AsyncSequence {
 3 |     public struct Iterator : AsyncIteratorProtocol {
   |                   `- note: struct 'Iterator' does not conform to the 'Sendable' protocol
 4 |         public mutating func next() async throws -> Element?
 5 |         @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Prefix.swift:45:34: warning: capture of 'iterator' with non-sendable type 'AsyncPrefixSequence<AsyncThrowingStream<Parent.Output, any Error>>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
43 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
44 |         var iterator = parent.resolve(with: session).prefix(count).makeAsyncIterator()
45 |         return .init { try await iterator.next() }
   |                                  `- warning: capture of 'iterator' with non-sendable type 'AsyncPrefixSequence<AsyncThrowingStream<Parent.Output, any Error>>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
46 |     }
47 |
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Prefix.swift:45:34: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
43 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
44 |         var iterator = parent.resolve(with: session).prefix(count).makeAsyncIterator()
45 |         return .init { try await iterator.next() }
   |                                  `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
46 |     }
47 |
[45/70] Compiling Requests Last.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/HandleEvents.swift:50:46: warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Parent.Output, any Error>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 48 |         return .init {
 49 |             do {
 50 |                 guard let result = try await iterator.next() else { return nil }
    |                                              `- warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Parent.Output, any Error>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 51 |                 handler(.success(result))
 52 |                 return result
_Concurrency.AsyncThrowingStream:3:19: note: struct 'Iterator' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 2 | extension AsyncThrowingStream : AsyncSequence {
 3 |     public struct Iterator : AsyncIteratorProtocol {
   |                   `- note: struct 'Iterator' does not conform to the 'Sendable' protocol
 4 |         public mutating func next() async throws -> Element?
 5 |         @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/HandleEvents.swift:51:17: warning: capture of 'self' with non-sendable type 'HandleEvents<Parent>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 15 | /// implementation handling success and failures
 16 | /// of an existing one, without modifying them.
 17 | public struct HandleEvents<Parent: Endpoint> {
    |               `- note: consider making generic struct 'HandleEvents' conform to the 'Sendable' protocol
 18 |     /// The parent endpoint.
 19 |     private let parent: Parent
    :
 49 |             do {
 50 |                 guard let result = try await iterator.next() else { return nil }
 51 |                 handler(.success(result))
    |                 `- warning: capture of 'self' with non-sendable type 'HandleEvents<Parent>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 52 |                 return result
 53 |             } catch {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/HandleEvents.swift:50:46: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 48 |         return .init {
 49 |             do {
 50 |                 guard let result = try await iterator.next() else { return nil }
    |                                              `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 51 |                 handler(.success(result))
 52 |                 return result
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:76:36: warning: capture of 'self' with non-sendable type 'Loop<Next, Content>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 14 | /// A `struct` defining a custom endpoint
 15 | /// implementation handling a paginated request.
 16 | public struct Loop<Next: Sendable, Content: SingleEndpoint> {
    |               `- note: consider making generic struct 'Loop' conform to the 'Sendable' protocol
 17 |     /// The associated output type.
 18 |     public typealias Output = Content.Output
    :
 74 |             guard let input = await nextInput.value else { return nil }
 75 |             let offset = await nextInput.count
 76 |             let output = try await content(offset, input).resolve(with: session)
    |                                    `- warning: capture of 'self' with non-sendable type 'Loop<Next, Content>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 77 |             // Update next input.
 78 |             switch try next(offset, output) {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:76:73: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 66 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 67 |     /// - returns: Some `AsyncStream`.
 68 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                         `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 69 |         // Hold reference to next input,
 70 |         // so we can paginate properly.
    :
 74 |             guard let input = await nextInput.value else { return nil }
 75 |             let offset = await nextInput.count
 76 |             let output = try await content(offset, input).resolve(with: session)
    |                                                                         `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 77 |             // Update next input.
 78 |             switch try next(offset, output) {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Map.swift:48:34: warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Parent.Output, any Error>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
 48 |         return .init { try await iterator.next().flatMap(content) }
    |                                  `- warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Parent.Output, any Error>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 49 |     }
 50 |
_Concurrency.AsyncThrowingStream:3:19: note: struct 'Iterator' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 2 | extension AsyncThrowingStream : AsyncSequence {
 3 |     public struct Iterator : AsyncIteratorProtocol {
   |                   `- note: struct 'Iterator' does not conform to the 'Sendable' protocol
 4 |         public mutating func next() async throws -> Element?
 5 |         @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Map.swift:48:58: warning: capture of 'self' with non-sendable type 'Map<Parent, Output>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 15 | /// implementation handling an output generated
 16 | /// from an existing one.
 17 | public struct Map<Parent: Endpoint, Output> {
    |               `- note: consider making generic struct 'Map' conform to the 'Sendable' protocol
 18 |     /// The parent endpoint.
 19 |     private let parent: Parent
    :
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
 48 |         return .init { try await iterator.next().flatMap(content) }
    |                                                          `- warning: capture of 'self' with non-sendable type 'Map<Parent, Output>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 49 |     }
 50 |
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Map.swift:48:34: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
 48 |         return .init { try await iterator.next().flatMap(content) }
    |                                  `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 49 |     }
 50 |
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Prefix.swift:45:34: warning: capture of 'iterator' with non-sendable type 'AsyncPrefixSequence<AsyncThrowingStream<Parent.Output, any Error>>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
43 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
44 |         var iterator = parent.resolve(with: session).prefix(count).makeAsyncIterator()
45 |         return .init { try await iterator.next() }
   |                                  `- warning: capture of 'iterator' with non-sendable type 'AsyncPrefixSequence<AsyncThrowingStream<Parent.Output, any Error>>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
46 |     }
47 |
_Concurrency.AsyncThrowingStream:3:19: note: struct 'Iterator' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 2 | extension AsyncThrowingStream : AsyncSequence {
 3 |     public struct Iterator : AsyncIteratorProtocol {
   |                   `- note: struct 'Iterator' does not conform to the 'Sendable' protocol
 4 |         public mutating func next() async throws -> Element?
 5 |         @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Prefix.swift:45:34: warning: capture of 'iterator' with non-sendable type 'AsyncPrefixSequence<AsyncThrowingStream<Parent.Output, any Error>>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
43 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
44 |         var iterator = parent.resolve(with: session).prefix(count).makeAsyncIterator()
45 |         return .init { try await iterator.next() }
   |                                  `- warning: capture of 'iterator' with non-sendable type 'AsyncPrefixSequence<AsyncThrowingStream<Parent.Output, any Error>>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
46 |     }
47 |
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Prefix.swift:45:34: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
43 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
44 |         var iterator = parent.resolve(with: session).prefix(count).makeAsyncIterator()
45 |         return .init { try await iterator.next() }
   |                                  `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
46 |     }
47 |
[46/70] Compiling Requests Loop.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/HandleEvents.swift:50:46: warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Parent.Output, any Error>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 48 |         return .init {
 49 |             do {
 50 |                 guard let result = try await iterator.next() else { return nil }
    |                                              `- warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Parent.Output, any Error>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 51 |                 handler(.success(result))
 52 |                 return result
_Concurrency.AsyncThrowingStream:3:19: note: struct 'Iterator' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 2 | extension AsyncThrowingStream : AsyncSequence {
 3 |     public struct Iterator : AsyncIteratorProtocol {
   |                   `- note: struct 'Iterator' does not conform to the 'Sendable' protocol
 4 |         public mutating func next() async throws -> Element?
 5 |         @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/HandleEvents.swift:51:17: warning: capture of 'self' with non-sendable type 'HandleEvents<Parent>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 15 | /// implementation handling success and failures
 16 | /// of an existing one, without modifying them.
 17 | public struct HandleEvents<Parent: Endpoint> {
    |               `- note: consider making generic struct 'HandleEvents' conform to the 'Sendable' protocol
 18 |     /// The parent endpoint.
 19 |     private let parent: Parent
    :
 49 |             do {
 50 |                 guard let result = try await iterator.next() else { return nil }
 51 |                 handler(.success(result))
    |                 `- warning: capture of 'self' with non-sendable type 'HandleEvents<Parent>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 52 |                 return result
 53 |             } catch {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/HandleEvents.swift:50:46: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 48 |         return .init {
 49 |             do {
 50 |                 guard let result = try await iterator.next() else { return nil }
    |                                              `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 51 |                 handler(.success(result))
 52 |                 return result
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:76:36: warning: capture of 'self' with non-sendable type 'Loop<Next, Content>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 14 | /// A `struct` defining a custom endpoint
 15 | /// implementation handling a paginated request.
 16 | public struct Loop<Next: Sendable, Content: SingleEndpoint> {
    |               `- note: consider making generic struct 'Loop' conform to the 'Sendable' protocol
 17 |     /// The associated output type.
 18 |     public typealias Output = Content.Output
    :
 74 |             guard let input = await nextInput.value else { return nil }
 75 |             let offset = await nextInput.count
 76 |             let output = try await content(offset, input).resolve(with: session)
    |                                    `- warning: capture of 'self' with non-sendable type 'Loop<Next, Content>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 77 |             // Update next input.
 78 |             switch try next(offset, output) {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:76:73: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 66 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 67 |     /// - returns: Some `AsyncStream`.
 68 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                         `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 69 |         // Hold reference to next input,
 70 |         // so we can paginate properly.
    :
 74 |             guard let input = await nextInput.value else { return nil }
 75 |             let offset = await nextInput.count
 76 |             let output = try await content(offset, input).resolve(with: session)
    |                                                                         `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 77 |             // Update next input.
 78 |             switch try next(offset, output) {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Map.swift:48:34: warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Parent.Output, any Error>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
 48 |         return .init { try await iterator.next().flatMap(content) }
    |                                  `- warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Parent.Output, any Error>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 49 |     }
 50 |
_Concurrency.AsyncThrowingStream:3:19: note: struct 'Iterator' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 2 | extension AsyncThrowingStream : AsyncSequence {
 3 |     public struct Iterator : AsyncIteratorProtocol {
   |                   `- note: struct 'Iterator' does not conform to the 'Sendable' protocol
 4 |         public mutating func next() async throws -> Element?
 5 |         @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Map.swift:48:58: warning: capture of 'self' with non-sendable type 'Map<Parent, Output>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 15 | /// implementation handling an output generated
 16 | /// from an existing one.
 17 | public struct Map<Parent: Endpoint, Output> {
    |               `- note: consider making generic struct 'Map' conform to the 'Sendable' protocol
 18 |     /// The parent endpoint.
 19 |     private let parent: Parent
    :
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
 48 |         return .init { try await iterator.next().flatMap(content) }
    |                                                          `- warning: capture of 'self' with non-sendable type 'Map<Parent, Output>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 49 |     }
 50 |
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Map.swift:48:34: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
 48 |         return .init { try await iterator.next().flatMap(content) }
    |                                  `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 49 |     }
 50 |
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Prefix.swift:45:34: warning: capture of 'iterator' with non-sendable type 'AsyncPrefixSequence<AsyncThrowingStream<Parent.Output, any Error>>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
43 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
44 |         var iterator = parent.resolve(with: session).prefix(count).makeAsyncIterator()
45 |         return .init { try await iterator.next() }
   |                                  `- warning: capture of 'iterator' with non-sendable type 'AsyncPrefixSequence<AsyncThrowingStream<Parent.Output, any Error>>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
46 |     }
47 |
_Concurrency.AsyncThrowingStream:3:19: note: struct 'Iterator' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 2 | extension AsyncThrowingStream : AsyncSequence {
 3 |     public struct Iterator : AsyncIteratorProtocol {
   |                   `- note: struct 'Iterator' does not conform to the 'Sendable' protocol
 4 |         public mutating func next() async throws -> Element?
 5 |         @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Prefix.swift:45:34: warning: capture of 'iterator' with non-sendable type 'AsyncPrefixSequence<AsyncThrowingStream<Parent.Output, any Error>>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
43 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
44 |         var iterator = parent.resolve(with: session).prefix(count).makeAsyncIterator()
45 |         return .init { try await iterator.next() }
   |                                  `- warning: capture of 'iterator' with non-sendable type 'AsyncPrefixSequence<AsyncThrowingStream<Parent.Output, any Error>>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
46 |     }
47 |
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Prefix.swift:45:34: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
43 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
44 |         var iterator = parent.resolve(with: session).prefix(count).makeAsyncIterator()
45 |         return .init { try await iterator.next() }
   |                                  `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
46 |     }
47 |
[47/70] Compiling Requests Map.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/HandleEvents.swift:50:46: warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Parent.Output, any Error>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 48 |         return .init {
 49 |             do {
 50 |                 guard let result = try await iterator.next() else { return nil }
    |                                              `- warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Parent.Output, any Error>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 51 |                 handler(.success(result))
 52 |                 return result
_Concurrency.AsyncThrowingStream:3:19: note: struct 'Iterator' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 2 | extension AsyncThrowingStream : AsyncSequence {
 3 |     public struct Iterator : AsyncIteratorProtocol {
   |                   `- note: struct 'Iterator' does not conform to the 'Sendable' protocol
 4 |         public mutating func next() async throws -> Element?
 5 |         @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/HandleEvents.swift:51:17: warning: capture of 'self' with non-sendable type 'HandleEvents<Parent>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 15 | /// implementation handling success and failures
 16 | /// of an existing one, without modifying them.
 17 | public struct HandleEvents<Parent: Endpoint> {
    |               `- note: consider making generic struct 'HandleEvents' conform to the 'Sendable' protocol
 18 |     /// The parent endpoint.
 19 |     private let parent: Parent
    :
 49 |             do {
 50 |                 guard let result = try await iterator.next() else { return nil }
 51 |                 handler(.success(result))
    |                 `- warning: capture of 'self' with non-sendable type 'HandleEvents<Parent>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 52 |                 return result
 53 |             } catch {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/HandleEvents.swift:50:46: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 48 |         return .init {
 49 |             do {
 50 |                 guard let result = try await iterator.next() else { return nil }
    |                                              `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 51 |                 handler(.success(result))
 52 |                 return result
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:76:36: warning: capture of 'self' with non-sendable type 'Loop<Next, Content>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 14 | /// A `struct` defining a custom endpoint
 15 | /// implementation handling a paginated request.
 16 | public struct Loop<Next: Sendable, Content: SingleEndpoint> {
    |               `- note: consider making generic struct 'Loop' conform to the 'Sendable' protocol
 17 |     /// The associated output type.
 18 |     public typealias Output = Content.Output
    :
 74 |             guard let input = await nextInput.value else { return nil }
 75 |             let offset = await nextInput.count
 76 |             let output = try await content(offset, input).resolve(with: session)
    |                                    `- warning: capture of 'self' with non-sendable type 'Loop<Next, Content>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 77 |             // Update next input.
 78 |             switch try next(offset, output) {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:76:73: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 66 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 67 |     /// - returns: Some `AsyncStream`.
 68 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                         `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 69 |         // Hold reference to next input,
 70 |         // so we can paginate properly.
    :
 74 |             guard let input = await nextInput.value else { return nil }
 75 |             let offset = await nextInput.count
 76 |             let output = try await content(offset, input).resolve(with: session)
    |                                                                         `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 77 |             // Update next input.
 78 |             switch try next(offset, output) {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Map.swift:48:34: warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Parent.Output, any Error>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
 48 |         return .init { try await iterator.next().flatMap(content) }
    |                                  `- warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Parent.Output, any Error>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 49 |     }
 50 |
_Concurrency.AsyncThrowingStream:3:19: note: struct 'Iterator' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 2 | extension AsyncThrowingStream : AsyncSequence {
 3 |     public struct Iterator : AsyncIteratorProtocol {
   |                   `- note: struct 'Iterator' does not conform to the 'Sendable' protocol
 4 |         public mutating func next() async throws -> Element?
 5 |         @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Map.swift:48:58: warning: capture of 'self' with non-sendable type 'Map<Parent, Output>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 15 | /// implementation handling an output generated
 16 | /// from an existing one.
 17 | public struct Map<Parent: Endpoint, Output> {
    |               `- note: consider making generic struct 'Map' conform to the 'Sendable' protocol
 18 |     /// The parent endpoint.
 19 |     private let parent: Parent
    :
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
 48 |         return .init { try await iterator.next().flatMap(content) }
    |                                                          `- warning: capture of 'self' with non-sendable type 'Map<Parent, Output>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 49 |     }
 50 |
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Map.swift:48:34: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
 48 |         return .init { try await iterator.next().flatMap(content) }
    |                                  `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 49 |     }
 50 |
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Prefix.swift:45:34: warning: capture of 'iterator' with non-sendable type 'AsyncPrefixSequence<AsyncThrowingStream<Parent.Output, any Error>>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
43 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
44 |         var iterator = parent.resolve(with: session).prefix(count).makeAsyncIterator()
45 |         return .init { try await iterator.next() }
   |                                  `- warning: capture of 'iterator' with non-sendable type 'AsyncPrefixSequence<AsyncThrowingStream<Parent.Output, any Error>>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
46 |     }
47 |
_Concurrency.AsyncThrowingStream:3:19: note: struct 'Iterator' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 2 | extension AsyncThrowingStream : AsyncSequence {
 3 |     public struct Iterator : AsyncIteratorProtocol {
   |                   `- note: struct 'Iterator' does not conform to the 'Sendable' protocol
 4 |         public mutating func next() async throws -> Element?
 5 |         @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Prefix.swift:45:34: warning: capture of 'iterator' with non-sendable type 'AsyncPrefixSequence<AsyncThrowingStream<Parent.Output, any Error>>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
43 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
44 |         var iterator = parent.resolve(with: session).prefix(count).makeAsyncIterator()
45 |         return .init { try await iterator.next() }
   |                                  `- warning: capture of 'iterator' with non-sendable type 'AsyncPrefixSequence<AsyncThrowingStream<Parent.Output, any Error>>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
46 |     }
47 |
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Prefix.swift:45:34: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
43 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
44 |         var iterator = parent.resolve(with: session).prefix(count).makeAsyncIterator()
45 |         return .init { try await iterator.next() }
   |                                  `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
46 |     }
47 |
[48/70] Compiling Requests Prefix.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/HandleEvents.swift:50:46: warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Parent.Output, any Error>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 48 |         return .init {
 49 |             do {
 50 |                 guard let result = try await iterator.next() else { return nil }
    |                                              `- warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Parent.Output, any Error>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 51 |                 handler(.success(result))
 52 |                 return result
_Concurrency.AsyncThrowingStream:3:19: note: struct 'Iterator' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 2 | extension AsyncThrowingStream : AsyncSequence {
 3 |     public struct Iterator : AsyncIteratorProtocol {
   |                   `- note: struct 'Iterator' does not conform to the 'Sendable' protocol
 4 |         public mutating func next() async throws -> Element?
 5 |         @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/HandleEvents.swift:51:17: warning: capture of 'self' with non-sendable type 'HandleEvents<Parent>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 15 | /// implementation handling success and failures
 16 | /// of an existing one, without modifying them.
 17 | public struct HandleEvents<Parent: Endpoint> {
    |               `- note: consider making generic struct 'HandleEvents' conform to the 'Sendable' protocol
 18 |     /// The parent endpoint.
 19 |     private let parent: Parent
    :
 49 |             do {
 50 |                 guard let result = try await iterator.next() else { return nil }
 51 |                 handler(.success(result))
    |                 `- warning: capture of 'self' with non-sendable type 'HandleEvents<Parent>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 52 |                 return result
 53 |             } catch {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/HandleEvents.swift:50:46: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 48 |         return .init {
 49 |             do {
 50 |                 guard let result = try await iterator.next() else { return nil }
    |                                              `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 51 |                 handler(.success(result))
 52 |                 return result
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:76:36: warning: capture of 'self' with non-sendable type 'Loop<Next, Content>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 14 | /// A `struct` defining a custom endpoint
 15 | /// implementation handling a paginated request.
 16 | public struct Loop<Next: Sendable, Content: SingleEndpoint> {
    |               `- note: consider making generic struct 'Loop' conform to the 'Sendable' protocol
 17 |     /// The associated output type.
 18 |     public typealias Output = Content.Output
    :
 74 |             guard let input = await nextInput.value else { return nil }
 75 |             let offset = await nextInput.count
 76 |             let output = try await content(offset, input).resolve(with: session)
    |                                    `- warning: capture of 'self' with non-sendable type 'Loop<Next, Content>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 77 |             // Update next input.
 78 |             switch try next(offset, output) {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:76:73: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 66 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 67 |     /// - returns: Some `AsyncStream`.
 68 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                         `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 69 |         // Hold reference to next input,
 70 |         // so we can paginate properly.
    :
 74 |             guard let input = await nextInput.value else { return nil }
 75 |             let offset = await nextInput.count
 76 |             let output = try await content(offset, input).resolve(with: session)
    |                                                                         `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 77 |             // Update next input.
 78 |             switch try next(offset, output) {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Map.swift:48:34: warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Parent.Output, any Error>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
 48 |         return .init { try await iterator.next().flatMap(content) }
    |                                  `- warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Parent.Output, any Error>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 49 |     }
 50 |
_Concurrency.AsyncThrowingStream:3:19: note: struct 'Iterator' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 2 | extension AsyncThrowingStream : AsyncSequence {
 3 |     public struct Iterator : AsyncIteratorProtocol {
   |                   `- note: struct 'Iterator' does not conform to the 'Sendable' protocol
 4 |         public mutating func next() async throws -> Element?
 5 |         @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Map.swift:48:58: warning: capture of 'self' with non-sendable type 'Map<Parent, Output>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 15 | /// implementation handling an output generated
 16 | /// from an existing one.
 17 | public struct Map<Parent: Endpoint, Output> {
    |               `- note: consider making generic struct 'Map' conform to the 'Sendable' protocol
 18 |     /// The parent endpoint.
 19 |     private let parent: Parent
    :
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
 48 |         return .init { try await iterator.next().flatMap(content) }
    |                                                          `- warning: capture of 'self' with non-sendable type 'Map<Parent, Output>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 49 |     }
 50 |
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Map.swift:48:34: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
 48 |         return .init { try await iterator.next().flatMap(content) }
    |                                  `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 49 |     }
 50 |
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Prefix.swift:45:34: warning: capture of 'iterator' with non-sendable type 'AsyncPrefixSequence<AsyncThrowingStream<Parent.Output, any Error>>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
43 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
44 |         var iterator = parent.resolve(with: session).prefix(count).makeAsyncIterator()
45 |         return .init { try await iterator.next() }
   |                                  `- warning: capture of 'iterator' with non-sendable type 'AsyncPrefixSequence<AsyncThrowingStream<Parent.Output, any Error>>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
46 |     }
47 |
_Concurrency.AsyncThrowingStream:3:19: note: struct 'Iterator' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 2 | extension AsyncThrowingStream : AsyncSequence {
 3 |     public struct Iterator : AsyncIteratorProtocol {
   |                   `- note: struct 'Iterator' does not conform to the 'Sendable' protocol
 4 |         public mutating func next() async throws -> Element?
 5 |         @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Prefix.swift:45:34: warning: capture of 'iterator' with non-sendable type 'AsyncPrefixSequence<AsyncThrowingStream<Parent.Output, any Error>>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
43 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
44 |         var iterator = parent.resolve(with: session).prefix(count).makeAsyncIterator()
45 |         return .init { try await iterator.next() }
   |                                  `- warning: capture of 'iterator' with non-sendable type 'AsyncPrefixSequence<AsyncThrowingStream<Parent.Output, any Error>>.Iterator' in a `@Sendable` closure; this is an error in the Swift 6 language mode
46 |     }
47 |
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Prefix.swift:45:34: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
43 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
44 |         var iterator = parent.resolve(with: session).prefix(count).makeAsyncIterator()
45 |         return .init { try await iterator.next() }
   |                                  `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
46 |     }
47 |
[49/70] Compiling Requests Body.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:63:34: warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Catch<Parent, Child>.Output, any Error>.AsyncIterator?' (aka 'Optional<AsyncThrowingStream<Parent.Output, any Error>.Iterator>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 61 |         return .init {
 62 |             do {
 63 |                 return try await iterator?.next()
    |                                  `- warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Catch<Parent, Child>.Output, any Error>.AsyncIterator?' (aka 'Optional<AsyncThrowingStream<Parent.Output, any Error>.Iterator>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 64 |             } catch {
 65 |                 iterator = nil
_Concurrency.AsyncThrowingStream:3:19: note: struct 'Iterator' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 2 | extension AsyncThrowingStream : AsyncSequence {
 3 |     public struct Iterator : AsyncIteratorProtocol {
   |                   `- note: struct 'Iterator' does not conform to the 'Sendable' protocol
 4 |         public mutating func next() async throws -> Element?
 5 |         @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:34: warning: capture of 'self' with non-sendable type 'Catch<Parent, Child>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 23 | /// otherwise be possible by extending it to
 24 | /// `LoopEndpoint`s.
 25 | public struct Catch<Parent: Endpoint, Child: SingleEndpoint> where Child.Output == Parent.Output {
    |               `- note: consider making generic struct 'Catch' conform to the 'Sendable' protocol
 26 |     /// The associated output type.
 27 |     public typealias Output = Child.Output
    :
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                  `- warning: capture of 'self' with non-sendable type 'Catch<Parent, Child>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:61: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                          `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 58 |         var iterator: AsyncThrowingStream<Output, any Error>.AsyncIterator? = parent
 59 |             ._resolve(with: session)
    :
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                                             `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:63:34: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 61 |         return .init {
 62 |             do {
 63 |                 return try await iterator?.next()
    |                                  `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 64 |             } catch {
 65 |                 iterator = nil
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:65:17: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 63 |                 return try await iterator?.next()
 64 |             } catch {
 65 |                 iterator = nil
    |                 `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 66 |                 return try await child(error).resolve(with: session)
 67 |             }
[50/70] Compiling Requests Headers.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:63:34: warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Catch<Parent, Child>.Output, any Error>.AsyncIterator?' (aka 'Optional<AsyncThrowingStream<Parent.Output, any Error>.Iterator>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 61 |         return .init {
 62 |             do {
 63 |                 return try await iterator?.next()
    |                                  `- warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Catch<Parent, Child>.Output, any Error>.AsyncIterator?' (aka 'Optional<AsyncThrowingStream<Parent.Output, any Error>.Iterator>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 64 |             } catch {
 65 |                 iterator = nil
_Concurrency.AsyncThrowingStream:3:19: note: struct 'Iterator' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 2 | extension AsyncThrowingStream : AsyncSequence {
 3 |     public struct Iterator : AsyncIteratorProtocol {
   |                   `- note: struct 'Iterator' does not conform to the 'Sendable' protocol
 4 |         public mutating func next() async throws -> Element?
 5 |         @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:34: warning: capture of 'self' with non-sendable type 'Catch<Parent, Child>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 23 | /// otherwise be possible by extending it to
 24 | /// `LoopEndpoint`s.
 25 | public struct Catch<Parent: Endpoint, Child: SingleEndpoint> where Child.Output == Parent.Output {
    |               `- note: consider making generic struct 'Catch' conform to the 'Sendable' protocol
 26 |     /// The associated output type.
 27 |     public typealias Output = Child.Output
    :
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                  `- warning: capture of 'self' with non-sendable type 'Catch<Parent, Child>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:61: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                          `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 58 |         var iterator: AsyncThrowingStream<Output, any Error>.AsyncIterator? = parent
 59 |             ._resolve(with: session)
    :
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                                             `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:63:34: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 61 |         return .init {
 62 |             do {
 63 |                 return try await iterator?.next()
    |                                  `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 64 |             } catch {
 65 |                 iterator = nil
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:65:17: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 63 |                 return try await iterator?.next()
 64 |             } catch {
 65 |                 iterator = nil
    |                 `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 66 |                 return try await child(error).resolve(with: session)
 67 |             }
[51/70] Compiling Requests Method.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:63:34: warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Catch<Parent, Child>.Output, any Error>.AsyncIterator?' (aka 'Optional<AsyncThrowingStream<Parent.Output, any Error>.Iterator>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 61 |         return .init {
 62 |             do {
 63 |                 return try await iterator?.next()
    |                                  `- warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Catch<Parent, Child>.Output, any Error>.AsyncIterator?' (aka 'Optional<AsyncThrowingStream<Parent.Output, any Error>.Iterator>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 64 |             } catch {
 65 |                 iterator = nil
_Concurrency.AsyncThrowingStream:3:19: note: struct 'Iterator' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 2 | extension AsyncThrowingStream : AsyncSequence {
 3 |     public struct Iterator : AsyncIteratorProtocol {
   |                   `- note: struct 'Iterator' does not conform to the 'Sendable' protocol
 4 |         public mutating func next() async throws -> Element?
 5 |         @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:34: warning: capture of 'self' with non-sendable type 'Catch<Parent, Child>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 23 | /// otherwise be possible by extending it to
 24 | /// `LoopEndpoint`s.
 25 | public struct Catch<Parent: Endpoint, Child: SingleEndpoint> where Child.Output == Parent.Output {
    |               `- note: consider making generic struct 'Catch' conform to the 'Sendable' protocol
 26 |     /// The associated output type.
 27 |     public typealias Output = Child.Output
    :
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                  `- warning: capture of 'self' with non-sendable type 'Catch<Parent, Child>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:61: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                          `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 58 |         var iterator: AsyncThrowingStream<Output, any Error>.AsyncIterator? = parent
 59 |             ._resolve(with: session)
    :
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                                             `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:63:34: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 61 |         return .init {
 62 |             do {
 63 |                 return try await iterator?.next()
    |                                  `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 64 |             } catch {
 65 |                 iterator = nil
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:65:17: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 63 |                 return try await iterator?.next()
 64 |             } catch {
 65 |                 iterator = nil
    |                 `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 66 |                 return try await child(error).resolve(with: session)
 67 |             }
[52/70] Compiling Requests Query.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:63:34: warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Catch<Parent, Child>.Output, any Error>.AsyncIterator?' (aka 'Optional<AsyncThrowingStream<Parent.Output, any Error>.Iterator>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 61 |         return .init {
 62 |             do {
 63 |                 return try await iterator?.next()
    |                                  `- warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Catch<Parent, Child>.Output, any Error>.AsyncIterator?' (aka 'Optional<AsyncThrowingStream<Parent.Output, any Error>.Iterator>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 64 |             } catch {
 65 |                 iterator = nil
_Concurrency.AsyncThrowingStream:3:19: note: struct 'Iterator' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 2 | extension AsyncThrowingStream : AsyncSequence {
 3 |     public struct Iterator : AsyncIteratorProtocol {
   |                   `- note: struct 'Iterator' does not conform to the 'Sendable' protocol
 4 |         public mutating func next() async throws -> Element?
 5 |         @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:34: warning: capture of 'self' with non-sendable type 'Catch<Parent, Child>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 23 | /// otherwise be possible by extending it to
 24 | /// `LoopEndpoint`s.
 25 | public struct Catch<Parent: Endpoint, Child: SingleEndpoint> where Child.Output == Parent.Output {
    |               `- note: consider making generic struct 'Catch' conform to the 'Sendable' protocol
 26 |     /// The associated output type.
 27 |     public typealias Output = Child.Output
    :
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                  `- warning: capture of 'self' with non-sendable type 'Catch<Parent, Child>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:61: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                          `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 58 |         var iterator: AsyncThrowingStream<Output, any Error>.AsyncIterator? = parent
 59 |             ._resolve(with: session)
    :
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                                             `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:63:34: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 61 |         return .init {
 62 |             do {
 63 |                 return try await iterator?.next()
    |                                  `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 64 |             } catch {
 65 |                 iterator = nil
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:65:17: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 63 |                 return try await iterator?.next()
 64 |             } catch {
 65 |                 iterator = nil
    |                 `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 66 |                 return try await child(error).resolve(with: session)
 67 |             }
[53/70] Compiling Requests Component.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:63:34: warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Catch<Parent, Child>.Output, any Error>.AsyncIterator?' (aka 'Optional<AsyncThrowingStream<Parent.Output, any Error>.Iterator>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 61 |         return .init {
 62 |             do {
 63 |                 return try await iterator?.next()
    |                                  `- warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Catch<Parent, Child>.Output, any Error>.AsyncIterator?' (aka 'Optional<AsyncThrowingStream<Parent.Output, any Error>.Iterator>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 64 |             } catch {
 65 |                 iterator = nil
_Concurrency.AsyncThrowingStream:3:19: note: struct 'Iterator' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 2 | extension AsyncThrowingStream : AsyncSequence {
 3 |     public struct Iterator : AsyncIteratorProtocol {
   |                   `- note: struct 'Iterator' does not conform to the 'Sendable' protocol
 4 |         public mutating func next() async throws -> Element?
 5 |         @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:34: warning: capture of 'self' with non-sendable type 'Catch<Parent, Child>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 23 | /// otherwise be possible by extending it to
 24 | /// `LoopEndpoint`s.
 25 | public struct Catch<Parent: Endpoint, Child: SingleEndpoint> where Child.Output == Parent.Output {
    |               `- note: consider making generic struct 'Catch' conform to the 'Sendable' protocol
 26 |     /// The associated output type.
 27 |     public typealias Output = Child.Output
    :
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                  `- warning: capture of 'self' with non-sendable type 'Catch<Parent, Child>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:61: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                          `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 58 |         var iterator: AsyncThrowingStream<Output, any Error>.AsyncIterator? = parent
 59 |             ._resolve(with: session)
    :
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                                             `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:63:34: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 61 |         return .init {
 62 |             do {
 63 |                 return try await iterator?.next()
    |                                  `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 64 |             } catch {
 65 |                 iterator = nil
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:65:17: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 63 |                 return try await iterator?.next()
 64 |             } catch {
 65 |                 iterator = nil
    |                 `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 66 |                 return try await child(error).resolve(with: session)
 67 |             }
[54/70] Compiling Requests Catch.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:63:34: warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Catch<Parent, Child>.Output, any Error>.AsyncIterator?' (aka 'Optional<AsyncThrowingStream<Parent.Output, any Error>.Iterator>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 61 |         return .init {
 62 |             do {
 63 |                 return try await iterator?.next()
    |                                  `- warning: capture of 'iterator' with non-sendable type 'AsyncThrowingStream<Catch<Parent, Child>.Output, any Error>.AsyncIterator?' (aka 'Optional<AsyncThrowingStream<Parent.Output, any Error>.Iterator>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 64 |             } catch {
 65 |                 iterator = nil
_Concurrency.AsyncThrowingStream:3:19: note: struct 'Iterator' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 2 | extension AsyncThrowingStream : AsyncSequence {
 3 |     public struct Iterator : AsyncIteratorProtocol {
   |                   `- note: struct 'Iterator' does not conform to the 'Sendable' protocol
 4 |         public mutating func next() async throws -> Element?
 5 |         @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:34: warning: capture of 'self' with non-sendable type 'Catch<Parent, Child>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 23 | /// otherwise be possible by extending it to
 24 | /// `LoopEndpoint`s.
 25 | public struct Catch<Parent: Endpoint, Child: SingleEndpoint> where Child.Output == Parent.Output {
    |               `- note: consider making generic struct 'Catch' conform to the 'Sendable' protocol
 26 |     /// The associated output type.
 27 |     public typealias Output = Child.Output
    :
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                  `- warning: capture of 'self' with non-sendable type 'Catch<Parent, Child>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:61: warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                          `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
 58 |         var iterator: AsyncThrowingStream<Output, any Error>.AsyncIterator? = parent
 59 |             ._resolve(with: session)
    :
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                                             `- warning: capture of 'session' with non-sendable type 'R' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:63:34: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 61 |         return .init {
 62 |             do {
 63 |                 return try await iterator?.next()
    |                                  `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 64 |             } catch {
 65 |                 iterator = nil
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:65:17: warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 63 |                 return try await iterator?.next()
 64 |             } catch {
 65 |                 iterator = nil
    |                 `- warning: mutation of captured var 'iterator' in concurrently-executing code; this is an error in the Swift 6 language mode
 66 |                 return try await child(error).resolve(with: session)
 67 |             }
[55/70] Compiling Requests Data.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Misc/CodableHTTPCookie.swift:11:20: warning: class 'CodableHTTPCookie' must restate inherited '@unchecked Sendable' conformance
 9 |
10 | /// A `subclass` of `HTTPCookie` conforming to `Codable`.
11 | public final class CodableHTTPCookie: HTTPCookie, Codable {
   |                    `- warning: class 'CodableHTTPCookie' must restate inherited '@unchecked Sendable' conformance
12 |     /// Init.
13 |     /// - parameter properties: A valid `Dictionary` of `Any`.
[56/70] Compiling Requests Result.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Misc/CodableHTTPCookie.swift:11:20: warning: class 'CodableHTTPCookie' must restate inherited '@unchecked Sendable' conformance
 9 |
10 | /// A `subclass` of `HTTPCookie` conforming to `Codable`.
11 | public final class CodableHTTPCookie: HTTPCookie, Codable {
   |                    `- warning: class 'CodableHTTPCookie' must restate inherited '@unchecked Sendable' conformance
12 |     /// Init.
13 |     /// - parameter properties: A valid `Dictionary` of `Any`.
[57/70] Compiling Requests String.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Misc/CodableHTTPCookie.swift:11:20: warning: class 'CodableHTTPCookie' must restate inherited '@unchecked Sendable' conformance
 9 |
10 | /// A `subclass` of `HTTPCookie` conforming to `Codable`.
11 | public final class CodableHTTPCookie: HTTPCookie, Codable {
   |                    `- warning: class 'CodableHTTPCookie' must restate inherited '@unchecked Sendable' conformance
12 |     /// Init.
13 |     /// - parameter properties: A valid `Dictionary` of `Any`.
[58/70] Compiling Requests URLRequest.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Misc/CodableHTTPCookie.swift:11:20: warning: class 'CodableHTTPCookie' must restate inherited '@unchecked Sendable' conformance
 9 |
10 | /// A `subclass` of `HTTPCookie` conforming to `Codable`.
11 | public final class CodableHTTPCookie: HTTPCookie, Codable {
   |                    `- warning: class 'CodableHTTPCookie' must restate inherited '@unchecked Sendable' conformance
12 |     /// Init.
13 |     /// - parameter properties: A valid `Dictionary` of `Any`.
[59/70] Compiling Requests CodableHTTPCookie.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Misc/CodableHTTPCookie.swift:11:20: warning: class 'CodableHTTPCookie' must restate inherited '@unchecked Sendable' conformance
 9 |
10 | /// A `subclass` of `HTTPCookie` conforming to `Codable`.
11 | public final class CodableHTTPCookie: HTTPCookie, Codable {
   |                    `- warning: class 'CodableHTTPCookie' must restate inherited '@unchecked Sendable' conformance
12 |     /// Init.
13 |     /// - parameter properties: A valid `Dictionary` of `Any`.
[60/70] Compiling Requests EndpointBuilder.swift
[61/70] Compiling Requests Components.swift
[62/70] Compiling Requests Path.swift
[63/70] Compiling Requests Response.swift
[64/70] Compiling Requests TupleItem.swift
[65/70] Compiling Requests AnyCodable.swift
[66/70] Compiling Requests Offset.swift
[67/70] Compiling Requests Providers.swift
[68/70] Compiling Requests LockProvider.swift
[69/70] Compiling Requests OffsetProvider.swift
[70/70] Compiling Requests Provider.swift
Build complete! (24.08s)
Fetching https://github.com/kishikawakatsumi/KeychainAccess
[1/4386] Fetching keychainaccess
Fetched https://github.com/kishikawakatsumi/KeychainAccess from cache (1.40s)
Computing version for https://github.com/kishikawakatsumi/KeychainAccess
Computed https://github.com/kishikawakatsumi/KeychainAccess at 4.2.2 (0.65s)
Creating working copy for https://github.com/kishikawakatsumi/KeychainAccess
Working copy of https://github.com/kishikawakatsumi/KeychainAccess resolved at 4.2.2
Build complete.
{
  "dependencies" : [
    {
      "identity" : "keychainaccess",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.2.2",
            "upper_bound" : "4.3.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/kishikawakatsumi/KeychainAccess"
    }
  ],
  "manifest_display_name" : "ComposableRequest",
  "name" : "ComposableRequest",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "Requests",
      "targets" : [
        "Requests"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Storages",
      "targets" : [
        "Storages"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EncryptedStorages",
      "targets" : [
        "EncryptedStorages"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "Storages",
      "module_type" : "SwiftTarget",
      "name" : "Storages",
      "path" : "Sources/Storages",
      "product_memberships" : [
        "Requests",
        "Storages",
        "EncryptedStorages"
      ],
      "sources" : [
        "Concrete/AnyStorage.swift",
        "Concrete/TransientStorage.swift",
        "Concrete/UserDefaultsStorage.swift",
        "Protocols/Storable.swift",
        "Protocols/Storage.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Requests",
      "module_type" : "SwiftTarget",
      "name" : "Requests",
      "path" : "Sources/Requests",
      "product_memberships" : [
        "Requests"
      ],
      "sources" : [
        "Builder/EndpointBuilder.swift",
        "Builder/Items/Components.swift",
        "Builder/Items/Path.swift",
        "Builder/Items/Response.swift",
        "Builder/Items/TupleItem.swift",
        "Codable/AnyCodable.swift",
        "Codable/AnyDecodable.swift",
        "Components/Advanced/Cellular.swift",
        "Components/Advanced/Constrained.swift",
        "Components/Advanced/Expensive.swift",
        "Components/Advanced/Service.swift",
        "Components/Advanced/Timeout.swift",
        "Components/Basics/Body.swift",
        "Components/Basics/Headers.swift",
        "Components/Basics/Method.swift",
        "Components/Basics/Query.swift",
        "Components/Component.swift",
        "Endpoints/Concrete/Catch.swift",
        "Endpoints/Concrete/Collect.swift",
        "Endpoints/Concrete/Endpoints.swift",
        "Endpoints/Concrete/First.swift",
        "Endpoints/Concrete/FlatMap.swift",
        "Endpoints/Concrete/ForEach.swift",
        "Endpoints/Concrete/Future.swift",
        "Endpoints/Concrete/HandleEvents.swift",
        "Endpoints/Concrete/Last.swift",
        "Endpoints/Concrete/Loop.swift",
        "Endpoints/Concrete/Map.swift",
        "Endpoints/Concrete/Prefix.swift",
        "Endpoints/Concrete/Single.swift",
        "Endpoints/Concrete/Static.swift",
        "Endpoints/Protocols/Endpoint.swift",
        "Endpoints/Protocols/EndpointResolver.swift",
        "Endpoints/Protocols/LoopEndpoint.swift",
        "Endpoints/Protocols/SingleEndpoint.swift",
        "Endpoints/Type ereasure/AnyEndpointResolver.swift",
        "Endpoints/Type ereasure/AnyLoopEndpoint.swift",
        "Endpoints/Type ereasure/AnySingleEndpoint.swift",
        "Extensions/CharacterSet.swift",
        "Extensions/Data.swift",
        "Extensions/Result.swift",
        "Extensions/String.swift",
        "Extensions/URLRequest.swift",
        "Misc/CodableHTTPCookie.swift",
        "Misc/DefaultResponse.swift",
        "Misc/EndpointError.swift",
        "Misc/NextAction.swift",
        "Misc/NextInput.swift",
        "Providers/Concrete/Lock.swift",
        "Providers/Concrete/Offset.swift",
        "Providers/Concrete/Providers.swift",
        "Providers/Protocols/LockProvider.swift",
        "Providers/Protocols/OffsetProvider.swift",
        "Providers/Protocols/Provider.swift"
      ],
      "target_dependencies" : [
        "Storages"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EncryptedStorages",
      "module_type" : "SwiftTarget",
      "name" : "EncryptedStorages",
      "path" : "Sources/EncryptedStorages",
      "product_dependencies" : [
        "KeychainAccess"
      ],
      "product_memberships" : [
        "EncryptedStorages"
      ],
      "sources" : [
        "KeychainStorage.swift"
      ],
      "target_dependencies" : [
        "Storages"
      ],
      "type" : "library"
    },
    {
      "c99name" : "ComposableRequestTests",
      "module_type" : "SwiftTarget",
      "name" : "ComposableRequestTests",
      "path" : "Tests/ComposableRequestTests",
      "sources" : [
        "APITests.swift",
        "Shared/Item.swift",
        "StorageTests.swift",
        "WrappersTests.swift"
      ],
      "target_dependencies" : [
        "Requests",
        "Storages",
        "EncryptedStorages"
      ],
      "type" : "test"
    }
  ],
  "tools_version" : "5.7"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.