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 Sunday, reference main (69eabd), with Swift 6.0 for macOS (Xcode) using Xcode 16.0 on 3 Nov 2024 05:06:18 UTC.

Swift 6 data race errors: 99

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Sunday-Package -destination platform=macOS,arch=arm64 OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:71:25: warning: static property 'continue' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let `continue` = Status(code: .continue)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:71:25: note: annotate 'continue' with '@MainActor' if property should only be accessed from the main actor
      public static let `continue` = Status(code: .continue)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:71:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let `continue` = Status(code: .continue)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:72:25: warning: static property 'switchingProtocols' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let switchingProtocols = Status(code: .switchingProtocols)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:72:25: note: annotate 'switchingProtocols' with '@MainActor' if property should only be accessed from the main actor
      public static let switchingProtocols = Status(code: .switchingProtocols)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:72:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let switchingProtocols = Status(code: .switchingProtocols)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:76:25: warning: static property 'ok' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let ok = Status(code: .ok)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:76:25: note: annotate 'ok' with '@MainActor' if property should only be accessed from the main actor
      public static let ok = Status(code: .ok)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:76:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let ok = Status(code: .ok)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:77:25: warning: static property 'created' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let created = Status(code: .created)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:77:25: note: annotate 'created' with '@MainActor' if property should only be accessed from the main actor
      public static let created = Status(code: .created)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:77:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let created = Status(code: .created)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:78:25: warning: static property 'accepted' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let accepted = Status(code: .accepted)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:78:25: note: annotate 'accepted' with '@MainActor' if property should only be accessed from the main actor
      public static let accepted = Status(code: .accepted)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:78:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let accepted = Status(code: .accepted)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:79:25: warning: static property 'nonAuthoritativeInformation' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let nonAuthoritativeInformation = Status(code: .nonAuthoritativeInformation)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:79:25: note: annotate 'nonAuthoritativeInformation' with '@MainActor' if property should only be accessed from the main actor
      public static let nonAuthoritativeInformation = Status(code: .nonAuthoritativeInformation)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:79:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let nonAuthoritativeInformation = Status(code: .nonAuthoritativeInformation)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:80:25: warning: static property 'noContent' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let noContent = Status(code: .noContent)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:80:25: note: annotate 'noContent' with '@MainActor' if property should only be accessed from the main actor
      public static let noContent = Status(code: .noContent)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:80:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let noContent = Status(code: .noContent)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:81:25: warning: static property 'resetContent' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let resetContent = Status(code: .resetContent)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:81:25: note: annotate 'resetContent' with '@MainActor' if property should only be accessed from the main actor
      public static let resetContent = Status(code: .resetContent)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:81:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let resetContent = Status(code: .resetContent)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:82:25: warning: static property 'partialContent' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let partialContent = Status(code: .partialContent)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:82:25: note: annotate 'partialContent' with '@MainActor' if property should only be accessed from the main actor
      public static let partialContent = Status(code: .partialContent)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:82:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let partialContent = Status(code: .partialContent)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:86:25: warning: static property 'multipleChoices' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let multipleChoices = Status(code: .multipleChoices)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:86:25: note: annotate 'multipleChoices' with '@MainActor' if property should only be accessed from the main actor
      public static let multipleChoices = Status(code: .multipleChoices)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:86:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let multipleChoices = Status(code: .multipleChoices)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:87:25: warning: static property 'movedPermanently' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let movedPermanently = Status(code: .movedPermanently)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:87:25: note: annotate 'movedPermanently' with '@MainActor' if property should only be accessed from the main actor
      public static let movedPermanently = Status(code: .movedPermanently)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:87:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let movedPermanently = Status(code: .movedPermanently)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:88:25: warning: static property 'found' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let found = Status(code: .found)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:88:25: note: annotate 'found' with '@MainActor' if property should only be accessed from the main actor
      public static let found = Status(code: .found)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:88:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let found = Status(code: .found)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:89:25: warning: static property 'seeOther' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let seeOther = Status(code: .seeOther)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:89:25: note: annotate 'seeOther' with '@MainActor' if property should only be accessed from the main actor
      public static let seeOther = Status(code: .seeOther)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:89:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let seeOther = Status(code: .seeOther)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:90:25: warning: static property 'notModified' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let notModified = Status(code: .notModified)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:90:25: note: annotate 'notModified' with '@MainActor' if property should only be accessed from the main actor
      public static let notModified = Status(code: .notModified)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:90:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let notModified = Status(code: .notModified)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:91:25: warning: static property 'useProxy' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let useProxy = Status(code: .useProxy)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:91:25: note: annotate 'useProxy' with '@MainActor' if property should only be accessed from the main actor
      public static let useProxy = Status(code: .useProxy)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:91:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let useProxy = Status(code: .useProxy)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:92:25: warning: static property 'temporaryRedirect' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let temporaryRedirect = Status(code: .temporaryRedirect)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:92:25: note: annotate 'temporaryRedirect' with '@MainActor' if property should only be accessed from the main actor
      public static let temporaryRedirect = Status(code: .temporaryRedirect)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:92:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let temporaryRedirect = Status(code: .temporaryRedirect)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:96:25: warning: static property 'badRequest' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let badRequest = Status(code: .badRequest)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:96:25: note: annotate 'badRequest' with '@MainActor' if property should only be accessed from the main actor
      public static let badRequest = Status(code: .badRequest)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:96:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let badRequest = Status(code: .badRequest)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:97:25: warning: static property 'unauthenticated' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let unauthenticated = Status(code: .unauthenticated)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:97:25: note: annotate 'unauthenticated' with '@MainActor' if property should only be accessed from the main actor
      public static let unauthenticated = Status(code: .unauthenticated)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:97:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let unauthenticated = Status(code: .unauthenticated)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:98:25: warning: static property 'paymentRequired' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let paymentRequired = Status(code: .paymentRequired)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:98:25: note: annotate 'paymentRequired' with '@MainActor' if property should only be accessed from the main actor
      public static let paymentRequired = Status(code: .paymentRequired)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:98:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let paymentRequired = Status(code: .paymentRequired)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:99:25: warning: static property 'forbidden' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let forbidden = Status(code: .forbidden)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:99:25: note: annotate 'forbidden' with '@MainActor' if property should only be accessed from the main actor
      public static let forbidden = Status(code: .forbidden)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:99:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let forbidden = Status(code: .forbidden)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:100:25: warning: static property 'notFound' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let notFound = Status(code: .notFound)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:100:25: note: annotate 'notFound' with '@MainActor' if property should only be accessed from the main actor
      public static let notFound = Status(code: .notFound)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:100:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let notFound = Status(code: .notFound)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:101:25: warning: static property 'methodNotAllowed' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let methodNotAllowed = Status(code: .methodNotAllowed)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:101:25: note: annotate 'methodNotAllowed' with '@MainActor' if property should only be accessed from the main actor
      public static let methodNotAllowed = Status(code: .methodNotAllowed)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:101:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let methodNotAllowed = Status(code: .methodNotAllowed)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:102:25: warning: static property 'notAcceptable' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let notAcceptable = Status(code: .notAcceptable)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:102:25: note: annotate 'notAcceptable' with '@MainActor' if property should only be accessed from the main actor
      public static let notAcceptable = Status(code: .notAcceptable)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:102:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let notAcceptable = Status(code: .notAcceptable)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:103:25: warning: static property 'proxyAuthenticationRequired' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let proxyAuthenticationRequired = Status(code: .proxyAuthenticationRequired)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:103:25: note: annotate 'proxyAuthenticationRequired' with '@MainActor' if property should only be accessed from the main actor
      public static let proxyAuthenticationRequired = Status(code: .proxyAuthenticationRequired)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:103:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let proxyAuthenticationRequired = Status(code: .proxyAuthenticationRequired)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:104:25: warning: static property 'requestTimeout' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let requestTimeout = Status(code: .requestTimeout)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:104:25: note: annotate 'requestTimeout' with '@MainActor' if property should only be accessed from the main actor
      public static let requestTimeout = Status(code: .requestTimeout)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:104:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let requestTimeout = Status(code: .requestTimeout)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:105:25: warning: static property 'conflict' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let conflict = Status(code: .conflict)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:105:25: note: annotate 'conflict' with '@MainActor' if property should only be accessed from the main actor
      public static let conflict = Status(code: .conflict)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:105:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let conflict = Status(code: .conflict)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:106:25: warning: static property 'gone' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let gone = Status(code: .gone)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:106:25: note: annotate 'gone' with '@MainActor' if property should only be accessed from the main actor
      public static let gone = Status(code: .gone)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:106:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let gone = Status(code: .gone)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:107:25: warning: static property 'lengthRequired' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let lengthRequired = Status(code: .lengthRequired)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:107:25: note: annotate 'lengthRequired' with '@MainActor' if property should only be accessed from the main actor
      public static let lengthRequired = Status(code: .lengthRequired)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:107:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let lengthRequired = Status(code: .lengthRequired)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:108:25: warning: static property 'preconditionFailed' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let preconditionFailed = Status(code: .preconditionFailed)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:108:25: note: annotate 'preconditionFailed' with '@MainActor' if property should only be accessed from the main actor
      public static let preconditionFailed = Status(code: .preconditionFailed)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:108:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let preconditionFailed = Status(code: .preconditionFailed)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:109:25: warning: static property 'requestEntityTooLarge' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let requestEntityTooLarge = Status(code: .requestEntityTooLarge)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:109:25: note: annotate 'requestEntityTooLarge' with '@MainActor' if property should only be accessed from the main actor
      public static let requestEntityTooLarge = Status(code: .requestEntityTooLarge)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:109:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let requestEntityTooLarge = Status(code: .requestEntityTooLarge)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:110:25: warning: static property 'requestUriTooLong' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let requestUriTooLong = Status(code: .requestUriTooLong)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:110:25: note: annotate 'requestUriTooLong' with '@MainActor' if property should only be accessed from the main actor
      public static let requestUriTooLong = Status(code: .requestUriTooLong)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:110:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let requestUriTooLong = Status(code: .requestUriTooLong)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:111:25: warning: static property 'unsupportedMediaType' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let unsupportedMediaType = Status(code: .unsupportedMediaType)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:111:25: note: annotate 'unsupportedMediaType' with '@MainActor' if property should only be accessed from the main actor
      public static let unsupportedMediaType = Status(code: .unsupportedMediaType)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:111:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let unsupportedMediaType = Status(code: .unsupportedMediaType)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:112:25: warning: static property 'requestRangeNotSatisfiable' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let requestRangeNotSatisfiable = Status(code: .requestRangeNotSatisfiable)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:112:25: note: annotate 'requestRangeNotSatisfiable' with '@MainActor' if property should only be accessed from the main actor
      public static let requestRangeNotSatisfiable = Status(code: .requestRangeNotSatisfiable)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:112:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let requestRangeNotSatisfiable = Status(code: .requestRangeNotSatisfiable)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:113:25: warning: static property 'expectationFailed' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let expectationFailed = Status(code: .expectationFailed)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:113:25: note: annotate 'expectationFailed' with '@MainActor' if property should only be accessed from the main actor
      public static let expectationFailed = Status(code: .expectationFailed)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:113:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let expectationFailed = Status(code: .expectationFailed)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:117:25: warning: static property 'internalServerError' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let internalServerError = Status(code: .internalServerError)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:117:25: note: annotate 'internalServerError' with '@MainActor' if property should only be accessed from the main actor
      public static let internalServerError = Status(code: .internalServerError)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:117:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let internalServerError = Status(code: .internalServerError)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:118:25: warning: static property 'notImplemented' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let notImplemented = Status(code: .notImplemented)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:118:25: note: annotate 'notImplemented' with '@MainActor' if property should only be accessed from the main actor
      public static let notImplemented = Status(code: .notImplemented)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:118:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let notImplemented = Status(code: .notImplemented)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:119:25: warning: static property 'badGateway' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let badGateway = Status(code: .badGateway)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:119:25: note: annotate 'badGateway' with '@MainActor' if property should only be accessed from the main actor
      public static let badGateway = Status(code: .badGateway)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:119:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let badGateway = Status(code: .badGateway)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:120:25: warning: static property 'serviceUnavailable' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let serviceUnavailable = Status(code: .serviceUnavailable)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:120:25: note: annotate 'serviceUnavailable' with '@MainActor' if property should only be accessed from the main actor
      public static let serviceUnavailable = Status(code: .serviceUnavailable)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:120:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let serviceUnavailable = Status(code: .serviceUnavailable)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:121:25: warning: static property 'gatewayTimeout' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let gatewayTimeout = Status(code: .gatewayTimeout)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:121:25: note: annotate 'gatewayTimeout' with '@MainActor' if property should only be accessed from the main actor
      public static let gatewayTimeout = Status(code: .gatewayTimeout)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:121:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let gatewayTimeout = Status(code: .gatewayTimeout)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:122:25: warning: static property 'httpVersionNotSupported' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let httpVersionNotSupported = Status(code: .httpVersionNotSupported)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:122:25: note: annotate 'httpVersionNotSupported' with '@MainActor' if property should only be accessed from the main actor
      public static let httpVersionNotSupported = Status(code: .httpVersionNotSupported)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:122:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let httpVersionNotSupported = Status(code: .httpVersionNotSupported)
                        ^
      nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling URLRequests.swift, URLSessionConfigurations.swift, WWWFormURLEncoder.swift (in target 'Sunday' from project 'Sunday')
SwiftDriverJobDiscovery normal arm64 Compiling MediaType.swift, MediaTypeDecoders.swift, MediaTypeEncoders.swift, NetworkRequestAdapter.swift (in target 'Sunday' from project 'Sunday')
SwiftCompile normal arm64 Compiling\ RoutableContentNegotiation.swift,\ RoutableDebug.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableContentNegotiation.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableDebug.swift (in target 'SundayServer' from project 'Sunday')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPConnection.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPHeaderParser.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPServer.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/Logging.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/Routable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableContentNegotiation.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableDebug.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableParam.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutablePath.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableQueues.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableRequestDecoding.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableResponseEncoding.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutingHTTPServer.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableContentNegotiation.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableContentNegotiation.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableContentNegotiation.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableContentNegotiation.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableDebug.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableDebug.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableDebug.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableDebug.dia -target arm64-apple-macos11.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CFloat16.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Cfyaml.modulemap -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-numerics/Sources/_NumericsShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Float16/Sources/CFloat16/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/PotentCodables/Sources/Cfyaml/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SundayServer -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableContentNegotiation.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableDebug.o -index-unit-output-path /Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableContentNegotiation.o -index-unit-output-path /Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableDebug.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/SundayServer/RoutableContentNegotiation.swift (in target 'SundayServer' from project 'Sunday')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPConnection.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPHeaderParser.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPServer.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/Logging.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/Routable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableContentNegotiation.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableDebug.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableParam.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutablePath.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableQueues.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableRequestDecoding.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableResponseEncoding.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutingHTTPServer.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableContentNegotiation.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableContentNegotiation.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableContentNegotiation.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableContentNegotiation.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableDebug.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableDebug.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableDebug.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableDebug.dia -target arm64-apple-macos11.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CFloat16.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Cfyaml.modulemap -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-numerics/Sources/_NumericsShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Float16/Sources/CFloat16/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/PotentCodables/Sources/Cfyaml/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SundayServer -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableContentNegotiation.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableDebug.o -index-unit-output-path /Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableContentNegotiation.o -index-unit-output-path /Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableDebug.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/SundayServer/RoutableDebug.swift (in target 'SundayServer' from project 'Sunday')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPConnection.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPHeaderParser.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPServer.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/Logging.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/Routable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableContentNegotiation.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableDebug.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableParam.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutablePath.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableQueues.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableRequestDecoding.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableResponseEncoding.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutingHTTPServer.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableContentNegotiation.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableContentNegotiation.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableContentNegotiation.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableContentNegotiation.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableDebug.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableDebug.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableDebug.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableDebug.dia -target arm64-apple-macos11.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CFloat16.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Cfyaml.modulemap -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-numerics/Sources/_NumericsShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Float16/Sources/CFloat16/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/PotentCodables/Sources/Cfyaml/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SundayServer -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableContentNegotiation.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableDebug.o -index-unit-output-path /Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableContentNegotiation.o -index-unit-output-path /Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableDebug.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling Logging.swift, Routable.swift (in target 'SundayServer' from project 'Sunday')
SwiftCompile normal arm64 Compiling\ RoutingHTTPServer.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutingHTTPServer.swift (in target 'SundayServer' from project 'Sunday')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPConnection.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPHeaderParser.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPServer.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/Logging.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/Routable.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableContentNegotiation.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableDebug.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableParam.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutablePath.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableQueues.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableRequestDecoding.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableResponseEncoding.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutingHTTPServer.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutingHTTPServer.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutingHTTPServer.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutingHTTPServer.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutingHTTPServer.dia -target arm64-apple-macos11.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CFloat16.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Cfyaml.modulemap -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-numerics/Sources/_NumericsShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Float16/Sources/CFloat16/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/PotentCodables/Sources/Cfyaml/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SundayServer -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutingHTTPServer.o -index-unit-output-path /Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutingHTTPServer.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/SundayServer/RoutingHTTPServer.swift (in target 'SundayServer' from project 'Sunday')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPConnection.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPHeaderParser.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPServer.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/Logging.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/Routable.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableContentNegotiation.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableDebug.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableParam.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutablePath.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableQueues.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableRequestDecoding.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableResponseEncoding.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutingHTTPServer.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutingHTTPServer.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutingHTTPServer.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutingHTTPServer.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutingHTTPServer.dia -target arm64-apple-macos11.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CFloat16.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Cfyaml.modulemap -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-numerics/Sources/_NumericsShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Float16/Sources/CFloat16/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/PotentCodables/Sources/Cfyaml/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SundayServer -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutingHTTPServer.o -index-unit-output-path /Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutingHTTPServer.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:100:25: warning: static property 'notFound' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let notFound = Status(code: .notFound)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:100:25: note: annotate 'notFound' with '@MainActor' if property should only be accessed from the main actor
      public static let notFound = Status(code: .notFound)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:100:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let notFound = Status(code: .notFound)
                        ^
      nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:117:25: warning: static property 'internalServerError' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let internalServerError = Status(code: .internalServerError)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:117:25: note: annotate 'internalServerError' with '@MainActor' if property should only be accessed from the main actor
      public static let internalServerError = Status(code: .internalServerError)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:117:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let internalServerError = Status(code: .internalServerError)
                        ^
      nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling RoutablePath.swift, RoutableQueues.swift (in target 'SundayServer' from project 'Sunday')
SwiftCompile normal arm64 Compiling\ RoutableRequestDecoding.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableRequestDecoding.swift (in target 'SundayServer' from project 'Sunday')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPConnection.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPHeaderParser.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPServer.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/Logging.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/Routable.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableContentNegotiation.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableDebug.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableParam.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutablePath.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableQueues.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableRequestDecoding.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableResponseEncoding.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutingHTTPServer.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableRequestDecoding.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableRequestDecoding.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableRequestDecoding.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableRequestDecoding.dia -target arm64-apple-macos11.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CFloat16.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Cfyaml.modulemap -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-numerics/Sources/_NumericsShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Float16/Sources/CFloat16/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/PotentCodables/Sources/Cfyaml/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SundayServer -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableRequestDecoding.o -index-unit-output-path /Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableRequestDecoding.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/SundayServer/RoutableRequestDecoding.swift (in target 'SundayServer' from project 'Sunday')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPConnection.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPHeaderParser.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPServer.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/Logging.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/Routable.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableContentNegotiation.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableDebug.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableParam.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutablePath.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableQueues.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableRequestDecoding.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableResponseEncoding.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutingHTTPServer.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableRequestDecoding.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableRequestDecoding.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableRequestDecoding.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableRequestDecoding.dia -target arm64-apple-macos11.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CFloat16.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Cfyaml.modulemap -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-numerics/Sources/_NumericsShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Float16/Sources/CFloat16/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/PotentCodables/Sources/Cfyaml/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SundayServer -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableRequestDecoding.o -index-unit-output-path /Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/RoutableRequestDecoding.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:102:25: warning: static property 'notAcceptable' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let notAcceptable = Status(code: .notAcceptable)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:102:25: note: annotate 'notAcceptable' with '@MainActor' if property should only be accessed from the main actor
      public static let notAcceptable = Status(code: .notAcceptable)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:102:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let notAcceptable = Status(code: .notAcceptable)
                        ^
      nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling RoutableResponseEncoding.swift (in target 'SundayServer' from project 'Sunday')
SwiftCompile normal arm64 Compiling\ HTTPResponse.swift,\ HTTPServer.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPServer.swift (in target 'SundayServer' from project 'Sunday')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPConnection.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPHeaderParser.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPRequest.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPResponse.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPServer.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/Logging.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/Routable.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableContentNegotiation.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableDebug.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableParam.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutablePath.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableQueues.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableRequestDecoding.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableResponseEncoding.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutingHTTPServer.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPResponse.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPResponse.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPResponse.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPResponse.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPServer.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPServer.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPServer.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPServer.dia -target arm64-apple-macos11.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CFloat16.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Cfyaml.modulemap -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-numerics/Sources/_NumericsShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Float16/Sources/CFloat16/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/PotentCodables/Sources/Cfyaml/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SundayServer -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPResponse.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPServer.o -index-unit-output-path /Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPResponse.o -index-unit-output-path /Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPServer.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/SundayServer/HTTPResponse.swift (in target 'SundayServer' from project 'Sunday')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPConnection.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPHeaderParser.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPRequest.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPResponse.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPServer.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/Logging.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/Routable.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableContentNegotiation.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableDebug.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableParam.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutablePath.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableQueues.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableRequestDecoding.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableResponseEncoding.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutingHTTPServer.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPResponse.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPResponse.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPResponse.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPResponse.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPServer.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPServer.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPServer.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPServer.dia -target arm64-apple-macos11.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CFloat16.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Cfyaml.modulemap -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-numerics/Sources/_NumericsShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Float16/Sources/CFloat16/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/PotentCodables/Sources/Cfyaml/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SundayServer -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPResponse.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPServer.o -index-unit-output-path /Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPResponse.o -index-unit-output-path /Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPServer.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:102:25: warning: static property 'notAcceptable' is not concurrency-safe because non-'Sendable' type 'HTTP.Response.Status' may have shared mutable state; this is an error in the Swift 6 language mode
      public static let notAcceptable = Status(code: .notAcceptable)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:52:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: CustomStringConvertible {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:102:25: note: annotate 'notAcceptable' with '@MainActor' if property should only be accessed from the main actor
      public static let notAcceptable = Status(code: .notAcceptable)
                        ^
      @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift:102:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
      public static let notAcceptable = Status(code: .notAcceptable)
                        ^
      nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPServer.swift (in target 'SundayServer' from project 'Sunday')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPConnection.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPExchange.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPHeaderParser.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPRequest.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPResponse.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPServer.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/Logging.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/Routable.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableContentNegotiation.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableDebug.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableParam.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutablePath.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableQueues.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableRequestDecoding.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutableResponseEncoding.swift /Users/admin/builder/spi-builder-workspace/Sources/SundayServer/RoutingHTTPServer.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPResponse.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPResponse.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPResponse.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPResponse.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPServer.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPServer.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPServer.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPServer.dia -target arm64-apple-macos11.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CFloat16.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Cfyaml.modulemap -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-numerics/Sources/_NumericsShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Float16/Sources/CFloat16/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/PotentCodables/Sources/Cfyaml/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SundayServer -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPResponse.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPServer.o -index-unit-output-path /Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPResponse.o -index-unit-output-path /Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/HTTPServer.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPServer.swift:59:24: warning: capture of 'self' with non-sendable type 'NetworkHTTPServer?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPServer.swift:32:12: note: class 'NetworkHTTPServer' does not conform to the 'Sendable' protocol
open class NetworkHTTPServer: NSObject, HTTPServer {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPServer.swift:63:24: warning: capture of 'self' with non-sendable type 'NetworkHTTPServer?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPServer.swift:32:12: note: class 'NetworkHTTPServer' does not conform to the 'Sendable' protocol
open class NetworkHTTPServer: NSObject, HTTPServer {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPServer.swift:167:7: warning: capture of 'self' with non-sendable type 'NetworkHTTPServer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
      self.mgrQueue.sync {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPServer.swift:32:12: note: class 'NetworkHTTPServer' does not conform to the 'Sendable' protocol
open class NetworkHTTPServer: NSObject, HTTPServer {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPServer.swift:168:46: warning: capture of 'httpConnection' with non-sendable type 'NetworkHTTPConnection' in a `@Sendable` closure; this is an error in the Swift 6 language mode
        self.connections.removeValue(forKey: httpConnection.id)
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPConnection.swift:224:20: note: class 'NetworkHTTPConnection' does not conform to the 'Sendable' protocol
public final class NetworkHTTPConnection: HTTPConnection {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPServer.swift:168:9: warning: capture of 'self' with non-sendable type 'NetworkHTTPServer' in an isolated closure; this is an error in the Swift 6 language mode
        self.connections.removeValue(forKey: httpConnection.id)
        ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPServer.swift:32:12: note: class 'NetworkHTTPServer' does not conform to the 'Sendable' protocol
open class NetworkHTTPServer: NSObject, HTTPServer {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPServer.swift:168:46: warning: capture of 'httpConnection' with non-sendable type 'NetworkHTTPConnection' in an isolated closure; this is an error in the Swift 6 language mode
        self.connections.removeValue(forKey: httpConnection.id)
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/SundayServer/HTTPConnection.swift:224:20: note: class 'NetworkHTTPConnection' does not conform to the 'Sendable' protocol
public final class NetworkHTTPConnection: HTTPConnection {
                   ^
SwiftDriverJobDiscovery normal arm64 Compiling EventSource.swift, HTTP.swift, HeaderParameters.swift, Logging.swift (in target 'Sunday' from project 'Sunday')
SwiftDriverJobDiscovery normal arm64 Compiling RoutableContentNegotiation.swift, RoutableDebug.swift (in target 'SundayServer' from project 'Sunday')
SwiftDriverJobDiscovery normal arm64 Compiling NetworkRequestAdapters.swift, NetworkRequestFactory.swift, NetworkSession.swift (in target 'Sunday' from project 'Sunday')
SwiftDriver\ Compilation Sunday normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Sunday' from project 'Sunday')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Sunday -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/Sunday.build/Objects-normal/arm64/Sunday.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CFloat16.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Cfyaml.modulemap -stats-output-dir .stats -strict-concurrency\=complete -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -target arm64-apple-macos11.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 -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/Sunday.build/Objects-normal/arm64/Sunday-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/Sunday.build/Debug/Sunday.build/Objects-normal/arm64/Sunday.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/Sunday.build/Debug/Sunday.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/Sunday.build/Objects-normal/arm64/Sunday_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-numerics/Sources/_NumericsShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Float16/Sources/CFloat16/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/PotentCodables/Sources/Cfyaml/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/Sunday.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/Sunday.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/Sunday.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/Sunday.build/Debug/Sunday.build/Objects-normal/arm64/Sunday-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Sunday.o normal (in target 'Sunday' from project 'Sunday')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos11.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/Sunday.build/Objects-normal/arm64/Sunday.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/Sunday.build/Objects-normal/arm64/Sunday_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/Sunday.build/Objects-normal/arm64/Sunday.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/Sunday.build/Objects-normal/arm64/Sunday_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Sunday.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Sunday.o (in target 'Sunday' from project 'Sunday')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Sunday.o
SwiftDriverJobDiscovery normal arm64 Compiling RoutableMethod.swift, RoutableParam.swift (in target 'SundayServer' from project 'Sunday')
SwiftDriverJobDiscovery normal arm64 Compiling RoutableRequestDecoding.swift (in target 'SundayServer' from project 'Sunday')
SwiftDriverJobDiscovery normal arm64 Emitting module for SundayServer (in target 'SundayServer' from project 'Sunday')
SwiftDriver\ Compilation\ Requirements SundayServer normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SundayServer' from project 'Sunday')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SundayServer -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CFloat16.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Cfyaml.modulemap -stats-output-dir .stats -strict-concurrency\=complete -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -target arm64-apple-macos11.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 -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer-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/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer.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/Sunday.build/Debug/SundayServer.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-numerics/Sources/_NumericsShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Float16/Sources/CFloat16/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/PotentCodables/Sources/Cfyaml/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.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/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SundayServer-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer-Swift.h (in target 'SundayServer' from project 'Sunday')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SundayServer-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SundayServer.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer.swiftmodule (in target 'SundayServer' from project 'Sunday')
    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/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SundayServer.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SundayServer.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer.swiftdoc (in target 'SundayServer' from project 'Sunday')
    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/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SundayServer.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SundayServer.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer.abi.json (in target 'SundayServer' from project 'Sunday')
    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/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SundayServer.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SundayServer.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer.swiftsourceinfo (in target 'SundayServer' from project 'Sunday')
    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/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SundayServer.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling HTTPHeaderParser.swift, HTTPRequest.swift (in target 'SundayServer' from project 'Sunday')
SwiftDriverJobDiscovery normal arm64 Compiling RoutingHTTPServer.swift (in target 'SundayServer' from project 'Sunday')
SwiftDriverJobDiscovery normal arm64 Compiling HTTPConnection.swift, HTTPExchange.swift (in target 'SundayServer' from project 'Sunday')
SwiftDriverJobDiscovery normal arm64 Compiling HTTPResponse.swift, HTTPServer.swift (in target 'SundayServer' from project 'Sunday')
SwiftDriver\ Compilation SundayServer normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SundayServer' from project 'Sunday')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SundayServer -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CFloat16.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Cfyaml.modulemap -stats-output-dir .stats -strict-concurrency\=complete -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -target arm64-apple-macos11.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 -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer-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/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer.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/Sunday.build/Debug/SundayServer.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-numerics/Sources/_NumericsShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Float16/Sources/CFloat16/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/PotentCodables/Sources/Cfyaml/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.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/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SundayServer.o normal (in target 'SundayServer' from project 'Sunday')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos11.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sunday.build/Debug/SundayServer.build/Objects-normal/arm64/SundayServer_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SundayServer.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SundayServer.o (in target 'SundayServer' from project 'Sunday')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SundayServer.o
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:0000FE00-8C151E3703BE51BE, name:My Mac }
Build complete.
{
  "dependencies" : [
    {
      "identity" : "potentcodables",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "3.2.0",
            "upper_bound" : "3.3.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/outfoxx/PotentCodables.git"
    },
    {
      "identity" : "regex",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.1.0",
            "upper_bound" : "2.2.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/sharplet/Regex.git"
    },
    {
      "identity" : "uritemplate",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.1.0",
            "upper_bound" : "2.2.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/SwiftScream/URITemplate.git"
    },
    {
      "identity" : "asyncobjects",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.1.0",
            "upper_bound" : "2.2.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/SwiftyLab/AsyncObjects.git"
    },
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    }
  ],
  "manifest_display_name" : "Sunday",
  "name" : "Sunday",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "tvos",
      "version" : "14.0"
    },
    {
      "name" : "watchos",
      "version" : "7.0"
    },
    {
      "name" : "macos",
      "version" : "11.0"
    }
  ],
  "products" : [
    {
      "name" : "Sunday",
      "targets" : [
        "Sunday"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SundayServer",
      "targets" : [
        "SundayServer"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SundayTests",
      "module_type" : "SwiftTarget",
      "name" : "SundayTests",
      "path" : "Tests/SundayTests",
      "sources" : [
        "DataTaskStreamPublisherTests.swift",
        "DateExts.swift",
        "ErrorTests.swift",
        "EventParserTests.swift",
        "EventSourceTests.swift",
        "GeneratedAPITests.swift",
        "HeaderParametersTests.swift",
        "MediaTypeCodecTests.swift",
        "MediaTypeTests.swift",
        "NetworkRequestAdapterTests.swift",
        "NetworkRequestFactoryTests.swift",
        "PatchTests.swift",
        "ProblemTests.swift",
        "ResponseDecodingTests.swift",
        "ServerTests.swift",
        "URITemplatesTests.swift",
        "URITests.swift",
        "URLRequestTests.swift",
        "WWWFormURLEncoderTests.swift",
        "XCTestCases.swift",
        "XCTestUtils.swift"
      ],
      "target_dependencies" : [
        "Sunday",
        "SundayServer"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SundayServer",
      "module_type" : "SwiftTarget",
      "name" : "SundayServer",
      "path" : "Sources/SundayServer",
      "product_memberships" : [
        "SundayServer"
      ],
      "sources" : [
        "HTTPConnection.swift",
        "HTTPExchange.swift",
        "HTTPHeaderParser.swift",
        "HTTPRequest.swift",
        "HTTPResponse.swift",
        "HTTPServer.swift",
        "Logging.swift",
        "Routable.swift",
        "RoutableContentNegotiation.swift",
        "RoutableDebug.swift",
        "RoutableMethod.swift",
        "RoutableParam.swift",
        "RoutablePath.swift",
        "RoutableQueues.swift",
        "RoutableRequestDecoding.swift",
        "RoutableResponseEncoding.swift",
        "RoutingHTTPServer.swift"
      ],
      "target_dependencies" : [
        "Sunday"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Sunday",
      "module_type" : "SwiftTarget",
      "name" : "Sunday",
      "path" : "Sources/Sunday",
      "product_dependencies" : [
        "Regex",
        "PotentCodables",
        "URITemplate",
        "AsyncObjects"
      ],
      "product_memberships" : [
        "Sunday",
        "SundayServer"
      ],
      "sources" : [
        "AnyTextMediaTypeDecodable.swift",
        "CharSets.swift",
        "CustomHeaderConvertible.swift",
        "Description.swift",
        "DispatchTimeIntervals.swift",
        "Empty.swift",
        "Errors.swift",
        "EventParser.swift",
        "EventSource.swift",
        "HTTP.swift",
        "HeaderParameters.swift",
        "Logging.swift",
        "MediaType.swift",
        "MediaTypeDecoders.swift",
        "MediaTypeEncoders.swift",
        "NetworkRequestAdapter.swift",
        "NetworkRequestAdapters.swift",
        "NetworkRequestFactory.swift",
        "NetworkSession.swift",
        "NetworkSessionDelegate.swift",
        "Patching.swift",
        "PathEncodable.swift",
        "PathEncoders.swift",
        "Problem.swift",
        "RequestFactory.swift",
        "ResponseHelpers.swift",
        "ResultResponse.swift",
        "ServerTrustPolicyManager.swift",
        "ServiceLocator.swift",
        "URI.swift",
        "URITemplate.swift",
        "URLRequests.swift",
        "URLSessionConfigurations.swift",
        "WWWFormURLEncoder.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.4"
}
Done.