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 HTTPStatusCodes with Swift 6.0 for watchOS using Xcode 16.0.

Swift 6 data race errors: 54

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme HTTPStatusCodes -destination generic/platform=watchos OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

    static let retryWith = iisRetryWith
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:133:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let retryWith = iisRetryWith
               ^
    nonisolated(unsafe)
/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
    static let noResponse = nginxNoResponse
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:137:16: note: annotate 'noResponse' with '@MainActor' if property should only be accessed from the main actor
    static let noResponse = nginxNoResponse
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:137:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let noResponse = nginxNoResponse
               ^
    nonisolated(unsafe)
/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
    static let certError = nginxSSLCertificateError
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:141:16: note: annotate 'certError' with '@MainActor' if property should only be accessed from the main actor
    static let certError = nginxSSLCertificateError
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:141:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let certError = nginxSSLCertificateError
               ^
    nonisolated(unsafe)
/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
    static let noCert = nginxSSLCertificateRequired
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:145:16: note: annotate 'noCert' with '@MainActor' if property should only be accessed from the main actor
    static let noCert = nginxSSLCertificateRequired
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:145:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let noCert = nginxSSLCertificateRequired
               ^
    nonisolated(unsafe)
/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
    static let httpToHTTPS = nginxHTTPToHTTPS
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:149:16: note: annotate 'httpToHTTPS' with '@MainActor' if property should only be accessed from the main actor
    static let httpToHTTPS = nginxHTTPToHTTPS
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:149:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let httpToHTTPS = nginxHTTPToHTTPS
               ^
    nonisolated(unsafe)
/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
    static let clientClosedRequest = nginxClientClosedRequest
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:153:16: note: annotate 'clientClosedRequest' with '@MainActor' if property should only be accessed from the main actor
    static let clientClosedRequest = nginxClientClosedRequest
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:153:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let clientClosedRequest = nginxClientClosedRequest
               ^
    nonisolated(unsafe)
/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
    static let networkTimeoutError = networkConnectTimeoutError
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:157:16: note: annotate 'networkTimeoutError' with '@MainActor' if property should only be accessed from the main actor
    static let networkTimeoutError = networkConnectTimeoutError
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:157:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let networkTimeoutError = networkConnectTimeoutError
               ^
    nonisolated(unsafe)
/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
    static let twitterEnhanceYourCalm = tooManyRequests
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:163:16: note: annotate 'twitterEnhanceYourCalm' with '@MainActor' if property should only be accessed from the main actor
    static let twitterEnhanceYourCalm = tooManyRequests
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:163:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let twitterEnhanceYourCalm = tooManyRequests
               ^
    nonisolated(unsafe)
/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
private let __Unavailable: HTTPStatusCode! = nil
            ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:179:13: note: annotate '__Unavailable' with '@MainActor' if property should only be accessed from the main actor
private let __Unavailable: HTTPStatusCode! = nil
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:179:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let __Unavailable: HTTPStatusCode! = nil
            ^
nonisolated(unsafe)
/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
    static let checkpoint = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:189:16: note: annotate 'checkpoint' with '@MainActor' if property should only be accessed from the main actor
    static let checkpoint = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:189:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let checkpoint = __Unavailable
               ^
    nonisolated(unsafe)
/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
    static let switchProxy = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:197:16: note: annotate 'switchProxy' with '@MainActor' if property should only be accessed from the main actor
    static let switchProxy = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:197:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let switchProxy = __Unavailable
               ^
    nonisolated(unsafe)
/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
    static let authenticationTimeout = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:203:16: note: annotate 'authenticationTimeout' with '@MainActor' if property should only be accessed from the main actor
    static let authenticationTimeout = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:203:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let authenticationTimeout = __Unavailable
               ^
    nonisolated(unsafe)
/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
    static let springFrameworkMethodFailure = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:211:16: note: annotate 'springFrameworkMethodFailure' with '@MainActor' if property should only be accessed from the main actor
    static let springFrameworkMethodFailure = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:211:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let springFrameworkMethodFailure = __Unavailable
               ^
    nonisolated(unsafe)
/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
    static let requestHeaderTooLarge = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:217:16: note: annotate 'requestHeaderTooLarge' with '@MainActor' if property should only be accessed from the main actor
    static let requestHeaderTooLarge = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:217:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let requestHeaderTooLarge = __Unavailable
               ^
    nonisolated(unsafe)
SwiftEmitModule normal arm64 Emitting\ module\ for\ HTTPStatusCodes (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTTPStatusCodes -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.abi.json
/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
SwiftCompile normal arm64_32 Compiling\ HTTPStatusCodes.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTTPStatusCodes -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes.o -index-unit-output-path /HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTTPStatusCodes -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes.o -index-unit-output-path /HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 Compiling\ HTTPStatusCodes+Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes+Extensions.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes+Extensions.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes+Extensions.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes+Extensions.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTTPStatusCodes -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes+Extensions.o -index-unit-output-path /HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes+Extensions.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes+Extensions.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes+Extensions.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes+Extensions.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes+Extensions.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTTPStatusCodes -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes+Extensions.o -index-unit-output-path /HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes+Extensions.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/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
    static let requestEntityTooLarge = payloadTooLarge
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:117:16: note: annotate 'requestEntityTooLarge' with '@MainActor' if property should only be accessed from the main actor
    static let requestEntityTooLarge = payloadTooLarge
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:117:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let requestEntityTooLarge = payloadTooLarge
               ^
    nonisolated(unsafe)
/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
    static let requestURITooLong = uriTooLong
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:121:16: note: annotate 'requestURITooLong' with '@MainActor' if property should only be accessed from the main actor
    static let requestURITooLong = uriTooLong
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:121:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let requestURITooLong = uriTooLong
               ^
    nonisolated(unsafe)
/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
    static let requestedRangeNotSatisfiable = rangeNotSatisfiable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:125:16: note: annotate 'requestedRangeNotSatisfiable' with '@MainActor' if property should only be accessed from the main actor
    static let requestedRangeNotSatisfiable = rangeNotSatisfiable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:125:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let requestedRangeNotSatisfiable = rangeNotSatisfiable
               ^
    nonisolated(unsafe)
/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
    static let loginTimeout = iisLoginTimeout
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:129:16: note: annotate 'loginTimeout' with '@MainActor' if property should only be accessed from the main actor
    static let loginTimeout = iisLoginTimeout
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:129:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let loginTimeout = iisLoginTimeout
               ^
    nonisolated(unsafe)
/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
    static let retryWith = iisRetryWith
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:133:16: note: annotate 'retryWith' with '@MainActor' if property should only be accessed from the main actor
    static let retryWith = iisRetryWith
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:133:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let retryWith = iisRetryWith
               ^
    nonisolated(unsafe)
/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
    static let noResponse = nginxNoResponse
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:137:16: note: annotate 'noResponse' with '@MainActor' if property should only be accessed from the main actor
    static let noResponse = nginxNoResponse
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:137:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let noResponse = nginxNoResponse
               ^
    nonisolated(unsafe)
/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
    static let certError = nginxSSLCertificateError
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:141:16: note: annotate 'certError' with '@MainActor' if property should only be accessed from the main actor
    static let certError = nginxSSLCertificateError
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:141:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let certError = nginxSSLCertificateError
               ^
    nonisolated(unsafe)
/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
    static let noCert = nginxSSLCertificateRequired
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:145:16: note: annotate 'noCert' with '@MainActor' if property should only be accessed from the main actor
    static let noCert = nginxSSLCertificateRequired
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:145:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let noCert = nginxSSLCertificateRequired
               ^
    nonisolated(unsafe)
/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
    static let httpToHTTPS = nginxHTTPToHTTPS
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:149:16: note: annotate 'httpToHTTPS' with '@MainActor' if property should only be accessed from the main actor
    static let httpToHTTPS = nginxHTTPToHTTPS
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:149:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let httpToHTTPS = nginxHTTPToHTTPS
               ^
    nonisolated(unsafe)
/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
    static let clientClosedRequest = nginxClientClosedRequest
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:153:16: note: annotate 'clientClosedRequest' with '@MainActor' if property should only be accessed from the main actor
    static let clientClosedRequest = nginxClientClosedRequest
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:153:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let clientClosedRequest = nginxClientClosedRequest
               ^
    nonisolated(unsafe)
/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
    static let networkTimeoutError = networkConnectTimeoutError
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:157:16: note: annotate 'networkTimeoutError' with '@MainActor' if property should only be accessed from the main actor
    static let networkTimeoutError = networkConnectTimeoutError
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:157:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let networkTimeoutError = networkConnectTimeoutError
               ^
    nonisolated(unsafe)
/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
    static let twitterEnhanceYourCalm = tooManyRequests
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:163:16: note: annotate 'twitterEnhanceYourCalm' with '@MainActor' if property should only be accessed from the main actor
    static let twitterEnhanceYourCalm = tooManyRequests
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:163:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let twitterEnhanceYourCalm = tooManyRequests
               ^
    nonisolated(unsafe)
/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
private let __Unavailable: HTTPStatusCode! = nil
            ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:179:13: note: annotate '__Unavailable' with '@MainActor' if property should only be accessed from the main actor
private let __Unavailable: HTTPStatusCode! = nil
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:179:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let __Unavailable: HTTPStatusCode! = nil
            ^
nonisolated(unsafe)
/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
    static let checkpoint = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:189:16: note: annotate 'checkpoint' with '@MainActor' if property should only be accessed from the main actor
    static let checkpoint = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:189:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let checkpoint = __Unavailable
               ^
    nonisolated(unsafe)
/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
    static let switchProxy = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:197:16: note: annotate 'switchProxy' with '@MainActor' if property should only be accessed from the main actor
    static let switchProxy = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:197:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let switchProxy = __Unavailable
               ^
    nonisolated(unsafe)
/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
    static let authenticationTimeout = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:203:16: note: annotate 'authenticationTimeout' with '@MainActor' if property should only be accessed from the main actor
    static let authenticationTimeout = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:203:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let authenticationTimeout = __Unavailable
               ^
    nonisolated(unsafe)
/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
    static let springFrameworkMethodFailure = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:211:16: note: annotate 'springFrameworkMethodFailure' with '@MainActor' if property should only be accessed from the main actor
    static let springFrameworkMethodFailure = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:211:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let springFrameworkMethodFailure = __Unavailable
               ^
    nonisolated(unsafe)
/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
    static let requestHeaderTooLarge = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:217:16: note: annotate 'requestHeaderTooLarge' with '@MainActor' if property should only be accessed from the main actor
    static let requestHeaderTooLarge = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:217:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let requestHeaderTooLarge = __Unavailable
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ HTTPStatusCodes.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTTPStatusCodes -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.o -index-unit-output-path /HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTTPStatusCodes -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.o -index-unit-output-path /HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k Compiling\ HTTPStatusCodes+Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes+Extensions.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes+Extensions.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes+Extensions.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes+Extensions.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTTPStatusCodes -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes+Extensions.o -index-unit-output-path /HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes+Extensions.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes+Extensions.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes+Extensions.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes+Extensions.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes+Extensions.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTTPStatusCodes -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes+Extensions.o -index-unit-output-path /HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes+Extensions.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/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
    static let requestEntityTooLarge = payloadTooLarge
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:117:16: note: annotate 'requestEntityTooLarge' with '@MainActor' if property should only be accessed from the main actor
    static let requestEntityTooLarge = payloadTooLarge
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:117:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let requestEntityTooLarge = payloadTooLarge
               ^
    nonisolated(unsafe)
/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
    static let requestURITooLong = uriTooLong
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:121:16: note: annotate 'requestURITooLong' with '@MainActor' if property should only be accessed from the main actor
    static let requestURITooLong = uriTooLong
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:121:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let requestURITooLong = uriTooLong
               ^
    nonisolated(unsafe)
/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
    static let requestedRangeNotSatisfiable = rangeNotSatisfiable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:125:16: note: annotate 'requestedRangeNotSatisfiable' with '@MainActor' if property should only be accessed from the main actor
    static let requestedRangeNotSatisfiable = rangeNotSatisfiable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:125:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let requestedRangeNotSatisfiable = rangeNotSatisfiable
               ^
    nonisolated(unsafe)
/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
    static let loginTimeout = iisLoginTimeout
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:129:16: note: annotate 'loginTimeout' with '@MainActor' if property should only be accessed from the main actor
    static let loginTimeout = iisLoginTimeout
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:129:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let loginTimeout = iisLoginTimeout
               ^
    nonisolated(unsafe)
/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
    static let retryWith = iisRetryWith
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:133:16: note: annotate 'retryWith' with '@MainActor' if property should only be accessed from the main actor
    static let retryWith = iisRetryWith
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:133:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let retryWith = iisRetryWith
               ^
    nonisolated(unsafe)
/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
    static let noResponse = nginxNoResponse
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:137:16: note: annotate 'noResponse' with '@MainActor' if property should only be accessed from the main actor
    static let noResponse = nginxNoResponse
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:137:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let noResponse = nginxNoResponse
               ^
    nonisolated(unsafe)
/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
    static let certError = nginxSSLCertificateError
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:141:16: note: annotate 'certError' with '@MainActor' if property should only be accessed from the main actor
    static let certError = nginxSSLCertificateError
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:141:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let certError = nginxSSLCertificateError
               ^
    nonisolated(unsafe)
/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
    static let noCert = nginxSSLCertificateRequired
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:145:16: note: annotate 'noCert' with '@MainActor' if property should only be accessed from the main actor
    static let noCert = nginxSSLCertificateRequired
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:145:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let noCert = nginxSSLCertificateRequired
               ^
    nonisolated(unsafe)
/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
    static let httpToHTTPS = nginxHTTPToHTTPS
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:149:16: note: annotate 'httpToHTTPS' with '@MainActor' if property should only be accessed from the main actor
    static let httpToHTTPS = nginxHTTPToHTTPS
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:149:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let httpToHTTPS = nginxHTTPToHTTPS
               ^
    nonisolated(unsafe)
/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
    static let clientClosedRequest = nginxClientClosedRequest
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:153:16: note: annotate 'clientClosedRequest' with '@MainActor' if property should only be accessed from the main actor
    static let clientClosedRequest = nginxClientClosedRequest
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:153:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let clientClosedRequest = nginxClientClosedRequest
               ^
    nonisolated(unsafe)
/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
    static let networkTimeoutError = networkConnectTimeoutError
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:157:16: note: annotate 'networkTimeoutError' with '@MainActor' if property should only be accessed from the main actor
    static let networkTimeoutError = networkConnectTimeoutError
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:157:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let networkTimeoutError = networkConnectTimeoutError
               ^
    nonisolated(unsafe)
/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
    static let twitterEnhanceYourCalm = tooManyRequests
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:163:16: note: annotate 'twitterEnhanceYourCalm' with '@MainActor' if property should only be accessed from the main actor
    static let twitterEnhanceYourCalm = tooManyRequests
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:163:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let twitterEnhanceYourCalm = tooManyRequests
               ^
    nonisolated(unsafe)
/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
private let __Unavailable: HTTPStatusCode! = nil
            ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:179:13: note: annotate '__Unavailable' with '@MainActor' if property should only be accessed from the main actor
private let __Unavailable: HTTPStatusCode! = nil
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:179:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let __Unavailable: HTTPStatusCode! = nil
            ^
nonisolated(unsafe)
/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
    static let checkpoint = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:189:16: note: annotate 'checkpoint' with '@MainActor' if property should only be accessed from the main actor
    static let checkpoint = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:189:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let checkpoint = __Unavailable
               ^
    nonisolated(unsafe)
/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
    static let switchProxy = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:197:16: note: annotate 'switchProxy' with '@MainActor' if property should only be accessed from the main actor
    static let switchProxy = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:197:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let switchProxy = __Unavailable
               ^
    nonisolated(unsafe)
/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
    static let authenticationTimeout = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:203:16: note: annotate 'authenticationTimeout' with '@MainActor' if property should only be accessed from the main actor
    static let authenticationTimeout = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:203:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let authenticationTimeout = __Unavailable
               ^
    nonisolated(unsafe)
/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
    static let springFrameworkMethodFailure = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:211:16: note: annotate 'springFrameworkMethodFailure' with '@MainActor' if property should only be accessed from the main actor
    static let springFrameworkMethodFailure = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:211:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let springFrameworkMethodFailure = __Unavailable
               ^
    nonisolated(unsafe)
/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
    static let requestHeaderTooLarge = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
@objc public enum HTTPStatusCode: Int {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:217:16: note: annotate 'requestHeaderTooLarge' with '@MainActor' if property should only be accessed from the main actor
    static let requestHeaderTooLarge = __Unavailable
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:217:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let requestHeaderTooLarge = __Unavailable
               ^
    nonisolated(unsafe)
SwiftCompile normal armv7k Compiling\ HTTPStatusCodes.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTTPStatusCodes -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes.o -index-unit-output-path /HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTPStatusCodes.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTTPStatusCodes -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes.o -index-unit-output-path /HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal armv7k Emitting module for HTTPStatusCodes (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
SwiftDriver\ Compilation\ Requirements HTTPStatusCodes normal armv7k com.apple.xcode.tools.swift.compiler (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name HTTPStatusCodes -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes.swiftmodule (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.swiftmodule/armv7k-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes.swiftdoc (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes.abi.json (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes.swiftsourceinfo (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64_32 Emitting module for HTTPStatusCodes (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
SwiftDriver\ Compilation\ Requirements HTTPStatusCodes normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name HTTPStatusCodes -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes.swiftdoc (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes.abi.json (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes.swiftmodule (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes.swiftsourceinfo (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64_32 Compiling HTTPStatusCodes.swift (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
SwiftDriverJobDiscovery normal arm64_32 Compiling HTTPStatusCodes+Extensions.swift (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
SwiftDriver\ Compilation HTTPStatusCodes normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name HTTPStatusCodes -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal armv7k Compiling HTTPStatusCodes+Extensions.swift (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
SwiftDriverJobDiscovery normal armv7k Compiling HTTPStatusCodes.swift (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
SwiftDriver\ Compilation HTTPStatusCodes normal armv7k com.apple.xcode.tools.swift.compiler (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name HTTPStatusCodes -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Emitting module for HTTPStatusCodes (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
SwiftDriver\ Compilation\ Requirements HTTPStatusCodes normal arm64 com.apple.xcode.tools.swift.compiler (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name HTTPStatusCodes -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/HTTPStatusCodes-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes-Swift.h (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/HTTPStatusCodes-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.swiftdoc (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.swiftsourceinfo (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.swiftmodule (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.abi.json (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.swiftmodule/arm64-apple-watchos.abi.json
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/Binary/HTTPStatusCodes.o normal armv7k (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos5.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/HTTPStatusCodes_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/Binary/HTTPStatusCodes.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/Binary/HTTPStatusCodes.o normal arm64_32 (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos5.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/HTTPStatusCodes_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/Binary/HTTPStatusCodes.o
SwiftDriverJobDiscovery normal arm64 Compiling HTTPStatusCodes+Extensions.swift (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
SwiftDriverJobDiscovery normal arm64 Compiling HTTPStatusCodes.swift (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
SwiftDriver\ Compilation HTTPStatusCodes normal arm64 com.apple.xcode.tools.swift.compiler (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name HTTPStatusCodes -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/Binary/HTTPStatusCodes.o normal arm64 (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos5.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/HTTPStatusCodes_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/Binary/HTTPStatusCodes.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.o normal arm64\ armv7k\ arm64_32 (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-15.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64/Binary/HTTPStatusCodes.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/armv7k/Binary/HTTPStatusCodes.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPStatusCodes.build/Debug-watchos/HTTPStatusCodes.build/Objects-normal/arm64_32/Binary/HTTPStatusCodes.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.o (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPStatusCodes.o
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'HTTPStatusCodes' from project 'HTTPStatusCodes')
** BUILD SUCCEEDED **
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.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.