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 HTTPStatusCodes, reference 3.3.2 (a2c4f5), with Swift 6.0 for macOS (SPM) on 1 Nov 2024 01:09:46 UTC.

Swift 6 data race errors: 18

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/rhodgkins/SwiftHTTPStatusCodes.git
Reference: 3.3.2
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/rhodgkins/SwiftHTTPStatusCodes
 * tag               3.3.2      -> FETCH_HEAD
HEAD is now at a2c4f5f Bumped to v3.3.2
Cloned https://github.com/rhodgkins/SwiftHTTPStatusCodes.git
Revision (git rev-parse @):
a2c4f5f645dec3a5614ff82e391f44e22d778f87
SUCCESS checkout https://github.com/rhodgkins/SwiftHTTPStatusCodes.git at 3.3.2
========================================
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",
  "dependencies": [
    {
      "identity": "swifthttpstatuscodes",
      "name": "HTTPStatusCodes",
      "url": "https://github.com/rhodgkins/SwiftHTTPStatusCodes.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/SwiftHTTPStatusCodes",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/rhodgkins/SwiftHTTPStatusCodes.git
[1/930] Fetching swifthttpstatuscodes
Fetched https://github.com/rhodgkins/SwiftHTTPStatusCodes.git from cache (0.88s)
Creating working copy for https://github.com/rhodgkins/SwiftHTTPStatusCodes.git
Working copy of https://github.com/rhodgkins/SwiftHTTPStatusCodes.git resolved at 3.3.2 (a2c4f5f)
warning: '.resolve-product-dependencies': dependency 'swifthttpstatuscodes' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/rhodgkins/SwiftHTTPStatusCodes.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--7754E27361AE5C74.txt
[3/5] Compiling HTTPStatusCodes HTTPStatusCodes.swift
[4/5] Emitting module HTTPStatusCodes
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:117:16: warning: static property 'requestEntityTooLarge' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
115 |     /// - deprecated: Renamed to `payloadTooLarge`
116 |     @available(*, deprecated, renamed: "payloadTooLarge")
117 |     static let requestEntityTooLarge = payloadTooLarge
    |                |- warning: static property 'requestEntityTooLarge' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'requestEntityTooLarge' 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
118 |
119 |     /// - deprecated: Renamed to `uriTooLong`
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:121:16: warning: static property 'requestURITooLong' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
119 |     /// - deprecated: Renamed to `uriTooLong`
120 |     @available(*, deprecated, renamed: "uriTooLong")
121 |     static let requestURITooLong = uriTooLong
    |                |- warning: static property 'requestURITooLong' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'requestURITooLong' 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
122 |
123 |     /// - deprecated: Renamed to `rangeNotSatisfiable`
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:125:16: warning: static property 'requestedRangeNotSatisfiable' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
123 |     /// - deprecated: Renamed to `rangeNotSatisfiable`
124 |     @available(*, deprecated, renamed: "rangeNotSatisfiable")
125 |     static let requestedRangeNotSatisfiable = rangeNotSatisfiable
    |                |- warning: static property 'requestedRangeNotSatisfiable' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'requestedRangeNotSatisfiable' 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
126 |
127 |     /// - deprecated: Renamed to `iisLoginTimeout`
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:129:16: warning: static property 'loginTimeout' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
127 |     /// - deprecated: Renamed to `iisLoginTimeout`
128 |     @available(*, deprecated, renamed: "iisLoginTimeout")
129 |     static let loginTimeout = iisLoginTimeout
    |                |- warning: static property 'loginTimeout' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'loginTimeout' 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
130 |
131 |     /// - deprecated: Renamed to `iisRetryWith`
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:133:16: warning: static property 'retryWith' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
131 |     /// - deprecated: Renamed to `iisRetryWith`
132 |     @available(*, deprecated, renamed: "iisRetryWith")
133 |     static let retryWith = iisRetryWith
    |                |- warning: static property 'retryWith' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'retryWith' 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
134 |
135 |     /// - deprecated: Renamed to `nginxNoResponse`
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:137:16: warning: static property 'noResponse' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
135 |     /// - deprecated: Renamed to `nginxNoResponse`
136 |     @available(*, deprecated, renamed: "nginxNoResponse")
137 |     static let noResponse = nginxNoResponse
    |                |- warning: static property 'noResponse' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'noResponse' 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
138 |
139 |     /// - deprecated: Renamed to `nginxSSLCertificateError`
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:141:16: warning: static property 'certError' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
139 |     /// - deprecated: Renamed to `nginxSSLCertificateError`
140 |     @available(*, deprecated, renamed: "nginxSSLCertificateError")
141 |     static let certError = nginxSSLCertificateError
    |                |- warning: static property 'certError' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'certError' 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
142 |
143 |     /// - deprecated: Renamed to `nginxSSLCertificateRequired`
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:145:16: warning: static property 'noCert' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
143 |     /// - deprecated: Renamed to `nginxSSLCertificateRequired`
144 |     @available(*, deprecated, renamed: "nginxSSLCertificateRequired")
145 |     static let noCert = nginxSSLCertificateRequired
    |                |- warning: static property 'noCert' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'noCert' 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
146 |
147 |     /// - deprecated: Renamed to `nginxHTTPToHTTPS`
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:149:16: warning: static property 'httpToHTTPS' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
147 |     /// - deprecated: Renamed to `nginxHTTPToHTTPS`
148 |     @available(*, deprecated, renamed: "nginxHTTPToHTTPS")
149 |     static let httpToHTTPS = nginxHTTPToHTTPS
    |                |- warning: static property 'httpToHTTPS' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'httpToHTTPS' 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
150 |
151 |     /// - deprecated: Renamed to `nginxClientClosedRequest`
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:153:16: warning: static property 'clientClosedRequest' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
151 |     /// - deprecated: Renamed to `nginxClientClosedRequest`
152 |     @available(*, deprecated, renamed: "nginxClientClosedRequest")
153 |     static let clientClosedRequest = nginxClientClosedRequest
    |                |- warning: static property 'clientClosedRequest' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'clientClosedRequest' 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
154 |
155 |     /// - deprecated: Renamed to `networkConnectTimeoutError`
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:157:16: warning: static property 'networkTimeoutError' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
155 |     /// - deprecated: Renamed to `networkConnectTimeoutError`
156 |     @available(*, deprecated, renamed: "networkConnectTimeoutError")
157 |     static let networkTimeoutError = networkConnectTimeoutError
    |                |- warning: static property 'networkTimeoutError' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'networkTimeoutError' 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
158 |
159 |     /// Returned by version 1 of the Twitter Search and Trends API when the client is being rate limited; versions 1.1 and later use the 429 Too Many Requests (`tooManyRequests`) response code instead.
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:163:16: warning: static property 'twitterEnhanceYourCalm' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
161 |     /// - seealso: [Twitter Error Codes & Responses](https://dev.twitter.com/docs/error-codes-responses)
162 |     @available(*, deprecated, renamed: "tooManyRequests")
163 |     static let twitterEnhanceYourCalm = tooManyRequests
    |                |- warning: static property 'twitterEnhanceYourCalm' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'twitterEnhanceYourCalm' 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
164 | }
165 |
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:179:13: warning: let '__Unavailable' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
177 |
178 | /// Declared here for a cleaner API with no `!` types.
179 | private let __Unavailable: HTTPStatusCode! = nil
    |             |- warning: let '__Unavailable' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: annotate '__Unavailable' 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
180 |
181 | public extension HTTPStatusCode {
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:189:16: warning: static property 'checkpoint' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
187 |     /// - seealso: [Original proposal](https://web.archive.org/web/20151013212135/http://code.google.com/p/gears/wiki/ResumableHttpRequestsProposal)
188 |     @available(*, unavailable, renamed: "earlyHints", message: "Replaced by RFC standard code with different meaning")
189 |     static let checkpoint = __Unavailable
    |                |- warning: static property 'checkpoint' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'checkpoint' 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
190 |
191 |     /// Switch Proxy: 306
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:197:16: warning: static property 'switchProxy' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
195 |     /// - seealso: [Original draft](https://tools.ietf.org/html/draft-cohen-http-305-306-responses-00)
196 |     @available(*, unavailable, message: "No longer used")
197 |     static let switchProxy = __Unavailable
    |                |- warning: static property 'switchProxy' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'switchProxy' 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
198 |
199 |     /// Authentication Timeout: 419
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:203:16: warning: static property 'authenticationTimeout' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
201 |     /// Removed from Wikipedia page.
202 |     @available(*, unavailable, message: "No longer available")
203 |     static let authenticationTimeout = __Unavailable
    |                |- warning: static property 'authenticationTimeout' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'authenticationTimeout' 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
204 |
205 |     /// Method Failure: 419
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:211:16: warning: static property 'springFrameworkMethodFailure' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
209 |     /// - seealso: [Spring Framework: HttpStatus enum documentation - `METHOD_FAILURE`](https://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/http/HttpStatus.html#METHOD_FAILURE)
210 |     @available(*, unavailable, message: "Deprecated")
211 |     static let springFrameworkMethodFailure = __Unavailable
    |                |- warning: static property 'springFrameworkMethodFailure' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'springFrameworkMethodFailure' 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
212 |
213 |     /// Request Header Too Large: 494
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:217:16: warning: static property 'requestHeaderTooLarge' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
215 |     /// Removed and replaced with `RequestHeaderFieldsTooLarge` - 431
216 |     @available(*, unavailable, renamed: "requestHeaderFieldsTooLarge", message: "Changed to a 431 status code")
217 |     static let requestHeaderTooLarge = __Unavailable
    |                |- warning: static property 'requestHeaderTooLarge' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'requestHeaderTooLarge' 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
218 | }
219 |
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
[5/5] Compiling HTTPStatusCodes HTTPStatusCodes+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:117:16: warning: static property 'requestEntityTooLarge' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
115 |     /// - deprecated: Renamed to `payloadTooLarge`
116 |     @available(*, deprecated, renamed: "payloadTooLarge")
117 |     static let requestEntityTooLarge = payloadTooLarge
    |                |- warning: static property 'requestEntityTooLarge' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'requestEntityTooLarge' 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
118 |
119 |     /// - deprecated: Renamed to `uriTooLong`
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:121:16: warning: static property 'requestURITooLong' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
119 |     /// - deprecated: Renamed to `uriTooLong`
120 |     @available(*, deprecated, renamed: "uriTooLong")
121 |     static let requestURITooLong = uriTooLong
    |                |- warning: static property 'requestURITooLong' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'requestURITooLong' 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
122 |
123 |     /// - deprecated: Renamed to `rangeNotSatisfiable`
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:125:16: warning: static property 'requestedRangeNotSatisfiable' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
123 |     /// - deprecated: Renamed to `rangeNotSatisfiable`
124 |     @available(*, deprecated, renamed: "rangeNotSatisfiable")
125 |     static let requestedRangeNotSatisfiable = rangeNotSatisfiable
    |                |- warning: static property 'requestedRangeNotSatisfiable' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'requestedRangeNotSatisfiable' 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
126 |
127 |     /// - deprecated: Renamed to `iisLoginTimeout`
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:129:16: warning: static property 'loginTimeout' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
127 |     /// - deprecated: Renamed to `iisLoginTimeout`
128 |     @available(*, deprecated, renamed: "iisLoginTimeout")
129 |     static let loginTimeout = iisLoginTimeout
    |                |- warning: static property 'loginTimeout' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'loginTimeout' 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
130 |
131 |     /// - deprecated: Renamed to `iisRetryWith`
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:133:16: warning: static property 'retryWith' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
131 |     /// - deprecated: Renamed to `iisRetryWith`
132 |     @available(*, deprecated, renamed: "iisRetryWith")
133 |     static let retryWith = iisRetryWith
    |                |- warning: static property 'retryWith' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'retryWith' 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
134 |
135 |     /// - deprecated: Renamed to `nginxNoResponse`
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:137:16: warning: static property 'noResponse' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
135 |     /// - deprecated: Renamed to `nginxNoResponse`
136 |     @available(*, deprecated, renamed: "nginxNoResponse")
137 |     static let noResponse = nginxNoResponse
    |                |- warning: static property 'noResponse' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'noResponse' 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
138 |
139 |     /// - deprecated: Renamed to `nginxSSLCertificateError`
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:141:16: warning: static property 'certError' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
139 |     /// - deprecated: Renamed to `nginxSSLCertificateError`
140 |     @available(*, deprecated, renamed: "nginxSSLCertificateError")
141 |     static let certError = nginxSSLCertificateError
    |                |- warning: static property 'certError' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'certError' 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
142 |
143 |     /// - deprecated: Renamed to `nginxSSLCertificateRequired`
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:145:16: warning: static property 'noCert' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
143 |     /// - deprecated: Renamed to `nginxSSLCertificateRequired`
144 |     @available(*, deprecated, renamed: "nginxSSLCertificateRequired")
145 |     static let noCert = nginxSSLCertificateRequired
    |                |- warning: static property 'noCert' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'noCert' 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
146 |
147 |     /// - deprecated: Renamed to `nginxHTTPToHTTPS`
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:149:16: warning: static property 'httpToHTTPS' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
147 |     /// - deprecated: Renamed to `nginxHTTPToHTTPS`
148 |     @available(*, deprecated, renamed: "nginxHTTPToHTTPS")
149 |     static let httpToHTTPS = nginxHTTPToHTTPS
    |                |- warning: static property 'httpToHTTPS' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'httpToHTTPS' 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
150 |
151 |     /// - deprecated: Renamed to `nginxClientClosedRequest`
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:153:16: warning: static property 'clientClosedRequest' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
151 |     /// - deprecated: Renamed to `nginxClientClosedRequest`
152 |     @available(*, deprecated, renamed: "nginxClientClosedRequest")
153 |     static let clientClosedRequest = nginxClientClosedRequest
    |                |- warning: static property 'clientClosedRequest' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'clientClosedRequest' 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
154 |
155 |     /// - deprecated: Renamed to `networkConnectTimeoutError`
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:157:16: warning: static property 'networkTimeoutError' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
155 |     /// - deprecated: Renamed to `networkConnectTimeoutError`
156 |     @available(*, deprecated, renamed: "networkConnectTimeoutError")
157 |     static let networkTimeoutError = networkConnectTimeoutError
    |                |- warning: static property 'networkTimeoutError' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'networkTimeoutError' 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
158 |
159 |     /// Returned by version 1 of the Twitter Search and Trends API when the client is being rate limited; versions 1.1 and later use the 429 Too Many Requests (`tooManyRequests`) response code instead.
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:163:16: warning: static property 'twitterEnhanceYourCalm' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
161 |     /// - seealso: [Twitter Error Codes & Responses](https://dev.twitter.com/docs/error-codes-responses)
162 |     @available(*, deprecated, renamed: "tooManyRequests")
163 |     static let twitterEnhanceYourCalm = tooManyRequests
    |                |- warning: static property 'twitterEnhanceYourCalm' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'twitterEnhanceYourCalm' 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
164 | }
165 |
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:179:13: warning: let '__Unavailable' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
177 |
178 | /// Declared here for a cleaner API with no `!` types.
179 | private let __Unavailable: HTTPStatusCode! = nil
    |             |- warning: let '__Unavailable' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: annotate '__Unavailable' 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
180 |
181 | public extension HTTPStatusCode {
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:189:16: warning: static property 'checkpoint' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
187 |     /// - seealso: [Original proposal](https://web.archive.org/web/20151013212135/http://code.google.com/p/gears/wiki/ResumableHttpRequestsProposal)
188 |     @available(*, unavailable, renamed: "earlyHints", message: "Replaced by RFC standard code with different meaning")
189 |     static let checkpoint = __Unavailable
    |                |- warning: static property 'checkpoint' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'checkpoint' 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
190 |
191 |     /// Switch Proxy: 306
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:197:16: warning: static property 'switchProxy' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
195 |     /// - seealso: [Original draft](https://tools.ietf.org/html/draft-cohen-http-305-306-responses-00)
196 |     @available(*, unavailable, message: "No longer used")
197 |     static let switchProxy = __Unavailable
    |                |- warning: static property 'switchProxy' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'switchProxy' 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
198 |
199 |     /// Authentication Timeout: 419
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:203:16: warning: static property 'authenticationTimeout' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
201 |     /// Removed from Wikipedia page.
202 |     @available(*, unavailable, message: "No longer available")
203 |     static let authenticationTimeout = __Unavailable
    |                |- warning: static property 'authenticationTimeout' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'authenticationTimeout' 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
204 |
205 |     /// Method Failure: 419
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:211:16: warning: static property 'springFrameworkMethodFailure' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
209 |     /// - seealso: [Spring Framework: HttpStatus enum documentation - `METHOD_FAILURE`](https://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/http/HttpStatus.html#METHOD_FAILURE)
210 |     @available(*, unavailable, message: "Deprecated")
211 |     static let springFrameworkMethodFailure = __Unavailable
    |                |- warning: static property 'springFrameworkMethodFailure' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'springFrameworkMethodFailure' 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
212 |
213 |     /// Request Header Too Large: 494
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:217:16: warning: static property 'requestHeaderTooLarge' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
215 |     /// Removed and replaced with `RequestHeaderFieldsTooLarge` - 431
216 |     @available(*, unavailable, renamed: "requestHeaderFieldsTooLarge", message: "Changed to a 431 status code")
217 |     static let requestHeaderTooLarge = __Unavailable
    |                |- warning: static property 'requestHeaderTooLarge' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'requestHeaderTooLarge' 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
218 | }
219 |
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
 15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
 16 | @objc public enum HTTPStatusCode: Int {
    |                   `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
 17 |
 18 |     /// Continue: 100
Build complete! (6.26s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "HTTPStatusCodes",
  "name" : "HTTPStatusCodes",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "HTTPStatusCodes",
      "targets" : [
        "HTTPStatusCodes"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "HTTPStatusCodesTests",
      "module_type" : "SwiftTarget",
      "name" : "HTTPStatusCodesTests",
      "path" : "Tests/HTTPStatusCodesTests",
      "sources" : [
        "HTTPStatusCodesTests.swift",
        "RegressionTests.swift"
      ],
      "target_dependencies" : [
        "HTTPStatusCodes"
      ],
      "type" : "test"
    },
    {
      "c99name" : "HTTPStatusCodes",
      "module_type" : "SwiftTarget",
      "name" : "HTTPStatusCodes",
      "path" : "Sources",
      "product_memberships" : [
        "HTTPStatusCodes"
      ],
      "sources" : [
        "HTTPStatusCodes+Extensions.swift",
        "HTTPStatusCodes.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Done.