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 1.1.0 (56228f), with Swift 6.2 (beta) for Linux on 19 Jun 2025 15:38:59 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/tevelee/AsyncHTTP.git
Reference: 1.1.0
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/tevelee/AsyncHTTP
 * tag               1.1.0      -> FETCH_HEAD
HEAD is now at 56228ff Adopting primary associated types
Cloned https://github.com/tevelee/AsyncHTTP.git
Revision (git rev-parse @):
56228ff141d61083071bd941db2918a4dc040143
SUCCESS checkout https://github.com/tevelee/AsyncHTTP.git at 1.1.0
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.2
Building package at path:  $PWD
https://github.com/tevelee/AsyncHTTP.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Fetching https://github.com/apple/swift-docc-plugin
[1/2082] Fetching swift-docc-plugin
Fetched https://github.com/apple/swift-docc-plugin from cache (0.50s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.4 (1.02s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3413] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.53s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.16s)
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
[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-24593BA9C3E375BF.txt
[5/37] Emitting module AsyncHTTP
/host/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 'FoundationEssentials'
184 | }
185 |
186 | extension URLComponents: @unchecked Sendable {}
    |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
187 | extension AnyHashable: @unchecked Sendable {}
188 |
FoundationEssentials.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)
/host/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 |
/host/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 | }
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequestBody.swift:113:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
111 | }
112 |
113 | extension Data: @unchecked Sendable {}
    |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
114 |
FoundationEssentials.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/41] Compiling AsyncHTTP Deduplication.swift
/host/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
/host/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
/host/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
[7/41] Compiling AsyncHTTP Delay.swift
/host/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
/host/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
/host/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
[8/41] Compiling AsyncHTTP IdentifyRequests.swift
/host/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
/host/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
/host/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
[9/41] Compiling AsyncHTTP Retry.swift
/host/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
/host/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
/host/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
[10/41] Compiling AsyncHTTP Combine.swift
[11/41] Compiling AsyncHTTP Converted.swift
[12/41] Compiling AsyncHTTP HTTPFormattible.swift
[13/41] Compiling AsyncHTTP Sorted.swift
[14/41] Compiling AsyncHTTP HTTPStatus.swift
[15/41] Compiling AsyncHTTP HTTPVersion.swift
[16/41] Compiling AsyncHTTP MIMEType.swift
[17/41] Compiling AsyncHTTP URIScheme.swift
[18/41] Compiling AsyncHTTP ServerEnvironment.swift
/host/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:83:27: warning: capture of non-Sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 81 |         public func load(_ input: Wrapped.Input) async throws -> Wrapped.Output {
 82 |             let task = Task {
 83 |                 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
 84 |             }
 85 |             if let timeout = timeout(input) {
/host/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:81:21: warning: capture of non-Sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 79 |         }
 80 |
 81 |         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
 82 |             let task = Task {
 83 |                 try await loader.load(input)
/host/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:87:31: warning: capture of non-Sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 85 |             if let timeout = timeout(input) {
 86 |                 Task.detached {
 87 |                     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
 88 |                     task.cancel()
 89 |                 }
/host/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:81:21: warning: capture of non-Sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 79 |         }
 80 |
 81 |         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
 82 |             let task = Task {
 83 |                 try await loader.load(input)
/host/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:115:13: warning: default will never be executed
113 |             case .never:
114 |                 return nil
115 |             default:
    |             `- warning: default will never be executed
116 |                 return nil
117 |         }
[19/41] Compiling AsyncHTTP Throttle.swift
/host/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:83:27: warning: capture of non-Sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 81 |         public func load(_ input: Wrapped.Input) async throws -> Wrapped.Output {
 82 |             let task = Task {
 83 |                 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
 84 |             }
 85 |             if let timeout = timeout(input) {
/host/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:81:21: warning: capture of non-Sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 79 |         }
 80 |
 81 |         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
 82 |             let task = Task {
 83 |                 try await loader.load(input)
/host/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:87:31: warning: capture of non-Sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 85 |             if let timeout = timeout(input) {
 86 |                 Task.detached {
 87 |                     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
 88 |                     task.cancel()
 89 |                 }
/host/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:81:21: warning: capture of non-Sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 79 |         }
 80 |
 81 |         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
 82 |             let task = Task {
 83 |                 try await loader.load(input)
/host/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:115:13: warning: default will never be executed
113 |             case .never:
114 |                 return nil
115 |             default:
    |             `- warning: default will never be executed
116 |                 return nil
117 |         }
[20/41] Compiling AsyncHTTP Timeout.swift
/host/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:83:27: warning: capture of non-Sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 81 |         public func load(_ input: Wrapped.Input) async throws -> Wrapped.Output {
 82 |             let task = Task {
 83 |                 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
 84 |             }
 85 |             if let timeout = timeout(input) {
/host/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:81:21: warning: capture of non-Sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 79 |         }
 80 |
 81 |         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
 82 |             let task = Task {
 83 |                 try await loader.load(input)
/host/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:87:31: warning: capture of non-Sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 85 |             if let timeout = timeout(input) {
 86 |                 Task.detached {
 87 |                     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
 88 |                     task.cancel()
 89 |                 }
/host/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:81:21: warning: capture of non-Sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 79 |         }
 80 |
 81 |         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
 82 |             let task = Task {
 83 |                 try await loader.load(input)
/host/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:115:13: warning: default will never be executed
113 |             case .never:
114 |                 return nil
115 |             default:
    |             `- warning: default will never be executed
116 |                 return nil
117 |         }
[21/41] Compiling AsyncHTTP ValidateRequests.swift
/host/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:83:27: warning: capture of non-Sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 81 |         public func load(_ input: Wrapped.Input) async throws -> Wrapped.Output {
 82 |             let task = Task {
 83 |                 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
 84 |             }
 85 |             if let timeout = timeout(input) {
/host/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:81:21: warning: capture of non-Sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 79 |         }
 80 |
 81 |         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
 82 |             let task = Task {
 83 |                 try await loader.load(input)
/host/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:87:31: warning: capture of non-Sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 85 |             if let timeout = timeout(input) {
 86 |                 Task.detached {
 87 |                     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
 88 |                     task.cancel()
 89 |                 }
/host/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:81:21: warning: capture of non-Sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 79 |         }
 80 |
 81 |         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
 82 |             let task = Task {
 83 |                 try await loader.load(input)
/host/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:115:13: warning: default will never be executed
113 |             case .never:
114 |                 return nil
115 |             default:
    |             `- warning: default will never be executed
116 |                 return nil
117 |         }
[22/41] Compiling AsyncHTTP Intercept.swift
[23/41] Compiling AsyncHTTP Map.swift
[24/41] Compiling AsyncHTTP Pipe.swift
[25/41] Compiling AsyncHTTP Pullback.swift
[26/41] Compiling AsyncHTTP URLSession.swift
[27/41] Compiling AsyncHTTP HTTPHeader.swift
/host/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 'FoundationEssentials'
184 | }
185 |
186 | extension URLComponents: @unchecked Sendable {}
    |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
187 | extension AnyHashable: @unchecked Sendable {}
188 |
FoundationEssentials.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)
/host/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 |
/host/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 | }
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequestBody.swift:113:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
111 | }
112 |
113 | extension Data: @unchecked Sendable {}
    |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
114 |
FoundationEssentials.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>
[28/41] Compiling AsyncHTTP HTTPMethod.swift
/host/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 'FoundationEssentials'
184 | }
185 |
186 | extension URLComponents: @unchecked Sendable {}
    |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
187 | extension AnyHashable: @unchecked Sendable {}
188 |
FoundationEssentials.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)
/host/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 |
/host/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 | }
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequestBody.swift:113:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
111 | }
112 |
113 | extension Data: @unchecked Sendable {}
    |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
114 |
FoundationEssentials.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/41] Compiling AsyncHTTP HTTPRequest.swift
/host/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 'FoundationEssentials'
184 | }
185 |
186 | extension URLComponents: @unchecked Sendable {}
    |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
187 | extension AnyHashable: @unchecked Sendable {}
188 |
FoundationEssentials.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)
/host/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 |
/host/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 | }
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequestBody.swift:113:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
111 | }
112 |
113 | extension Data: @unchecked Sendable {}
    |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
114 |
FoundationEssentials.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/41] Compiling AsyncHTTP HTTPRequestBody.swift
/host/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 'FoundationEssentials'
184 | }
185 |
186 | extension URLComponents: @unchecked Sendable {}
    |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
187 | extension AnyHashable: @unchecked Sendable {}
188 |
FoundationEssentials.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)
/host/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 |
/host/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 | }
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequestBody.swift:113:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
111 | }
112 |
113 | extension Data: @unchecked Sendable {}
    |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
114 |
FoundationEssentials.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/41] Compiling AsyncHTTP HTTPResponse.swift
/host/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 'FoundationEssentials'
184 | }
185 |
186 | extension URLComponents: @unchecked Sendable {}
    |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
187 | extension AnyHashable: @unchecked Sendable {}
188 |
FoundationEssentials.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)
/host/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 |
/host/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 | }
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequestBody.swift:113:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
111 | }
112 |
113 | extension Data: @unchecked Sendable {}
    |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
114 |
FoundationEssentials.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/41] Compiling AsyncHTTP AsyncHTTP.swift
[33/41] Compiling AsyncHTTP Formatter.swift
[34/41] Compiling AsyncHTTP HTTPRequestFormatter.swift
[35/41] Compiling AsyncHTTP HTTPResponseFormatter.swift
[36/41] Compiling AsyncHTTP Loader.swift
[37/41] Compiling AsyncHTTP Any.swift
[38/41] Compiling AsyncHTTP Capture.swift
[39/41] Compiling AsyncHTTP Decode.swift
[40/41] Compiling AsyncHTTP FlatMap.swift
[41/41] Compiling AsyncHTTP HTTP.swift
Build complete! (36.30s)
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" : "/host/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" : [
        "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/Retry.swift",
        "Plugins/ServerEnvironment.swift",
        "Plugins/Throttle.swift",
        "Plugins/Timeout.swift",
        "Plugins/ValidateRequests.swift",
        "Utils/Combine.swift",
        "Utils/Converted.swift",
        "Utils/HTTPFormattible.swift",
        "Utils/Sorted.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Done.