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

The Swift Package Index logo.Swift Package Index

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

Build Information

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

Swift 6 data race errors: 6

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/gonzalezreal/SimpleNetworking.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/gonzalezreal/SimpleNetworking
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at bd2bd41 Update README
Cloned https://github.com/gonzalezreal/SimpleNetworking.git
Revision (git rev-parse @):
bd2bd41ab92d83a0de1991c4b10d5f182fafee2f
SUCCESS checkout https://github.com/gonzalezreal/SimpleNetworking.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/gonzalezreal/SimpleNetworking.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-6F35C1178C84523A.txt
[4/7] Emitting module Logging
[5/7] Compiling Logging LogHandler.swift
[6/7] Compiling Logging Locks.swift
[7/7] Compiling Logging Logging.swift
[8/22] Compiling SimpleNetworking Exports.swift
[9/23] Compiling SimpleNetworking URLSession+Stubbed.swift
[10/23] Compiling SimpleNetworking HeaderField.swift
/Users/admin/builder/spi-builder-workspace/Sources/SimpleNetworking/HeaderField.swift:55:16: warning: static property 'accept' is not concurrency-safe because non-'Sendable' type 'HeaderField' may have shared mutable state; this is an error in the Swift 6 language mode
43 | ///     )
44 | ///
45 | public struct HeaderField: Hashable, Equatable, RawRepresentable {
   |               `- note: consider making struct 'HeaderField' conform to the 'Sendable' protocol
46 |     public let rawValue: String
47 |
   :
53 | public extension HeaderField {
54 |     /// `"Accept"` header field.
55 |     static let accept = HeaderField(rawValue: "Accept")
   |                |- warning: static property 'accept' is not concurrency-safe because non-'Sendable' type 'HeaderField' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'accept' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
56 |
57 |     /// `"Authorization"` header field.
/Users/admin/builder/spi-builder-workspace/Sources/SimpleNetworking/HeaderField.swift:58:16: warning: static property 'authorization' is not concurrency-safe because non-'Sendable' type 'HeaderField' may have shared mutable state; this is an error in the Swift 6 language mode
43 | ///     )
44 | ///
45 | public struct HeaderField: Hashable, Equatable, RawRepresentable {
   |               `- note: consider making struct 'HeaderField' conform to the 'Sendable' protocol
46 |     public let rawValue: String
47 |
   :
56 |
57 |     /// `"Authorization"` header field.
58 |     static let authorization = HeaderField(rawValue: "Authorization")
   |                |- warning: static property 'authorization' is not concurrency-safe because non-'Sendable' type 'HeaderField' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'authorization' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |
60 |     /// `"Content-Type"` header field.
/Users/admin/builder/spi-builder-workspace/Sources/SimpleNetworking/HeaderField.swift:61:16: warning: static property 'contentType' is not concurrency-safe because non-'Sendable' type 'HeaderField' may have shared mutable state; this is an error in the Swift 6 language mode
43 | ///     )
44 | ///
45 | public struct HeaderField: Hashable, Equatable, RawRepresentable {
   |               `- note: consider making struct 'HeaderField' conform to the 'Sendable' protocol
46 |     public let rawValue: String
47 |
   :
59 |
60 |     /// `"Content-Type"` header field.
61 |     static let contentType = HeaderField(rawValue: "Content-Type")
   |                |- warning: static property 'contentType' is not concurrency-safe because non-'Sendable' type 'HeaderField' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'contentType' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 | }
63 |
[11/23] Compiling SimpleNetworking URLRequest+APIRequest.swift
[12/23] Compiling SimpleNetworking HTTPURLResponse+Logging.swift
[13/23] Compiling SimpleNetworking ContentType.swift
/Users/admin/builder/spi-builder-workspace/Sources/SimpleNetworking/ContentType.swift:39:16: warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'ContentType' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import Foundation
25 |
26 | public struct ContentType: Hashable, Equatable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'ContentType' conform to the 'Sendable' protocol
27 |     public let rawValue: String
28 |
   :
37 |
38 | public extension ContentType {
39 |     static let json = ContentType(rawValue: "application/json")
   |                |- warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'ContentType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'json' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | }
41 |
[14/23] Compiling SimpleNetworking Data+LogDescription.swift
/Users/admin/builder/spi-builder-workspace/Sources/SimpleNetworking/ContentType.swift:39:16: warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'ContentType' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import Foundation
25 |
26 | public struct ContentType: Hashable, Equatable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'ContentType' conform to the 'Sendable' protocol
27 |     public let rawValue: String
28 |
   :
37 |
38 | public extension ContentType {
39 |     static let json = ContentType(rawValue: "application/json")
   |                |- warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'ContentType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'json' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | }
41 |
[15/23] Compiling SimpleNetworking Dictionary+LogDescription.swift
/Users/admin/builder/spi-builder-workspace/Sources/SimpleNetworking/HTTPStubProtocol.swift:71:24: warning: static property 'stubs' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 69 |     }
 70 |
 71 |     private static var stubs: [URLRequest: Stub] = [:]
    |                        |- warning: static property 'stubs' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'stubs' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'stubs' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 |
 73 |     /// Stubs a valid response for a given API request.
[16/23] Compiling SimpleNetworking HTTPStubProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/SimpleNetworking/HTTPStubProtocol.swift:71:24: warning: static property 'stubs' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 69 |     }
 70 |
 71 |     private static var stubs: [URLRequest: Stub] = [:]
    |                        |- warning: static property 'stubs' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'stubs' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'stubs' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 |
 73 |     /// Stubs a valid response for a given API request.
[17/23] Compiling SimpleNetworking APIRequest+Convenience.swift
/Users/admin/builder/spi-builder-workspace/Sources/SimpleNetworking/HeaderField.swift:55:16: warning: static property 'accept' is not concurrency-safe because non-'Sendable' type 'HeaderField' may have shared mutable state; this is an error in the Swift 6 language mode
43 | ///     )
44 | ///
45 | public struct HeaderField: Hashable, Equatable, RawRepresentable {
   |               `- note: consider making struct 'HeaderField' conform to the 'Sendable' protocol
46 |     public let rawValue: String
47 |
   :
53 | public extension HeaderField {
54 |     /// `"Accept"` header field.
55 |     static let accept = HeaderField(rawValue: "Accept")
   |                |- warning: static property 'accept' is not concurrency-safe because non-'Sendable' type 'HeaderField' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'accept' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
56 |
57 |     /// `"Authorization"` header field.
/Users/admin/builder/spi-builder-workspace/Sources/SimpleNetworking/ContentType.swift:39:16: warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'ContentType' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import Foundation
25 |
26 | public struct ContentType: Hashable, Equatable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'ContentType' conform to the 'Sendable' protocol
27 |     public let rawValue: String
28 |
   :
37 |
38 | public extension ContentType {
39 |     static let json = ContentType(rawValue: "application/json")
   |                |- warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'ContentType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'json' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | }
41 |
/Users/admin/builder/spi-builder-workspace/Sources/SimpleNetworking/HeaderField.swift:61:16: warning: static property 'contentType' is not concurrency-safe because non-'Sendable' type 'HeaderField' may have shared mutable state; this is an error in the Swift 6 language mode
43 | ///     )
44 | ///
45 | public struct HeaderField: Hashable, Equatable, RawRepresentable {
   |               `- note: consider making struct 'HeaderField' conform to the 'Sendable' protocol
46 |     public let rawValue: String
47 |
   :
59 |
60 |     /// `"Content-Type"` header field.
61 |     static let contentType = HeaderField(rawValue: "Content-Type")
   |                |- warning: static property 'contentType' is not concurrency-safe because non-'Sendable' type 'HeaderField' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'contentType' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 | }
63 |
[18/23] Compiling SimpleNetworking APIRequest.swift
/Users/admin/builder/spi-builder-workspace/Sources/SimpleNetworking/HeaderField.swift:55:16: warning: static property 'accept' is not concurrency-safe because non-'Sendable' type 'HeaderField' may have shared mutable state; this is an error in the Swift 6 language mode
43 | ///     )
44 | ///
45 | public struct HeaderField: Hashable, Equatable, RawRepresentable {
   |               `- note: consider making struct 'HeaderField' conform to the 'Sendable' protocol
46 |     public let rawValue: String
47 |
   :
53 | public extension HeaderField {
54 |     /// `"Accept"` header field.
55 |     static let accept = HeaderField(rawValue: "Accept")
   |                |- warning: static property 'accept' is not concurrency-safe because non-'Sendable' type 'HeaderField' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'accept' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
56 |
57 |     /// `"Authorization"` header field.
/Users/admin/builder/spi-builder-workspace/Sources/SimpleNetworking/ContentType.swift:39:16: warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'ContentType' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import Foundation
25 |
26 | public struct ContentType: Hashable, Equatable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'ContentType' conform to the 'Sendable' protocol
27 |     public let rawValue: String
28 |
   :
37 |
38 | public extension ContentType {
39 |     static let json = ContentType(rawValue: "application/json")
   |                |- warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'ContentType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'json' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | }
41 |
/Users/admin/builder/spi-builder-workspace/Sources/SimpleNetworking/HeaderField.swift:61:16: warning: static property 'contentType' is not concurrency-safe because non-'Sendable' type 'HeaderField' may have shared mutable state; this is an error in the Swift 6 language mode
43 | ///     )
44 | ///
45 | public struct HeaderField: Hashable, Equatable, RawRepresentable {
   |               `- note: consider making struct 'HeaderField' conform to the 'Sendable' protocol
46 |     public let rawValue: String
47 |
   :
59 |
60 |     /// `"Content-Type"` header field.
61 |     static let contentType = HeaderField(rawValue: "Content-Type")
   |                |- warning: static property 'contentType' is not concurrency-safe because non-'Sendable' type 'HeaderField' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'contentType' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 | }
63 |
[19/23] Compiling SimpleNetworking APIClientError.swift
/Users/admin/builder/spi-builder-workspace/Sources/SimpleNetworking/APIError.swift:32:16: warning: stored property 'error' of 'Sendable'-conforming generic struct 'APIError' has non-sendable type 'Error?'; this is an error in the Swift 6 language mode
25 |
26 | /// The `APIError` type encapsulates an error returned by an API.
27 | public struct APIError<Error>: Swift.Error {
   |                        `- note: consider making generic parameter 'Error' conform to the 'Sendable' protocol
28 |     /// The HTTP status code.
29 |     public let statusCode: Int
30 |
31 |     /// The error response.
32 |     public let error: Error?
   |                `- warning: stored property 'error' of 'Sendable'-conforming generic struct 'APIError' has non-sendable type 'Error?'; this is an error in the Swift 6 language mode
33 |
34 |     public init(statusCode: Int, error: Error?) {
[20/23] Compiling SimpleNetworking APIError.swift
/Users/admin/builder/spi-builder-workspace/Sources/SimpleNetworking/APIError.swift:32:16: warning: stored property 'error' of 'Sendable'-conforming generic struct 'APIError' has non-sendable type 'Error?'; this is an error in the Swift 6 language mode
25 |
26 | /// The `APIError` type encapsulates an error returned by an API.
27 | public struct APIError<Error>: Swift.Error {
   |                        `- note: consider making generic parameter 'Error' conform to the 'Sendable' protocol
28 |     /// The HTTP status code.
29 |     public let statusCode: Int
30 |
31 |     /// The error response.
32 |     public let error: Error?
   |                `- warning: stored property 'error' of 'Sendable'-conforming generic struct 'APIError' has non-sendable type 'Error?'; this is an error in the Swift 6 language mode
33 |
34 |     public init(statusCode: Int, error: Error?) {
[21/23] Emitting module SimpleNetworking
/Users/admin/builder/spi-builder-workspace/Sources/SimpleNetworking/APIError.swift:32:16: warning: stored property 'error' of 'Sendable'-conforming generic struct 'APIError' has non-sendable type 'Error?'; this is an error in the Swift 6 language mode
25 |
26 | /// The `APIError` type encapsulates an error returned by an API.
27 | public struct APIError<Error>: Swift.Error {
   |                        `- note: consider making generic parameter 'Error' conform to the 'Sendable' protocol
28 |     /// The HTTP status code.
29 |     public let statusCode: Int
30 |
31 |     /// The error response.
32 |     public let error: Error?
   |                `- warning: stored property 'error' of 'Sendable'-conforming generic struct 'APIError' has non-sendable type 'Error?'; this is an error in the Swift 6 language mode
33 |
34 |     public init(statusCode: Int, error: Error?) {
/Users/admin/builder/spi-builder-workspace/Sources/SimpleNetworking/ContentType.swift:39:16: warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'ContentType' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import Foundation
25 |
26 | public struct ContentType: Hashable, Equatable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'ContentType' conform to the 'Sendable' protocol
27 |     public let rawValue: String
28 |
   :
37 |
38 | public extension ContentType {
39 |     static let json = ContentType(rawValue: "application/json")
   |                |- warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'ContentType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'json' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | }
41 |
/Users/admin/builder/spi-builder-workspace/Sources/SimpleNetworking/HTTPStubProtocol.swift:71:24: warning: static property 'stubs' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 69 |     }
 70 |
 71 |     private static var stubs: [URLRequest: Stub] = [:]
    |                        |- warning: static property 'stubs' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'stubs' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'stubs' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 |
 73 |     /// Stubs a valid response for a given API request.
/Users/admin/builder/spi-builder-workspace/Sources/SimpleNetworking/HeaderField.swift:55:16: warning: static property 'accept' is not concurrency-safe because non-'Sendable' type 'HeaderField' may have shared mutable state; this is an error in the Swift 6 language mode
43 | ///     )
44 | ///
45 | public struct HeaderField: Hashable, Equatable, RawRepresentable {
   |               `- note: consider making struct 'HeaderField' conform to the 'Sendable' protocol
46 |     public let rawValue: String
47 |
   :
53 | public extension HeaderField {
54 |     /// `"Accept"` header field.
55 |     static let accept = HeaderField(rawValue: "Accept")
   |                |- warning: static property 'accept' is not concurrency-safe because non-'Sendable' type 'HeaderField' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'accept' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
56 |
57 |     /// `"Authorization"` header field.
/Users/admin/builder/spi-builder-workspace/Sources/SimpleNetworking/HeaderField.swift:58:16: warning: static property 'authorization' is not concurrency-safe because non-'Sendable' type 'HeaderField' may have shared mutable state; this is an error in the Swift 6 language mode
43 | ///     )
44 | ///
45 | public struct HeaderField: Hashable, Equatable, RawRepresentable {
   |               `- note: consider making struct 'HeaderField' conform to the 'Sendable' protocol
46 |     public let rawValue: String
47 |
   :
56 |
57 |     /// `"Authorization"` header field.
58 |     static let authorization = HeaderField(rawValue: "Authorization")
   |                |- warning: static property 'authorization' is not concurrency-safe because non-'Sendable' type 'HeaderField' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'authorization' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |
60 |     /// `"Content-Type"` header field.
/Users/admin/builder/spi-builder-workspace/Sources/SimpleNetworking/HeaderField.swift:61:16: warning: static property 'contentType' is not concurrency-safe because non-'Sendable' type 'HeaderField' may have shared mutable state; this is an error in the Swift 6 language mode
43 | ///     )
44 | ///
45 | public struct HeaderField: Hashable, Equatable, RawRepresentable {
   |               `- note: consider making struct 'HeaderField' conform to the 'Sendable' protocol
46 |     public let rawValue: String
47 |
   :
59 |
60 |     /// `"Content-Type"` header field.
61 |     static let contentType = HeaderField(rawValue: "Content-Type")
   |                |- warning: static property 'contentType' is not concurrency-safe because non-'Sendable' type 'HeaderField' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'contentType' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 | }
63 |
[22/23] Compiling SimpleNetworking APIClient.swift
[23/23] Compiling SimpleNetworking APIClientConfiguration.swift
Build complete! (21.68s)
Fetching https://github.com/apple/swift-log
[1/3361] Fetching swift-log
Fetched https://github.com/apple/swift-log from cache (1.21s)
Computing version for https://github.com/apple/swift-log
Computed https://github.com/apple/swift-log at 1.2.0 (0.68s)
Creating working copy for https://github.com/apple/swift-log
Working copy of https://github.com/apple/swift-log resolved at 1.2.0
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-log",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.2.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log"
    }
  ],
  "manifest_display_name" : "SimpleNetworking",
  "name" : "SimpleNetworking",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.12"
    },
    {
      "name" : "ios",
      "version" : "10.0"
    },
    {
      "name" : "tvos",
      "version" : "10.0"
    },
    {
      "name" : "watchos",
      "version" : "3.0"
    }
  ],
  "products" : [
    {
      "name" : "SimpleNetworking",
      "targets" : [
        "SimpleNetworking"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SimpleNetworkingTests",
      "module_type" : "SwiftTarget",
      "name" : "SimpleNetworkingTests",
      "path" : "Tests/SimpleNetworkingTests",
      "sources" : [
        "APIClientTest.swift",
        "APIRequestTest.swift",
        "Fixtures.swift",
        "HTTPURLResponseAdditionsTest.swift",
        "URLRequestAdditionsTest.swift"
      ],
      "target_dependencies" : [
        "SimpleNetworking"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SimpleNetworking",
      "module_type" : "SwiftTarget",
      "name" : "SimpleNetworking",
      "path" : "Sources/SimpleNetworking",
      "product_dependencies" : [
        "Logging"
      ],
      "product_memberships" : [
        "SimpleNetworking"
      ],
      "sources" : [
        "APIClient.swift",
        "APIClientConfiguration.swift",
        "APIClientError.swift",
        "APIError.swift",
        "APIRequest+Convenience.swift",
        "APIRequest.swift",
        "ContentType.swift",
        "Data+LogDescription.swift",
        "Dictionary+LogDescription.swift",
        "HTTPStubProtocol.swift",
        "HTTPURLResponse+Logging.swift",
        "HeaderField.swift",
        "Internal/Exports.swift",
        "URLRequest+APIRequest.swift",
        "URLSession+Stubbed.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.2"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.