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 swift-http-error-handling with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 1

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/fumoboy007/swift-http-error-handling.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/fumoboy007/swift-http-error-handling
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at ee3026b Rename `_AdditionalSnippetDependencies` product/target to be more specific to avoid name collisions across packages.
Cloned https://github.com/fumoboy007/swift-http-error-handling.git
Revision (git rev-parse @):
ee3026b915f6a43391992e5b9027c2b928a57406
SPI manifest file found: $workDir/.spi.yml
SUCCESS checkout https://github.com/fumoboy007/swift-http-error-handling.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/fumoboy007/swift-http-error-handling.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
[1/1] Compiling plugin Swift-DocC
[2/2] Compiling plugin Swift-DocC Preview
Building for debugging...
[2/33] Write sources
[16/33] Write swift-version-6F35C1178C84523A.txt
[18/45] Compiling HTTPTypes HTTPFieldName.swift
[19/45] Compiling HTTPTypes ISOLatin1String.swift
[20/45] Compiling HTTPTypes HTTPResponse.swift
[21/45] Compiling Logging MetadataProvider.swift
[22/45] Compiling Logging Logging.swift
[23/45] Compiling Logging LogHandler.swift
[24/45] Emitting module Logging
[25/45] Compiling Logging Locks.swift
[26/45] Compiling HTTPTypes HTTPRequest.swift
[27/45] Emitting module HTTPTypes
[28/45] Compiling HTTPTypes HTTPFields.swift
[29/45] Compiling HTTPTypes HTTPField.swift
[30/65] Compiling Retry NotRetryable.swift
[31/65] Compiling Retry Retryable.swift
[32/65] Compiling Retry RetryableRequest+SafeRetry.swift
[33/65] Compiling Retry RetryConfiguration.swift
[34/65] Compiling Retry Error+OriginalError.swift
[35/66] Emitting module HTTPTypesFoundation
[36/66] Compiling HTTPTypesFoundation URLRequest+HTTPTypes.swift
[37/66] Compiling HTTPTypesFoundation URLResponse+HTTPTypes.swift
[38/66] Compiling HTTPTypesFoundation URLSession+HTTPTypes.swift
[39/66] Compiling HTTPTypesFoundation HTTPTypes+ISOLatin1.swift
[40/66] Compiling HTTPTypesFoundation HTTPRequest+URL.swift
[41/66] Compiling Retry Backoff.swift
[42/66] Compiling Retry BackoffAlgorithm.swift
[43/66] Emitting module Retry
[44/66] Compiling Retry RandomNumberGenerator.swift
[45/66] Compiling Retry StandardRandomNumberGenerator.swift
[46/66] Compiling Retry ConstantBackoff.swift
[47/66] Compiling Retry FullJitterExponentialBackoff.swift
[48/66] Compiling Retry RecoveryAction.swift
[49/66] Compiling Retry Retry.swift
[50/68] Compiling Retry RetryableRequest.swift
[51/68] Compiling _AdditionalHTTPErrorHandlingSnippetDependencies DummyFile.swift
[52/68] Emitting module _AdditionalHTTPErrorHandlingSnippetDependencies
[53/78] Compiling HTTPErrorHandling HTTPResponse+RetryAfterValue.swift
[54/78] Compiling HTTPErrorHandling HTTPRequestMethod+IsIdempotent.swift
[55/78] Compiling HTTPErrorHandling HTTPApplicationErrorProtocol.swift
[56/78] Compiling HTTPErrorHandling HTTPResponseStatus+Interpretation.swift
[57/78] Compiling HTTPErrorHandling HTTPRequest+RetryableRequest.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTTPErrorHandling/Retry/HTTPRequest+RetryableRequest.swift:43:1: warning: extension declares a conformance of imported type 'HTTPRequest' to imported protocol 'RetryableRequest'; this will not behave correctly if the owners of 'HTTPTypes' introduce this conformance in the future
41 | ///
42 | /// - SeeAlso: [`Retry`](https://fumoboy007.github.io/swift-retry/documentation/retry/)
43 | extension HTTPRequest: RetryableRequest {
   | |- warning: extension declares a conformance of imported type 'HTTPRequest' to imported protocol 'RetryableRequest'; this will not behave correctly if the owners of 'HTTPTypes' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
44 |    public var isIdempotent: Bool {
45 |       return method.isIdempotent
[58/78] Compiling HTTPErrorHandling HTTPResponse+Interpretation.swift
[59/78] Emitting module HTTPErrorHandling
/Users/admin/builder/spi-builder-workspace/Sources/HTTPErrorHandling/Error/HTTPApplicationError.swift:33:15: warning: stored property 'responseBody' of 'Sendable'-conforming generic struct 'HTTPApplicationError' has non-sendable type 'ResponseBodyType'; this is an error in the Swift 6 language mode
24 |
25 | /// A concrete error type that contains details about an HTTP application failure.
26 | public struct HTTPApplicationError<ResponseBodyType>: Error {
   |                                    `- note: consider making generic parameter 'ResponseBodyType' conform to the 'Sendable' protocol
27 |    /// The response to the failed request.
28 |    public let response: HTTPResponse
   :
31 |    ///
32 |    /// - SeeAlso: ``HTTPApplicationErrorProtocol/anyResponseBody``
33 |    public let responseBody: ResponseBodyType
   |               `- warning: stored property 'responseBody' of 'Sendable'-conforming generic struct 'HTTPApplicationError' has non-sendable type 'ResponseBodyType'; this is an error in the Swift 6 language mode
34 |
35 |    /// Whether the failure is transient.
/Users/admin/builder/spi-builder-workspace/Sources/HTTPErrorHandling/Retry/HTTPRequest+RetryableRequest.swift:43:1: warning: extension declares a conformance of imported type 'HTTPRequest' to imported protocol 'RetryableRequest'; this will not behave correctly if the owners of 'HTTPTypes' introduce this conformance in the future
41 | ///
42 | /// - SeeAlso: [`Retry`](https://fumoboy007.github.io/swift-retry/documentation/retry/)
43 | extension HTTPRequest: RetryableRequest {
   | |- warning: extension declares a conformance of imported type 'HTTPRequest' to imported protocol 'RetryableRequest'; this will not behave correctly if the owners of 'HTTPTypes' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
44 |    public var isIdempotent: Bool {
45 |       return method.isIdempotent
[60/78] Compiling HTTPErrorHandling RecoveryAction+FromHTTPApplicationError.swift
[61/78] Compiling HTTPErrorHandling Date+FromHTTPDateString.swift
[62/78] Compiling HTTPErrorHandling HTTPApplicationError.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTTPErrorHandling/Error/HTTPApplicationError.swift:33:15: warning: stored property 'responseBody' of 'Sendable'-conforming generic struct 'HTTPApplicationError' has non-sendable type 'ResponseBodyType'; this is an error in the Swift 6 language mode
24 |
25 | /// A concrete error type that contains details about an HTTP application failure.
26 | public struct HTTPApplicationError<ResponseBodyType>: Error {
   |                                    `- note: consider making generic parameter 'ResponseBodyType' conform to the 'Sendable' protocol
27 |    /// The response to the failed request.
28 |    public let response: HTTPResponse
   :
31 |    ///
32 |    /// - SeeAlso: ``HTTPApplicationErrorProtocol/anyResponseBody``
33 |    public let responseBody: ResponseBodyType
   |               `- warning: stored property 'responseBody' of 'Sendable'-conforming generic struct 'HTTPApplicationError' has non-sendable type 'ResponseBodyType'; this is an error in the Swift 6 language mode
34 |
35 |    /// Whether the failure is transient.
[63/94] Emitting module BasicRetry
[64/94] Emitting module DefaultHTTPResponseInterpretation
[65/94] Compiling DefaultHTTPResponseInterpretation DefaultHTTPResponseInterpretation.swift
[66/94] Emitting module ConfigureRetryBehavior
[66/94] Write Objects.LinkFileList
[68/94] Compiling BasicRetry BasicRetry.swift
[69/94] Compiling CustomHTTPResponseInterpretation CustomHTTPResponseInterpretation.swift
[70/94] Emitting module CustomHTTPResponseInterpretation
[71/94] Compiling ConfigureRetryBehavior ConfigureRetryBehavior.swift
[71/94] Write Objects.LinkFileList
[75/94] Compiling ReuseRetryConfiguration ReuseRetryConfiguration.swift
[76/94] Emitting module ReuseRetryConfiguration
[77/94] Emitting module RetryHTTPRequestUsingURLSession
[78/94] Compiling RetryHTTPRequestUsingURLSession RetryHTTPRequestUsingURLSession.swift
[79/94] Emitting module HTTPApplicationErrorWithResponseBody
[80/94] Compiling HTTPApplicationErrorWithResponseBody HTTPApplicationErrorWithResponseBody.swift
[80/94] Write Objects.LinkFileList
[83/94] Linking DefaultHTTPResponseInterpretation
[84/94] Linking CustomHTTPResponseInterpretation
[85/94] Linking BasicRetry
[86/94] Linking ReuseRetryConfiguration
[87/94] Linking HTTPApplicationErrorWithResponseBody
[88/94] Linking ConfigureRetryBehavior
[89/94] Linking RetryHTTPRequestUsingURLSession
[91/94] Emitting module UseFakeClockType
[92/94] Compiling UseFakeClockType UseFakeClockType.swift
[92/94] Write Objects.LinkFileList
[93/94] Linking UseFakeClockType
Build complete! (51.38s)
Fetching https://github.com/apple/swift-log.git
Fetching https://github.com/apple/swift-http-types.git
Fetching https://github.com/apple/swift-docc-plugin.git
Fetching https://github.com/apple/swift-docc-symbolkit
Fetching https://github.com/fumoboy007/swift-retry.git
[1/197] Fetching swift-retry
[143/611] Fetching swift-retry, swift-http-types
[193/2076] Fetching swift-retry, swift-http-types, swift-docc-plugin
[289/5437] Fetching swift-retry, swift-http-types, swift-docc-plugin, swift-log
[2141/8298] Fetching swift-retry, swift-http-types, swift-docc-plugin, swift-log, swift-docc-symbolkit
Fetched https://github.com/apple/swift-http-types.git from cache (1.39s)
Fetched https://github.com/apple/swift-log.git from cache (1.39s)
Fetched https://github.com/apple/swift-docc-symbolkit from cache (1.39s)
Fetched https://github.com/fumoboy007/swift-retry.git from cache (1.39s)
Fetched https://github.com/apple/swift-docc-plugin.git from cache (1.39s)
Computing version for https://github.com/fumoboy007/swift-retry.git
Computed https://github.com/fumoboy007/swift-retry.git at 0.2.2 (0.54s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.5.3 (1.01s)
Computing version for https://github.com/apple/swift-http-types.git
Computed https://github.com/apple/swift-http-types.git at 1.0.2 (0.66s)
Computing version for https://github.com/apple/swift-docc-plugin.git
Computed https://github.com/apple/swift-docc-plugin.git at 1.3.0 (0.67s)
Computing version for https://github.com/apple/swift-docc-symbolkit
Computed https://github.com/apple/swift-docc-symbolkit at 1.0.0 (0.76s)
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.5.3
Creating working copy for https://github.com/apple/swift-http-types.git
Working copy of https://github.com/apple/swift-http-types.git resolved at 1.0.2
Creating working copy for https://github.com/apple/swift-docc-symbolkit
Working copy of https://github.com/apple/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/fumoboy007/swift-retry.git
Working copy of https://github.com/fumoboy007/swift-retry.git resolved at 0.2.2
Creating working copy for https://github.com/apple/swift-docc-plugin.git
Working copy of https://github.com/apple/swift-docc-plugin.git resolved at 1.3.0
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.3.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin.git"
    },
    {
      "identity" : "swift-http-types",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.2",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-http-types.git"
    },
    {
      "identity" : "swift-log",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.5.3",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log.git"
    },
    {
      "identity" : "swift-retry",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.2.2",
            "upper_bound" : "0.3.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/fumoboy007/swift-retry.git"
    }
  ],
  "manifest_display_name" : "swift-http-error-handling",
  "name" : "swift-http-error-handling",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "visionos",
      "version" : "1.0"
    },
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "16.0"
    },
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "tvos",
      "version" : "16.0"
    },
    {
      "name" : "watchos",
      "version" : "9.0"
    }
  ],
  "products" : [
    {
      "name" : "HTTPErrorHandling",
      "targets" : [
        "HTTPErrorHandling"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "_AdditionalHTTPErrorHandlingSnippetDependencies",
      "targets" : [
        "_AdditionalHTTPErrorHandlingSnippetDependencies"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "RetryHTTPRequestUsingURLSession",
      "targets" : [
        "RetryHTTPRequestUsingURLSession"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "CustomHTTPResponseInterpretation",
      "targets" : [
        "CustomHTTPResponseInterpretation"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "HTTPApplicationErrorWithResponseBody",
      "targets" : [
        "HTTPApplicationErrorWithResponseBody"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "DefaultHTTPResponseInterpretation",
      "targets" : [
        "DefaultHTTPResponseInterpretation"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "ConfigureRetryBehavior",
      "targets" : [
        "ConfigureRetryBehavior"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "UseFakeClockType",
      "targets" : [
        "UseFakeClockType"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "ReuseRetryConfiguration",
      "targets" : [
        "ReuseRetryConfiguration"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "BasicRetry",
      "targets" : [
        "BasicRetry"
      ],
      "type" : {
        "snippet" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "_AdditionalHTTPErrorHandlingSnippetDependencies",
      "module_type" : "SwiftTarget",
      "name" : "_AdditionalHTTPErrorHandlingSnippetDependencies",
      "path" : "Sources/_AdditionalHTTPErrorHandlingSnippetDependencies",
      "product_dependencies" : [
        "HTTPTypesFoundation",
        "Logging"
      ],
      "product_memberships" : [
        "_AdditionalHTTPErrorHandlingSnippetDependencies",
        "RetryHTTPRequestUsingURLSession",
        "CustomHTTPResponseInterpretation",
        "HTTPApplicationErrorWithResponseBody",
        "DefaultHTTPResponseInterpretation",
        "ConfigureRetryBehavior",
        "UseFakeClockType",
        "ReuseRetryConfiguration",
        "BasicRetry"
      ],
      "sources" : [
        "DummyFile.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "HTTPErrorHandlingTests",
      "module_type" : "SwiftTarget",
      "name" : "HTTPErrorHandlingTests",
      "path" : "Tests/HTTPErrorHandlingTests",
      "product_dependencies" : [
        "HTTPTypes"
      ],
      "sources" : [
        "DateFromHTTPDateStringTests.swift",
        "Fakes/ClockFake.swift",
        "Fakes/ErrorFake.swift",
        "Fakes/HTTPRequest+Fakes.swift",
        "Fakes/HTTPResponse+Fakes.swift",
        "HTTPRequestRetryTests.swift",
        "HTTPResponseInterpretationTests.swift"
      ],
      "target_dependencies" : [
        "HTTPErrorHandling"
      ],
      "type" : "test"
    },
    {
      "c99name" : "HTTPErrorHandling",
      "module_type" : "SwiftTarget",
      "name" : "HTTPErrorHandling",
      "path" : "Sources/HTTPErrorHandling",
      "product_dependencies" : [
        "DMRetry",
        "HTTPTypes"
      ],
      "product_memberships" : [
        "HTTPErrorHandling",
        "RetryHTTPRequestUsingURLSession",
        "CustomHTTPResponseInterpretation",
        "HTTPApplicationErrorWithResponseBody",
        "DefaultHTTPResponseInterpretation",
        "ConfigureRetryBehavior",
        "UseFakeClockType",
        "ReuseRetryConfiguration",
        "BasicRetry"
      ],
      "sources" : [
        "Error/HTTPApplicationError.swift",
        "Error/HTTPApplicationErrorProtocol.swift",
        "Interpretation/HTTPResponse+Interpretation.swift",
        "Interpretation/HTTPResponseStatus+Interpretation.swift",
        "Retry/Date+FromHTTPDateString.swift",
        "Retry/HTTPRequest+RetryableRequest.swift",
        "Retry/HTTPRequestMethod+IsIdempotent.swift",
        "Retry/HTTPResponse+RetryAfterValue.swift",
        "Retry/RecoveryAction+FromHTTPApplicationError.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "RetryHTTPRequestUsingURLSession",
      "module_type" : "SwiftTarget",
      "name" : "RetryHTTPRequestUsingURLSession",
      "path" : "Snippets/Interoperability With Popular HTTP Libraries",
      "product_memberships" : [
        "RetryHTTPRequestUsingURLSession"
      ],
      "sources" : [
        "RetryHTTPRequestUsingURLSession.swift"
      ],
      "target_dependencies" : [
        "_AdditionalHTTPErrorHandlingSnippetDependencies",
        "HTTPErrorHandling"
      ],
      "type" : "snippet"
    },
    {
      "c99name" : "CustomHTTPResponseInterpretation",
      "module_type" : "SwiftTarget",
      "name" : "CustomHTTPResponseInterpretation",
      "path" : "Snippets/Interpreting HTTP Responses",
      "product_memberships" : [
        "CustomHTTPResponseInterpretation"
      ],
      "sources" : [
        "CustomHTTPResponseInterpretation.swift"
      ],
      "target_dependencies" : [
        "_AdditionalHTTPErrorHandlingSnippetDependencies",
        "HTTPErrorHandling"
      ],
      "type" : "snippet"
    },
    {
      "c99name" : "HTTPApplicationErrorWithResponseBody",
      "module_type" : "SwiftTarget",
      "name" : "HTTPApplicationErrorWithResponseBody",
      "path" : "Snippets/Interpreting HTTP Responses",
      "product_memberships" : [
        "HTTPApplicationErrorWithResponseBody"
      ],
      "sources" : [
        "HTTPApplicationErrorWithResponseBody.swift"
      ],
      "target_dependencies" : [
        "_AdditionalHTTPErrorHandlingSnippetDependencies",
        "HTTPErrorHandling"
      ],
      "type" : "snippet"
    },
    {
      "c99name" : "DefaultHTTPResponseInterpretation",
      "module_type" : "SwiftTarget",
      "name" : "DefaultHTTPResponseInterpretation",
      "path" : "Snippets/Interpreting HTTP Responses",
      "product_memberships" : [
        "DefaultHTTPResponseInterpretation"
      ],
      "sources" : [
        "DefaultHTTPResponseInterpretation.swift"
      ],
      "target_dependencies" : [
        "_AdditionalHTTPErrorHandlingSnippetDependencies",
        "HTTPErrorHandling"
      ],
      "type" : "snippet"
    },
    {
      "c99name" : "ConfigureRetryBehavior",
      "module_type" : "SwiftTarget",
      "name" : "ConfigureRetryBehavior",
      "path" : "Snippets/Retrying HTTP Requests",
      "product_memberships" : [
        "ConfigureRetryBehavior"
      ],
      "sources" : [
        "ConfigureRetryBehavior.swift"
      ],
      "target_dependencies" : [
        "_AdditionalHTTPErrorHandlingSnippetDependencies",
        "HTTPErrorHandling"
      ],
      "type" : "snippet"
    },
    {
      "c99name" : "UseFakeClockType",
      "module_type" : "SwiftTarget",
      "name" : "UseFakeClockType",
      "path" : "Snippets/Retrying HTTP Requests",
      "product_memberships" : [
        "UseFakeClockType"
      ],
      "sources" : [
        "UseFakeClockType.swift"
      ],
      "target_dependencies" : [
        "_AdditionalHTTPErrorHandlingSnippetDependencies",
        "HTTPErrorHandling"
      ],
      "type" : "snippet"
    },
    {
      "c99name" : "ReuseRetryConfiguration",
      "module_type" : "SwiftTarget",
      "name" : "ReuseRetryConfiguration",
      "path" : "Snippets/Retrying HTTP Requests",
      "product_memberships" : [
        "ReuseRetryConfiguration"
      ],
      "sources" : [
        "ReuseRetryConfiguration.swift"
      ],
      "target_dependencies" : [
        "_AdditionalHTTPErrorHandlingSnippetDependencies",
        "HTTPErrorHandling"
      ],
      "type" : "snippet"
    },
    {
      "c99name" : "BasicRetry",
      "module_type" : "SwiftTarget",
      "name" : "BasicRetry",
      "path" : "Snippets/Retrying HTTP Requests",
      "product_memberships" : [
        "BasicRetry"
      ],
      "sources" : [
        "BasicRetry.swift"
      ],
      "target_dependencies" : [
        "_AdditionalHTTPErrorHandlingSnippetDependencies",
        "HTTPErrorHandling"
      ],
      "type" : "snippet"
    }
  ],
  "tools_version" : "5.9"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.