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 HTTPClient, reference main (960cbb), with Swift 6.2 (beta) for macOS (SPM) on 22 Jun 2025 02:26:29 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/marinofelipe/http_client.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/marinofelipe/http_client
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 960cbb5 Missing conditional imports for Linux
Cloned https://github.com/marinofelipe/http_client.git
Revision (git rev-parse @):
960cbb55c2082c97523257aec91bb6b7e57f8e2e
SUCCESS checkout https://github.com/marinofelipe/http_client.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/marinofelipe/http_client.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/6] Write sources
[5/6] Write swift-version-1EA4D86E10B52AF.txt
[7/19] Compiling Logging Logging.swift
[8/19] Compiling Logging LogHandler.swift
[9/19] Compiling Logging Locks.swift
[10/19] Emitting module Logging
[11/19] Compiling Logging MetadataProvider.swift
[12/19] Compiling HTTPClientCore HTTPRequestScheme.swift
[13/19] Compiling HTTPClientCore HTTPRequestMethod.swift
[14/19] Compiling HTTPClientCore HTTPRequestError.swift
[15/19] Compiling HTTPClientCore Set+HTTPClient.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientCore/Extensions/Set+HTTPClient.swift:2:16: warning: static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
1 | public extension Set where Element == Int {
2 |     static var defaultSuccessfulStatusCodes: Set<Int> = Set(200..<300)
  |                |- warning: static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
  |                |- note: convert 'defaultSuccessfulStatusCodes' to a 'let' constant to make 'Sendable' shared state immutable
  |                |- note: add '@MainActor' to make static property 'defaultSuccessfulStatusCodes' part of global actor 'MainActor'
  |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
3 | }
4 |
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[16/19] Compiling HTTPClientCore Data+HTTPClient.swift
[17/19] Compiling HTTPClientCore Result+HTTPClient.swift
[18/19] Emitting module HTTPClientCore
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientCore/Extensions/Set+HTTPClient.swift:2:16: warning: static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
1 | public extension Set where Element == Int {
2 |     static var defaultSuccessfulStatusCodes: Set<Int> = Set(200..<300)
  |                |- warning: static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
  |                |- note: convert 'defaultSuccessfulStatusCodes' to a 'let' constant to make 'Sendable' shared state immutable
  |                |- note: add '@MainActor' to make static property 'defaultSuccessfulStatusCodes' part of global actor 'MainActor'
  |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
3 | }
4 |
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[19/19] Compiling HTTPClientCore HTTPRequestBuilder.swift
[20/32] Emitting module CombineHTTPClient
/Users/admin/builder/spi-builder-workspace/Sources/CombineHTTPClient/CombineHTTPClient.swift:32:78: warning: reference to static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
30 |     @discardableResult
31 |     public func run<S: Decodable, F: Decodable>(_ request: URLRequest,
32 |                                                 validStatusCode: Set<Int> = .defaultSuccessfulStatusCodes,
   |                                                                              `- warning: reference to static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
33 |                                                 successDecoder: JSONDecoder = .init(),
34 |                                                 failureDecoder: JSONDecoder = .init(),
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientCore/Extensions/Set+HTTPClient.swift:2:16: note: static property declared here
1 | public extension Set where Element == Int {
2 |     static var defaultSuccessfulStatusCodes: Set<Int> = Set(200..<300)
  |                `- note: static property declared here
3 | }
4 |
[21/32] Compiling CombineHTTPClient CombineHTTPClient.swift
/Users/admin/builder/spi-builder-workspace/Sources/CombineHTTPClient/CombineHTTPClient.swift:32:78: warning: reference to static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
30 |     @discardableResult
31 |     public func run<S: Decodable, F: Decodable>(_ request: URLRequest,
32 |                                                 validStatusCode: Set<Int> = .defaultSuccessfulStatusCodes,
   |                                                                              `- warning: reference to static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
33 |                                                 successDecoder: JSONDecoder = .init(),
34 |                                                 failureDecoder: JSONDecoder = .init(),
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientCore/Extensions/Set+HTTPClient.swift:2:16: note: static property declared here
1 | public extension Set where Element == Int {
2 |     static var defaultSuccessfulStatusCodes: Set<Int> = Set(200..<300)
  |                `- note: static property declared here
3 | }
4 |
[22/32] Compiling CombineHTTPClient HTTPResponse.swift
[23/32] Compiling HTTPClient HTTPDecoder.swift
[24/32] Compiling HTTPClient HTTPClient.swift
[25/32] Compiling HTTPClient URLSessionProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClient/Abstractions/URLSessionProtocol.swift:13:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'URLSessionProtocol'; this is an error in the Swift 6 language mode
 7 |     var delegateQueue: OperationQueue { get }
 8 |
 9 |     func dataTask(with request: URLRequest,
   |          `- note: expected sendability to match requirement here
10 |                   completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
11 | }
12 |
13 | extension URLSession: URLSessionProtocol {}
   | `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'URLSessionProtocol'; this is an error in the Swift 6 language mode
14 |
[26/32] Emitting module HTTPClient
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClient/Abstractions/URLSessionProtocol.swift:13:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'URLSessionProtocol'; this is an error in the Swift 6 language mode
 7 |     var delegateQueue: OperationQueue { get }
 8 |
 9 |     func dataTask(with request: URLRequest,
   |          `- note: expected sendability to match requirement here
10 |                   completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
11 | }
12 |
13 | extension URLSession: URLSessionProtocol {}
   | `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'URLSessionProtocol'; this is an error in the Swift 6 language mode
14 |
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClient/Handlers/HTTPResponseHandler.swift:21:52: warning: reference to static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
19 |     let successfulStatusCodes: Set<Int>
20 |
21 |     public init(successfulStatusCodes: Set<Int> = .defaultSuccessfulStatusCodes) {
   |                                                    `- warning: reference to static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
22 |         self.successfulStatusCodes = successfulStatusCodes
23 |     }
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientCore/Extensions/Set+HTTPClient.swift:2:16: note: static property declared here
1 | public extension Set where Element == Int {
2 |     static var defaultSuccessfulStatusCodes: Set<Int> = Set(200..<300)
  |                `- note: static property declared here
3 | }
4 |
[27/32] Compiling HTTPClient HTTPTask.swift
[28/32] Compiling HTTPClient Optional+Data.swift
[29/32] Compiling HTTPClient LoggerMiddleware.swift
[30/32] Compiling HTTPClient HTTPResponse.swift
[31/32] Compiling HTTPClient HTTPClientMiddleware.swift
[32/32] Compiling HTTPClient HTTPResponseHandler.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClient/Handlers/HTTPResponseHandler.swift:21:52: warning: reference to static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
19 |     let successfulStatusCodes: Set<Int>
20 |
21 |     public init(successfulStatusCodes: Set<Int> = .defaultSuccessfulStatusCodes) {
   |                                                    `- warning: reference to static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
22 |         self.successfulStatusCodes = successfulStatusCodes
23 |     }
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientCore/Extensions/Set+HTTPClient.swift:2:16: note: static property declared here
1 | public extension Set where Element == Int {
2 |     static var defaultSuccessfulStatusCodes: Set<Int> = Set(200..<300)
  |                `- note: static property declared here
3 | }
4 |
[33/39] Compiling HTTPClientTestSupport HTTPTaskFake.swift
[34/39] Compiling HTTPClientTestSupport HTTPClientMock.swift
[35/39] Compiling HTTPClientTestSupport FakeHTTPResponse.swift
[36/39] Compiling HTTPClientTestSupport FakeResponseBody.swift
[37/39] Compiling HTTPClientTestSupport FakeError.swift
[38/39] Emitting module HTTPClientTestSupport
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:8:23: warning: static property 'startLoadingCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
 6 | /// A mock that can be used to run stubbed URLSession tasks.
 7 | public final class URLProtocolMock: URLProtocol {
 8 |     public static var startLoadingCallsCount: Int = 0
   |                       |- warning: static property 'startLoadingCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
   |                       |- note: convert 'startLoadingCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'startLoadingCallsCount' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static var stopLoadingCallsCount: Int = 0
10 |
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:9:23: warning: static property 'stopLoadingCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
 7 | public final class URLProtocolMock: URLProtocol {
 8 |     public static var startLoadingCallsCount: Int = 0
 9 |     public static var stopLoadingCallsCount: Int = 0
   |                       |- warning: static property 'stopLoadingCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
   |                       |- note: convert 'stopLoadingCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'stopLoadingCallsCount' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 |     // MARK: - Stub
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:13:23: warning: static property 'stubbedError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
11 |     // MARK: - Stub
12 |
13 |     public static var stubbedError: Error?
   |                       |- warning: static property 'stubbedError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
   |                       |- note: convert 'stubbedError' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'stubbedError' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     public static var stubbedRequestHandler: ((URLRequest) throws -> (HTTPURLResponse, Data?))?
15 |
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:14:23: warning: static property 'stubbedRequestHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
12 |
13 |     public static var stubbedError: Error?
14 |     public static var stubbedRequestHandler: ((URLRequest) throws -> (HTTPURLResponse, Data?))?
   |                       |- warning: static property 'stubbedRequestHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
   |                       |- note: convert 'stubbedRequestHandler' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'stubbedRequestHandler' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 |     public static func cleanup() {
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[39/39] Compiling HTTPClientTestSupport MockURLProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:8:23: warning: static property 'startLoadingCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
 6 | /// A mock that can be used to run stubbed URLSession tasks.
 7 | public final class URLProtocolMock: URLProtocol {
 8 |     public static var startLoadingCallsCount: Int = 0
   |                       |- warning: static property 'startLoadingCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
   |                       |- note: convert 'startLoadingCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'startLoadingCallsCount' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static var stopLoadingCallsCount: Int = 0
10 |
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:9:23: warning: static property 'stopLoadingCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
 7 | public final class URLProtocolMock: URLProtocol {
 8 |     public static var startLoadingCallsCount: Int = 0
 9 |     public static var stopLoadingCallsCount: Int = 0
   |                       |- warning: static property 'stopLoadingCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
   |                       |- note: convert 'stopLoadingCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'stopLoadingCallsCount' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 |     // MARK: - Stub
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:13:23: warning: static property 'stubbedError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
11 |     // MARK: - Stub
12 |
13 |     public static var stubbedError: Error?
   |                       |- warning: static property 'stubbedError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
   |                       |- note: convert 'stubbedError' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'stubbedError' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     public static var stubbedRequestHandler: ((URLRequest) throws -> (HTTPURLResponse, Data?))?
15 |
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:14:23: warning: static property 'stubbedRequestHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
12 |
13 |     public static var stubbedError: Error?
14 |     public static var stubbedRequestHandler: ((URLRequest) throws -> (HTTPURLResponse, Data?))?
   |                       |- warning: static property 'stubbedRequestHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
   |                       |- note: convert 'stubbedRequestHandler' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'stubbedRequestHandler' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 |     public static func cleanup() {
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
Build complete! (7.27s)
Fetching https://github.com/apple/swift-log.git
[1/3836] Fetching swift-log
Fetched https://github.com/apple/swift-log.git from cache (1.00s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (1.41s)
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.6.3
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-log",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log.git"
    }
  ],
  "manifest_display_name" : "HTTPClient",
  "name" : "HTTPClient",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "HTTPClient",
      "targets" : [
        "HTTPClient",
        "HTTPClientCore"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "CombineHTTPClient",
      "targets" : [
        "CombineHTTPClient",
        "HTTPClientCore"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "HTTPClientTestSupport",
      "targets" : [
        "HTTPClientTestSupport"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "HTTPClientTests",
      "module_type" : "SwiftTarget",
      "name" : "HTTPClientTests",
      "path" : "Tests/HTTPClientTests",
      "sources" : [
        "HTTPClientTests.swift",
        "HTTPResponseDecoderTests.swift",
        "HTTPResponseHandlerTests.swift",
        "Helpers/Helpers.swift",
        "Mocks/Mocks.swift"
      ],
      "target_dependencies" : [
        "HTTPClient",
        "HTTPClientTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "HTTPClientTestSupport",
      "module_type" : "SwiftTarget",
      "name" : "HTTPClientTestSupport",
      "path" : "Sources/HTTPClientTestSupport",
      "product_memberships" : [
        "HTTPClientTestSupport"
      ],
      "sources" : [
        "Fakes/FakeError.swift",
        "Fakes/FakeHTTPResponse.swift",
        "Fakes/FakeResponseBody.swift",
        "Fakes/HTTPTaskFake.swift",
        "Mocks/HTTPClientMock.swift",
        "Mocks/MockURLProtocol.swift"
      ],
      "target_dependencies" : [
        "HTTPClient"
      ],
      "type" : "library"
    },
    {
      "c99name" : "HTTPClientCoreTests",
      "module_type" : "SwiftTarget",
      "name" : "HTTPClientCoreTests",
      "path" : "Tests/HTTPClientCoreTests",
      "sources" : [
        "DataExtensionTests.swift",
        "HTTPRequestBuilderTests.swift",
        "ResultExtensionTests.swift",
        "SetExtensionTests.swift"
      ],
      "target_dependencies" : [
        "HTTPClientCore",
        "HTTPClientTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "HTTPClientCore",
      "module_type" : "SwiftTarget",
      "name" : "HTTPClientCore",
      "path" : "Sources/HTTPClientCore",
      "product_memberships" : [
        "HTTPClient",
        "CombineHTTPClient",
        "HTTPClientTestSupport"
      ],
      "sources" : [
        "Extensions/Data+HTTPClient.swift",
        "Extensions/Result+HTTPClient.swift",
        "Extensions/Set+HTTPClient.swift",
        "HTTPRequestBuilder/HTTPRequestBuilder.swift",
        "HTTPRequestError.swift",
        "HTTPRequestMethod.swift",
        "HTTPRequestScheme.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "HTTPClient",
      "module_type" : "SwiftTarget",
      "name" : "HTTPClient",
      "path" : "Sources/HTTPClient",
      "product_dependencies" : [
        "Logging"
      ],
      "product_memberships" : [
        "HTTPClient",
        "HTTPClientTestSupport"
      ],
      "sources" : [
        "Abstractions/HTTPTask.swift",
        "Abstractions/URLSessionProtocol.swift",
        "Decoders/HTTPDecoder.swift",
        "Extensions/Optional+Data.swift",
        "HTTPClient.swift",
        "HTTPResponse.swift",
        "Handlers/HTTPResponseHandler.swift",
        "Middlewares/HTTPClientMiddleware.swift",
        "Middlewares/LoggerMiddleware.swift"
      ],
      "target_dependencies" : [
        "HTTPClientCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CombineHTTPClientTests",
      "module_type" : "SwiftTarget",
      "name" : "CombineHTTPClientTests",
      "path" : "Tests/CombineHTTPClientTests",
      "sources" : [
        "CombineHTTPClientTests.swift"
      ],
      "target_dependencies" : [
        "CombineHTTPClient",
        "HTTPClientTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CombineHTTPClient",
      "module_type" : "SwiftTarget",
      "name" : "CombineHTTPClient",
      "path" : "Sources/CombineHTTPClient",
      "product_dependencies" : [
        "Logging"
      ],
      "product_memberships" : [
        "CombineHTTPClient"
      ],
      "sources" : [
        "CombineHTTPClient.swift",
        "HTTPResponse.swift"
      ],
      "target_dependencies" : [
        "HTTPClientCore"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.8"
}
Done.