The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of AsyncHTTP, reference main (216463), with Swift 6.2 (beta) for macOS (SPM) on 19 Jun 2025 15:41:55 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/tevelee/AsyncHTTP.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/tevelee/AsyncHTTP
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 216463f Refactor multipart
Cloned https://github.com/tevelee/AsyncHTTP.git
Revision (git rev-parse @):
216463f301761c8510a9d2cb9088ea2b85bab63d
SUCCESS checkout https://github.com/tevelee/AsyncHTTP.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/tevelee/AsyncHTTP.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/4] Write sources
[3/4] Write swift-version-1EA4D86E10B52AF.txt
[5/40] Emitting module AsyncHTTP
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:186:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'Foundation'
184 | }
185 |
186 | extension URLComponents: @unchecked Sendable {}
    |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'Foundation'
187 | extension AnyHashable: @unchecked Sendable {}
188 |
Foundation.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct URLComponents : Hashable, Equatable, Sendable {
   |               `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
 3 |     public init()
 4 |     public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:187:1: warning: extension declares a conformance of imported type 'AnyHashable' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
185 |
186 | extension URLComponents: @unchecked Sendable {}
187 | extension AnyHashable: @unchecked Sendable {}
    | |- warning: extension declares a conformance of imported type 'AnyHashable' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
188 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:187:35: warning: conformance of 'AnyHashable' to protocol 'Sendable' was already stated in the type's module 'Swift'
185 |
186 | extension URLComponents: @unchecked Sendable {}
187 | extension AnyHashable: @unchecked Sendable {}
    |                                   `- warning: conformance of 'AnyHashable' to protocol 'Sendable' was already stated in the type's module 'Swift'
188 |
Swift.AnyHashable:2:11: note: 'AnyHashable' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension AnyHashable : Sendable {
  |           `- note: 'AnyHashable' declares conformance to protocol 'Sendable' here
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequestBody.swift:120:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'Foundation'
118 | }
119 |
120 | extension Data: @unchecked Sendable {
    |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'Foundation'
121 |     @inlinable
122 |     mutating func append(_ string: String) {
Foundation.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
   |                       `- note: 'Data' declares conformance to protocol 'Sendable' here
 3 |     public typealias Index = Int
 4 |     public typealias Indices = Range<Int>
[6/43] Compiling AsyncHTTP Converted.swift
[7/43] Compiling AsyncHTTP HTTPFormattible.swift
[8/43] Compiling AsyncHTTP Sorted.swift
[9/43] Compiling AsyncHTTP HTTPStatus.swift
[10/43] Compiling AsyncHTTP HTTPVersion.swift
[11/43] Compiling AsyncHTTP MIMEType.swift
[12/43] Compiling AsyncHTTP URIScheme.swift
[13/43] Compiling AsyncHTTP Loader.swift
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Loader.swift:46:48: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
44 |                 Task { @MainActor in
45 |                     do {
46 |                         let result = try await self.load(input)
   |                                                `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
47 |                         promise(.success(result))
48 |                     } catch {
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Loader.swift:41:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
39 |
40 | extension Loader {
41 |     public func loadPublisher(_ input: Input) -> Deferred<Future<Output, Error>> {
   |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
42 |         Deferred {
43 |             Future { promise in
[14/43] Compiling AsyncHTTP Any.swift
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Loader.swift:46:48: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
44 |                 Task { @MainActor in
45 |                     do {
46 |                         let result = try await self.load(input)
   |                                                `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
47 |                         promise(.success(result))
48 |                     } catch {
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Loader.swift:41:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
39 |
40 | extension Loader {
41 |     public func loadPublisher(_ input: Input) -> Deferred<Future<Output, Error>> {
   |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
42 |         Deferred {
43 |             Future { promise in
[15/43] Compiling AsyncHTTP Capture.swift
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Loader.swift:46:48: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
44 |                 Task { @MainActor in
45 |                     do {
46 |                         let result = try await self.load(input)
   |                                                `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
47 |                         promise(.success(result))
48 |                     } catch {
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Loader.swift:41:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
39 |
40 | extension Loader {
41 |     public func loadPublisher(_ input: Input) -> Deferred<Future<Output, Error>> {
   |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
42 |         Deferred {
43 |             Future { promise in
[16/43] Compiling AsyncHTTP Decode.swift
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Loader.swift:46:48: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
44 |                 Task { @MainActor in
45 |                     do {
46 |                         let result = try await self.load(input)
   |                                                `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
47 |                         promise(.success(result))
48 |                     } catch {
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Loader.swift:41:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
39 |
40 | extension Loader {
41 |     public func loadPublisher(_ input: Input) -> Deferred<Future<Output, Error>> {
   |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
42 |         Deferred {
43 |             Future { promise in
[17/43] Compiling AsyncHTTP FlatMap.swift
[18/43] Compiling AsyncHTTP HTTP.swift
[19/43] Compiling AsyncHTTP Intercept.swift
[20/43] Compiling AsyncHTTP Map.swift
[21/43] Compiling AsyncHTTP ValidateRequests.swift
[22/43] Compiling AsyncHTTP Clock.swift
[23/43] Compiling AsyncHTTP Combine.swift
[24/43] Compiling AsyncHTTP AsyncHTTP.swift
[25/43] Compiling AsyncHTTP Formatter.swift
[26/43] Compiling AsyncHTTP HTTPRequestFormatter.swift
[27/43] Compiling AsyncHTTP HTTPResponseFormatter.swift
[28/43] Compiling AsyncHTTP HTTPMethod.swift
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:186:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'Foundation'
184 | }
185 |
186 | extension URLComponents: @unchecked Sendable {}
    |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'Foundation'
187 | extension AnyHashable: @unchecked Sendable {}
188 |
Foundation.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct URLComponents : Hashable, Equatable, Sendable {
   |               `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
 3 |     public init()
 4 |     public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:187:1: warning: extension declares a conformance of imported type 'AnyHashable' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
185 |
186 | extension URLComponents: @unchecked Sendable {}
187 | extension AnyHashable: @unchecked Sendable {}
    | |- warning: extension declares a conformance of imported type 'AnyHashable' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
188 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:187:35: warning: conformance of 'AnyHashable' to protocol 'Sendable' was already stated in the type's module 'Swift'
185 |
186 | extension URLComponents: @unchecked Sendable {}
187 | extension AnyHashable: @unchecked Sendable {}
    |                                   `- warning: conformance of 'AnyHashable' to protocol 'Sendable' was already stated in the type's module 'Swift'
188 |
Swift.AnyHashable:2:11: note: 'AnyHashable' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension AnyHashable : Sendable {
  |           `- note: 'AnyHashable' declares conformance to protocol 'Sendable' here
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequestBody.swift:120:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'Foundation'
118 | }
119 |
120 | extension Data: @unchecked Sendable {
    |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'Foundation'
121 |     @inlinable
122 |     mutating func append(_ string: String) {
Foundation.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
   |                       `- note: 'Data' declares conformance to protocol 'Sendable' here
 3 |     public typealias Index = Int
 4 |     public typealias Indices = Range<Int>
[29/43] Compiling AsyncHTTP HTTPRequest.swift
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:186:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'Foundation'
184 | }
185 |
186 | extension URLComponents: @unchecked Sendable {}
    |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'Foundation'
187 | extension AnyHashable: @unchecked Sendable {}
188 |
Foundation.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct URLComponents : Hashable, Equatable, Sendable {
   |               `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
 3 |     public init()
 4 |     public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:187:1: warning: extension declares a conformance of imported type 'AnyHashable' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
185 |
186 | extension URLComponents: @unchecked Sendable {}
187 | extension AnyHashable: @unchecked Sendable {}
    | |- warning: extension declares a conformance of imported type 'AnyHashable' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
188 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:187:35: warning: conformance of 'AnyHashable' to protocol 'Sendable' was already stated in the type's module 'Swift'
185 |
186 | extension URLComponents: @unchecked Sendable {}
187 | extension AnyHashable: @unchecked Sendable {}
    |                                   `- warning: conformance of 'AnyHashable' to protocol 'Sendable' was already stated in the type's module 'Swift'
188 |
Swift.AnyHashable:2:11: note: 'AnyHashable' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension AnyHashable : Sendable {
  |           `- note: 'AnyHashable' declares conformance to protocol 'Sendable' here
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequestBody.swift:120:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'Foundation'
118 | }
119 |
120 | extension Data: @unchecked Sendable {
    |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'Foundation'
121 |     @inlinable
122 |     mutating func append(_ string: String) {
Foundation.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
   |                       `- note: 'Data' declares conformance to protocol 'Sendable' here
 3 |     public typealias Index = Int
 4 |     public typealias Indices = Range<Int>
[30/43] Compiling AsyncHTTP HTTPRequestBody.swift
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:186:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'Foundation'
184 | }
185 |
186 | extension URLComponents: @unchecked Sendable {}
    |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'Foundation'
187 | extension AnyHashable: @unchecked Sendable {}
188 |
Foundation.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct URLComponents : Hashable, Equatable, Sendable {
   |               `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
 3 |     public init()
 4 |     public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:187:1: warning: extension declares a conformance of imported type 'AnyHashable' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
185 |
186 | extension URLComponents: @unchecked Sendable {}
187 | extension AnyHashable: @unchecked Sendable {}
    | |- warning: extension declares a conformance of imported type 'AnyHashable' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
188 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:187:35: warning: conformance of 'AnyHashable' to protocol 'Sendable' was already stated in the type's module 'Swift'
185 |
186 | extension URLComponents: @unchecked Sendable {}
187 | extension AnyHashable: @unchecked Sendable {}
    |                                   `- warning: conformance of 'AnyHashable' to protocol 'Sendable' was already stated in the type's module 'Swift'
188 |
Swift.AnyHashable:2:11: note: 'AnyHashable' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension AnyHashable : Sendable {
  |           `- note: 'AnyHashable' declares conformance to protocol 'Sendable' here
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequestBody.swift:120:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'Foundation'
118 | }
119 |
120 | extension Data: @unchecked Sendable {
    |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'Foundation'
121 |     @inlinable
122 |     mutating func append(_ string: String) {
Foundation.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
   |                       `- note: 'Data' declares conformance to protocol 'Sendable' here
 3 |     public typealias Index = Int
 4 |     public typealias Indices = Range<Int>
[31/43] Compiling AsyncHTTP HTTPResponse.swift
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:186:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'Foundation'
184 | }
185 |
186 | extension URLComponents: @unchecked Sendable {}
    |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'Foundation'
187 | extension AnyHashable: @unchecked Sendable {}
188 |
Foundation.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct URLComponents : Hashable, Equatable, Sendable {
   |               `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
 3 |     public init()
 4 |     public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:187:1: warning: extension declares a conformance of imported type 'AnyHashable' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
185 |
186 | extension URLComponents: @unchecked Sendable {}
187 | extension AnyHashable: @unchecked Sendable {}
    | |- warning: extension declares a conformance of imported type 'AnyHashable' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
188 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:187:35: warning: conformance of 'AnyHashable' to protocol 'Sendable' was already stated in the type's module 'Swift'
185 |
186 | extension URLComponents: @unchecked Sendable {}
187 | extension AnyHashable: @unchecked Sendable {}
    |                                   `- warning: conformance of 'AnyHashable' to protocol 'Sendable' was already stated in the type's module 'Swift'
188 |
Swift.AnyHashable:2:11: note: 'AnyHashable' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension AnyHashable : Sendable {
  |           `- note: 'AnyHashable' declares conformance to protocol 'Sendable' here
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequestBody.swift:120:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'Foundation'
118 | }
119 |
120 | extension Data: @unchecked Sendable {
    |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'Foundation'
121 |     @inlinable
122 |     mutating func append(_ string: String) {
Foundation.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
   |                       `- note: 'Data' declares conformance to protocol 'Sendable' here
 3 |     public typealias Index = Int
 4 |     public typealias Indices = Range<Int>
[32/43] Compiling AsyncHTTP Retry.swift
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:88:27: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 86 |         public func load(_ input: Wrapped.Input) async throws -> Wrapped.Output {
 87 |             let task = Task {
 88 |                 try await loader.load(input)
    |                           `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 89 |             }
 90 |             if let timeout = timeout(input) {
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:86:21: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 84 |         }
 85 |
 86 |         public func load(_ input: Wrapped.Input) async throws -> Wrapped.Output {
    |                     `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 87 |             let task = Task {
 88 |                 try await loader.load(input)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:92:31: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 90 |             if let timeout = timeout(input) {
 91 |                 Task.detached {
 92 |                     try await wait(timeout.maximumDuration)
    |                               `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 93 |                     task.cancel()
 94 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:86:21: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 84 |         }
 85 |
 86 |         public func load(_ input: Wrapped.Input) async throws -> Wrapped.Output {
    |                     `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 87 |             let task = Task {
 88 |                 try await loader.load(input)
[33/43] Compiling AsyncHTTP ServerEnvironment.swift
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:88:27: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 86 |         public func load(_ input: Wrapped.Input) async throws -> Wrapped.Output {
 87 |             let task = Task {
 88 |                 try await loader.load(input)
    |                           `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 89 |             }
 90 |             if let timeout = timeout(input) {
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:86:21: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 84 |         }
 85 |
 86 |         public func load(_ input: Wrapped.Input) async throws -> Wrapped.Output {
    |                     `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 87 |             let task = Task {
 88 |                 try await loader.load(input)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:92:31: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 90 |             if let timeout = timeout(input) {
 91 |                 Task.detached {
 92 |                     try await wait(timeout.maximumDuration)
    |                               `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 93 |                     task.cancel()
 94 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:86:21: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 84 |         }
 85 |
 86 |         public func load(_ input: Wrapped.Input) async throws -> Wrapped.Output {
    |                     `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 87 |             let task = Task {
 88 |                 try await loader.load(input)
[34/43] Compiling AsyncHTTP Throttle.swift
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:88:27: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 86 |         public func load(_ input: Wrapped.Input) async throws -> Wrapped.Output {
 87 |             let task = Task {
 88 |                 try await loader.load(input)
    |                           `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 89 |             }
 90 |             if let timeout = timeout(input) {
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:86:21: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 84 |         }
 85 |
 86 |         public func load(_ input: Wrapped.Input) async throws -> Wrapped.Output {
    |                     `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 87 |             let task = Task {
 88 |                 try await loader.load(input)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:92:31: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 90 |             if let timeout = timeout(input) {
 91 |                 Task.detached {
 92 |                     try await wait(timeout.maximumDuration)
    |                               `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 93 |                     task.cancel()
 94 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:86:21: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 84 |         }
 85 |
 86 |         public func load(_ input: Wrapped.Input) async throws -> Wrapped.Output {
    |                     `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 87 |             let task = Task {
 88 |                 try await loader.load(input)
[35/43] Compiling AsyncHTTP Timeout.swift
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:88:27: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 86 |         public func load(_ input: Wrapped.Input) async throws -> Wrapped.Output {
 87 |             let task = Task {
 88 |                 try await loader.load(input)
    |                           `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 89 |             }
 90 |             if let timeout = timeout(input) {
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:86:21: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 84 |         }
 85 |
 86 |         public func load(_ input: Wrapped.Input) async throws -> Wrapped.Output {
    |                     `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 87 |             let task = Task {
 88 |                 try await loader.load(input)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:92:31: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 90 |             if let timeout = timeout(input) {
 91 |                 Task.detached {
 92 |                     try await wait(timeout.maximumDuration)
    |                               `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 93 |                     task.cancel()
 94 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:86:21: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 84 |         }
 85 |
 86 |         public func load(_ input: Wrapped.Input) async throws -> Wrapped.Output {
    |                     `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 87 |             let task = Task {
 88 |                 try await loader.load(input)
[36/43] Compiling AsyncHTTP Pipe.swift
[37/43] Compiling AsyncHTTP Pullback.swift
[38/43] Compiling AsyncHTTP URLSession.swift
[39/43] Compiling AsyncHTTP HTTPHeader.swift
[40/43] Compiling AsyncHTTP Deduplication.swift
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Deduplication.swift:31:34: warning: capture of non-sendable type 'Wrapped.Input.Type' in an isolated closure; this is an error in the Swift 6 language mode
29 |             }
30 |             let task = Task {
31 |                 try await loader.load(input)
   |                                  `- warning: capture of non-sendable type 'Wrapped.Input.Type' in an isolated closure; this is an error in the Swift 6 language mode
32 |             }
33 |             pendingRequests[input] = task
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Deduplication.swift:31:27: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
29 |             }
30 |             let task = Task {
31 |                 try await loader.load(input)
   |                           `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
32 |             }
33 |             pendingRequests[input] = task
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Deduplication.swift:26:21: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 |         }
25 |
26 |         public func load(_ input: Wrapped.Input) async throws -> Wrapped.Output {
   |                     `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
27 |             if let task = pendingRequests[input] {
28 |                 return try await task.value
[41/43] Compiling AsyncHTTP Delay.swift
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Deduplication.swift:31:34: warning: capture of non-sendable type 'Wrapped.Input.Type' in an isolated closure; this is an error in the Swift 6 language mode
29 |             }
30 |             let task = Task {
31 |                 try await loader.load(input)
   |                                  `- warning: capture of non-sendable type 'Wrapped.Input.Type' in an isolated closure; this is an error in the Swift 6 language mode
32 |             }
33 |             pendingRequests[input] = task
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Deduplication.swift:31:27: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
29 |             }
30 |             let task = Task {
31 |                 try await loader.load(input)
   |                           `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
32 |             }
33 |             pendingRequests[input] = task
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Deduplication.swift:26:21: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 |         }
25 |
26 |         public func load(_ input: Wrapped.Input) async throws -> Wrapped.Output {
   |                     `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
27 |             if let task = pendingRequests[input] {
28 |                 return try await task.value
[42/43] Compiling AsyncHTTP IdentifyRequests.swift
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Deduplication.swift:31:34: warning: capture of non-sendable type 'Wrapped.Input.Type' in an isolated closure; this is an error in the Swift 6 language mode
29 |             }
30 |             let task = Task {
31 |                 try await loader.load(input)
   |                                  `- warning: capture of non-sendable type 'Wrapped.Input.Type' in an isolated closure; this is an error in the Swift 6 language mode
32 |             }
33 |             pendingRequests[input] = task
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Deduplication.swift:31:27: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
29 |             }
30 |             let task = Task {
31 |                 try await loader.load(input)
   |                           `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
32 |             }
33 |             pendingRequests[input] = task
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Deduplication.swift:26:21: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 |         }
25 |
26 |         public func load(_ input: Wrapped.Input) async throws -> Wrapped.Output {
   |                     `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
27 |             if let task = pendingRequests[input] {
28 |                 return try await task.value
[43/43] Compiling AsyncHTTP NetworkConstrained.swift
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Deduplication.swift:31:34: warning: capture of non-sendable type 'Wrapped.Input.Type' in an isolated closure; this is an error in the Swift 6 language mode
29 |             }
30 |             let task = Task {
31 |                 try await loader.load(input)
   |                                  `- warning: capture of non-sendable type 'Wrapped.Input.Type' in an isolated closure; this is an error in the Swift 6 language mode
32 |             }
33 |             pendingRequests[input] = task
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Deduplication.swift:31:27: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
29 |             }
30 |             let task = Task {
31 |                 try await loader.load(input)
   |                           `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
32 |             }
33 |             pendingRequests[input] = task
/Users/admin/builder/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Deduplication.swift:26:21: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 |         }
25 |
26 |         public func load(_ input: Wrapped.Input) async throws -> Wrapped.Output {
   |                     `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
27 |             if let task = pendingRequests[input] {
28 |                 return try await task.value
Build complete! (19.11s)
Fetching https://github.com/apple/swift-docc-plugin
[1/2082] Fetching swift-docc-plugin
Fetched https://github.com/apple/swift-docc-plugin from cache (1.82s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.4 (2.40s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3413] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.09s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.67s)
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.4
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    }
  ],
  "manifest_display_name" : "AsyncHTTP",
  "name" : "AsyncHTTP",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "15.0"
    },
    {
      "name" : "tvos",
      "version" : "15.0"
    },
    {
      "name" : "watchos",
      "version" : "8.0"
    }
  ],
  "products" : [
    {
      "name" : "AsyncHTTP",
      "targets" : [
        "AsyncHTTP"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "AsyncHTTPTests",
      "module_type" : "SwiftTarget",
      "name" : "AsyncHTTPTests",
      "path" : "Tests/AsyncHTTPTests",
      "sources" : [
        "Clock.swift",
        "Combine.swift",
        "ConvertedTests.swift",
        "HTTPFormatterTests.swift",
        "HTTPNetworkExecutorTests.swift",
        "HTTPRequestTests.swift",
        "StaticLoader.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "AsyncHTTP"
      ],
      "type" : "test"
    },
    {
      "c99name" : "AsyncHTTP",
      "module_type" : "SwiftTarget",
      "name" : "AsyncHTTP",
      "path" : "Sources/AsyncHTTP",
      "product_memberships" : [
        "AsyncHTTP"
      ],
      "sources" : [
        "AsyncHTTP.swift",
        "Formatters/Formatter.swift",
        "Formatters/HTTPRequestFormatter.swift",
        "Formatters/HTTPResponseFormatter.swift",
        "Loader.swift",
        "Loaders/Any.swift",
        "Loaders/Capture.swift",
        "Loaders/Decode.swift",
        "Loaders/FlatMap.swift",
        "Loaders/HTTP.swift",
        "Loaders/Intercept.swift",
        "Loaders/Map.swift",
        "Loaders/Pipe.swift",
        "Loaders/Pullback.swift",
        "Loaders/URLSession.swift",
        "Model/HTTPHeader.swift",
        "Model/HTTPMethod.swift",
        "Model/HTTPRequest.swift",
        "Model/HTTPRequestBody.swift",
        "Model/HTTPResponse.swift",
        "Model/HTTPStatus.swift",
        "Model/HTTPVersion.swift",
        "Model/MIMEType.swift",
        "Model/URIScheme.swift",
        "Plugins/Deduplication.swift",
        "Plugins/Delay.swift",
        "Plugins/IdentifyRequests.swift",
        "Plugins/NetworkConstrained.swift",
        "Plugins/Retry.swift",
        "Plugins/ServerEnvironment.swift",
        "Plugins/Throttle.swift",
        "Plugins/Timeout.swift",
        "Plugins/ValidateRequests.swift",
        "Utils/Clock.swift",
        "Utils/Combine.swift",
        "Utils/Converted.swift",
        "Utils/HTTPFormattible.swift",
        "Utils/Sorted.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.