Build Information
Successful build of AsyncHTTP, reference main (216463), with Swift 6.3 for macOS (SPM) on 13 Apr 2026 06:43:03 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/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
Fetching https://github.com/apple/swift-docc-plugin
[1/2271] Fetching swift-docc-plugin
Fetched https://github.com/apple/swift-docc-plugin from cache (1.17s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.0.0 (1.85s)
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.0.0
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
"identity": ".resolve-product-dependencies",
"name": "resolve-dependencies",
"url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"traits": [
"default"
],
"dependencies": [
{
"identity": "asynchttp",
"name": "AsyncHTTP",
"url": "https://github.com/tevelee/AsyncHTTP.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/AsyncHTTP",
"traits": [
"default"
],
"dependencies": [
]
}
]
}
Fetching https://github.com/tevelee/AsyncHTTP.git
[1/11016] Fetching asynchttp
Fetched https://github.com/tevelee/AsyncHTTP.git from cache (9.35s)
Creating working copy for https://github.com/tevelee/AsyncHTTP.git
Working copy of https://github.com/tevelee/AsyncHTTP.git resolved at main (216463f)
warning: '.resolve-product-dependencies': dependency 'asynchttp' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.3
Building package at path: $PWD
https://github.com/tevelee/AsyncHTTP.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.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--6988338F2F200930.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 ValidateRequests.swift
[10/43] Compiling AsyncHTTP Clock.swift
[11/43] Compiling AsyncHTTP Combine.swift
[12/43] Compiling AsyncHTTP AsyncHTTP.swift
[13/43] Compiling AsyncHTTP Formatter.swift
[14/43] Compiling AsyncHTTP HTTPRequestFormatter.swift
[15/43] Compiling AsyncHTTP HTTPResponseFormatter.swift
[16/43] Compiling AsyncHTTP Retry.swift
[17/43] Compiling AsyncHTTP ServerEnvironment.swift
[18/43] Compiling AsyncHTTP Throttle.swift
[19/43] Compiling AsyncHTTP Timeout.swift
[20/43] Compiling AsyncHTTP Pipe.swift
[21/43] Compiling AsyncHTTP Pullback.swift
[22/43] Compiling AsyncHTTP URLSession.swift
[23/43] Compiling AsyncHTTP HTTPHeader.swift
[24/43] Compiling AsyncHTTP Loader.swift
[25/43] Compiling AsyncHTTP Any.swift
[26/43] Compiling AsyncHTTP Capture.swift
[27/43] Compiling AsyncHTTP Decode.swift
[28/43] Compiling AsyncHTTP FlatMap.swift
[29/43] Compiling AsyncHTTP HTTP.swift
[30/43] Compiling AsyncHTTP Intercept.swift
[31/43] Compiling AsyncHTTP Map.swift
[32/43] Compiling AsyncHTTP HTTPStatus.swift
[33/43] Compiling AsyncHTTP HTTPVersion.swift
[34/43] Compiling AsyncHTTP MIMEType.swift
[35/43] Compiling AsyncHTTP URIScheme.swift
[36/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>
[37/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>
[38/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>
[39/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>
[40/43] Compiling AsyncHTTP Deduplication.swift
[41/43] Compiling AsyncHTTP Delay.swift
[42/43] Compiling AsyncHTTP IdentifyRequests.swift
[43/43] Compiling AsyncHTTP NetworkConstrained.swift
Build complete! (12.83s)
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.