Build Information
Successful build of Hyperspace, reference 5.1.0 (f3bed2
), with Swift 6.0 for macOS (Xcode) using Xcode 16.0 on 3 Nov 2024 23:19:59 UTC.
Swift 6 data race errors: 98
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Hyperspace -destination platform=macOS,arch=arm64 OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete
Build Log
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:238:16: warning: static property 'accept' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderKey' may have shared mutable state; this is an error in the Swift 6 language mode
static let accept = HTTP.HeaderKey(rawValue: "Accept")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:24:19: note: consider making struct 'HeaderKey' conform to the 'Sendable' protocol
public struct HeaderKey: RawRepresentable, Equatable, Hashable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:238:16: note: annotate 'accept' with '@MainActor' if property should only be accessed from the main actor
static let accept = HTTP.HeaderKey(rawValue: "Accept")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:238:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let accept = HTTP.HeaderKey(rawValue: "Accept")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:239:16: warning: static property 'acceptCharset' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderKey' may have shared mutable state; this is an error in the Swift 6 language mode
static let acceptCharset = HTTP.HeaderKey(rawValue: "Accept-Charset")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:24:19: note: consider making struct 'HeaderKey' conform to the 'Sendable' protocol
public struct HeaderKey: RawRepresentable, Equatable, Hashable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:239:16: note: annotate 'acceptCharset' with '@MainActor' if property should only be accessed from the main actor
static let acceptCharset = HTTP.HeaderKey(rawValue: "Accept-Charset")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:239:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let acceptCharset = HTTP.HeaderKey(rawValue: "Accept-Charset")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:240:16: warning: static property 'acceptEncoding' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderKey' may have shared mutable state; this is an error in the Swift 6 language mode
static let acceptEncoding = HTTP.HeaderKey(rawValue: "Accept-Encoding")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:24:19: note: consider making struct 'HeaderKey' conform to the 'Sendable' protocol
public struct HeaderKey: RawRepresentable, Equatable, Hashable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:240:16: note: annotate 'acceptEncoding' with '@MainActor' if property should only be accessed from the main actor
static let acceptEncoding = HTTP.HeaderKey(rawValue: "Accept-Encoding")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:240:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let acceptEncoding = HTTP.HeaderKey(rawValue: "Accept-Encoding")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:241:16: warning: static property 'acceptLanguage' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderKey' may have shared mutable state; this is an error in the Swift 6 language mode
static let acceptLanguage = HTTP.HeaderKey(rawValue: "Accept-Language")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:24:19: note: consider making struct 'HeaderKey' conform to the 'Sendable' protocol
public struct HeaderKey: RawRepresentable, Equatable, Hashable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:241:16: note: annotate 'acceptLanguage' with '@MainActor' if property should only be accessed from the main actor
static let acceptLanguage = HTTP.HeaderKey(rawValue: "Accept-Language")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:241:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let acceptLanguage = HTTP.HeaderKey(rawValue: "Accept-Language")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:242:16: warning: static property 'acceptDatetime' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderKey' may have shared mutable state; this is an error in the Swift 6 language mode
static let acceptDatetime = HTTP.HeaderKey(rawValue: "Accept-Datetime")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:24:19: note: consider making struct 'HeaderKey' conform to the 'Sendable' protocol
public struct HeaderKey: RawRepresentable, Equatable, Hashable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:242:16: note: annotate 'acceptDatetime' with '@MainActor' if property should only be accessed from the main actor
static let acceptDatetime = HTTP.HeaderKey(rawValue: "Accept-Datetime")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:242:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let acceptDatetime = HTTP.HeaderKey(rawValue: "Accept-Datetime")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:243:16: warning: static property 'authorization' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderKey' may have shared mutable state; this is an error in the Swift 6 language mode
static let authorization = HTTP.HeaderKey(rawValue: "Authorization")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:24:19: note: consider making struct 'HeaderKey' conform to the 'Sendable' protocol
public struct HeaderKey: RawRepresentable, Equatable, Hashable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:243:16: note: annotate 'authorization' with '@MainActor' if property should only be accessed from the main actor
static let authorization = HTTP.HeaderKey(rawValue: "Authorization")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:243:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let authorization = HTTP.HeaderKey(rawValue: "Authorization")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:244:16: warning: static property 'contentLength' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderKey' may have shared mutable state; this is an error in the Swift 6 language mode
static let contentLength = HTTP.HeaderKey(rawValue: "Content-Length")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:24:19: note: consider making struct 'HeaderKey' conform to the 'Sendable' protocol
public struct HeaderKey: RawRepresentable, Equatable, Hashable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:244:16: note: annotate 'contentLength' with '@MainActor' if property should only be accessed from the main actor
static let contentLength = HTTP.HeaderKey(rawValue: "Content-Length")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:244:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let contentLength = HTTP.HeaderKey(rawValue: "Content-Length")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:245:16: warning: static property 'contentMD5' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderKey' may have shared mutable state; this is an error in the Swift 6 language mode
static let contentMD5 = HTTP.HeaderKey(rawValue: "Content-MD5")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:24:19: note: consider making struct 'HeaderKey' conform to the 'Sendable' protocol
public struct HeaderKey: RawRepresentable, Equatable, Hashable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:245:16: note: annotate 'contentMD5' with '@MainActor' if property should only be accessed from the main actor
static let contentMD5 = HTTP.HeaderKey(rawValue: "Content-MD5")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:245:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let contentMD5 = HTTP.HeaderKey(rawValue: "Content-MD5")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:246:16: warning: static property 'contentType' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderKey' may have shared mutable state; this is an error in the Swift 6 language mode
static let contentType = HTTP.HeaderKey(rawValue: "Content-Type")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:24:19: note: consider making struct 'HeaderKey' conform to the 'Sendable' protocol
public struct HeaderKey: RawRepresentable, Equatable, Hashable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:246:16: note: annotate 'contentType' with '@MainActor' if property should only be accessed from the main actor
static let contentType = HTTP.HeaderKey(rawValue: "Content-Type")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:246:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let contentType = HTTP.HeaderKey(rawValue: "Content-Type")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:247:16: warning: static property 'date' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderKey' may have shared mutable state; this is an error in the Swift 6 language mode
static let date = HTTP.HeaderKey(rawValue: "Date")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:24:19: note: consider making struct 'HeaderKey' conform to the 'Sendable' protocol
public struct HeaderKey: RawRepresentable, Equatable, Hashable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:247:16: note: annotate 'date' with '@MainActor' if property should only be accessed from the main actor
static let date = HTTP.HeaderKey(rawValue: "Date")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:247:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let date = HTTP.HeaderKey(rawValue: "Date")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:248:16: warning: static property 'location' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderKey' may have shared mutable state; this is an error in the Swift 6 language mode
static let location = HTTP.HeaderKey(rawValue: "Location")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:24:19: note: consider making struct 'HeaderKey' conform to the 'Sendable' protocol
public struct HeaderKey: RawRepresentable, Equatable, Hashable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:248:16: note: annotate 'location' with '@MainActor' if property should only be accessed from the main actor
static let location = HTTP.HeaderKey(rawValue: "Location")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:248:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let location = HTTP.HeaderKey(rawValue: "Location")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:249:16: warning: static property 'retryAfter' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderKey' may have shared mutable state; this is an error in the Swift 6 language mode
static let retryAfter = HTTP.HeaderKey(rawValue: "Retry-After")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:24:19: note: consider making struct 'HeaderKey' conform to the 'Sendable' protocol
public struct HeaderKey: RawRepresentable, Equatable, Hashable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:249:16: note: annotate 'retryAfter' with '@MainActor' if property should only be accessed from the main actor
static let retryAfter = HTTP.HeaderKey(rawValue: "Retry-After")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:249:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let retryAfter = HTTP.HeaderKey(rawValue: "Retry-After")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:250:16: warning: static property 'userAgent' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderKey' may have shared mutable state; this is an error in the Swift 6 language mode
static let userAgent = HTTP.HeaderKey(rawValue: "User-Agent")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:24:19: note: consider making struct 'HeaderKey' conform to the 'Sendable' protocol
public struct HeaderKey: RawRepresentable, Equatable, Hashable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:250:16: note: annotate 'userAgent' with '@MainActor' if property should only be accessed from the main actor
static let userAgent = HTTP.HeaderKey(rawValue: "User-Agent")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:250:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let userAgent = HTTP.HeaderKey(rawValue: "User-Agent")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:255:16: warning: static property 'applicationJSON' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderValue' may have shared mutable state; this is an error in the Swift 6 language mode
static let applicationJSON = HTTP.HeaderValue(rawValue: "application/json")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:37:19: note: consider making struct 'HeaderValue' conform to the 'Sendable' protocol
public struct HeaderValue: RawRepresentable, Equatable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:255:16: note: annotate 'applicationJSON' with '@MainActor' if property should only be accessed from the main actor
static let applicationJSON = HTTP.HeaderValue(rawValue: "application/json")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:255:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let applicationJSON = HTTP.HeaderValue(rawValue: "application/json")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:256:16: warning: static property 'applicationFormURLEncoded' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderValue' may have shared mutable state; this is an error in the Swift 6 language mode
static let applicationFormURLEncoded = HTTP.HeaderValue(rawValue: "application/x-www-form-urlencoded")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:37:19: note: consider making struct 'HeaderValue' conform to the 'Sendable' protocol
public struct HeaderValue: RawRepresentable, Equatable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:256:16: note: annotate 'applicationFormURLEncoded' with '@MainActor' if property should only be accessed from the main actor
static let applicationFormURLEncoded = HTTP.HeaderValue(rawValue: "application/x-www-form-urlencoded")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:256:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let applicationFormURLEncoded = HTTP.HeaderValue(rawValue: "application/x-www-form-urlencoded")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:257:16: warning: static property 'applicationXML' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderValue' may have shared mutable state; this is an error in the Swift 6 language mode
static let applicationXML = HTTP.HeaderValue(rawValue: "application/xml")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:37:19: note: consider making struct 'HeaderValue' conform to the 'Sendable' protocol
public struct HeaderValue: RawRepresentable, Equatable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:257:16: note: annotate 'applicationXML' with '@MainActor' if property should only be accessed from the main actor
static let applicationXML = HTTP.HeaderValue(rawValue: "application/xml")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:257:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let applicationXML = HTTP.HeaderValue(rawValue: "application/xml")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:258:16: warning: static property 'multipartForm' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderValue' may have shared mutable state; this is an error in the Swift 6 language mode
static let multipartForm = HTTP.HeaderValue(rawValue: "multipart/form-data")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:37:19: note: consider making struct 'HeaderValue' conform to the 'Sendable' protocol
public struct HeaderValue: RawRepresentable, Equatable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:258:16: note: annotate 'multipartForm' with '@MainActor' if property should only be accessed from the main actor
static let multipartForm = HTTP.HeaderValue(rawValue: "multipart/form-data")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:258:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let multipartForm = HTTP.HeaderValue(rawValue: "multipart/form-data")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:259:16: warning: static property 'textPlain' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderValue' may have shared mutable state; this is an error in the Swift 6 language mode
static let textPlain = HTTP.HeaderValue(rawValue: "text/plain")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:37:19: note: consider making struct 'HeaderValue' conform to the 'Sendable' protocol
public struct HeaderValue: RawRepresentable, Equatable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:259:16: note: annotate 'textPlain' with '@MainActor' if property should only be accessed from the main actor
static let textPlain = HTTP.HeaderValue(rawValue: "text/plain")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:259:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let textPlain = HTTP.HeaderValue(rawValue: "text/plain")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:260:16: warning: static property 'imagePNG' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderValue' may have shared mutable state; this is an error in the Swift 6 language mode
static let imagePNG = HTTP.HeaderValue(rawValue: "image/png")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:37:19: note: consider making struct 'HeaderValue' conform to the 'Sendable' protocol
public struct HeaderValue: RawRepresentable, Equatable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:260:16: note: annotate 'imagePNG' with '@MainActor' if property should only be accessed from the main actor
static let imagePNG = HTTP.HeaderValue(rawValue: "image/png")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:260:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let imagePNG = HTTP.HeaderValue(rawValue: "image/png")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:261:16: warning: static property 'imageJPEG' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderValue' may have shared mutable state; this is an error in the Swift 6 language mode
static let imageJPEG = HTTP.HeaderValue(rawValue: "image/jpeg")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:37:19: note: consider making struct 'HeaderValue' conform to the 'Sendable' protocol
public struct HeaderValue: RawRepresentable, Equatable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:261:16: note: annotate 'imageJPEG' with '@MainActor' if property should only be accessed from the main actor
static let imageJPEG = HTTP.HeaderValue(rawValue: "image/jpeg")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:261:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let imageJPEG = HTTP.HeaderValue(rawValue: "image/jpeg")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:262:16: warning: static property 'imageGIF' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderValue' may have shared mutable state; this is an error in the Swift 6 language mode
static let imageGIF = HTTP.HeaderValue(rawValue: "image/gif")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:37:19: note: consider making struct 'HeaderValue' conform to the 'Sendable' protocol
public struct HeaderValue: RawRepresentable, Equatable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:262:16: note: annotate 'imageGIF' with '@MainActor' if property should only be accessed from the main actor
static let imageGIF = HTTP.HeaderValue(rawValue: "image/gif")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:262:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let imageGIF = HTTP.HeaderValue(rawValue: "image/gif")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:263:16: warning: static property 'encodingCompress' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderValue' may have shared mutable state; this is an error in the Swift 6 language mode
static let encodingCompress = HTTP.HeaderValue(rawValue: "compress")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:37:19: note: consider making struct 'HeaderValue' conform to the 'Sendable' protocol
public struct HeaderValue: RawRepresentable, Equatable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:263:16: note: annotate 'encodingCompress' with '@MainActor' if property should only be accessed from the main actor
static let encodingCompress = HTTP.HeaderValue(rawValue: "compress")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:263:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let encodingCompress = HTTP.HeaderValue(rawValue: "compress")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:264:16: warning: static property 'encodingDeflate' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderValue' may have shared mutable state; this is an error in the Swift 6 language mode
static let encodingDeflate = HTTP.HeaderValue(rawValue: "deflate")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:37:19: note: consider making struct 'HeaderValue' conform to the 'Sendable' protocol
public struct HeaderValue: RawRepresentable, Equatable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:264:16: note: annotate 'encodingDeflate' with '@MainActor' if property should only be accessed from the main actor
static let encodingDeflate = HTTP.HeaderValue(rawValue: "deflate")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:264:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let encodingDeflate = HTTP.HeaderValue(rawValue: "deflate")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:265:16: warning: static property 'encodingExi' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderValue' may have shared mutable state; this is an error in the Swift 6 language mode
static let encodingExi = HTTP.HeaderValue(rawValue: "exi")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:37:19: note: consider making struct 'HeaderValue' conform to the 'Sendable' protocol
public struct HeaderValue: RawRepresentable, Equatable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:265:16: note: annotate 'encodingExi' with '@MainActor' if property should only be accessed from the main actor
static let encodingExi = HTTP.HeaderValue(rawValue: "exi")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:265:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let encodingExi = HTTP.HeaderValue(rawValue: "exi")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:266:16: warning: static property 'encodingGzip' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderValue' may have shared mutable state; this is an error in the Swift 6 language mode
static let encodingGzip = HTTP.HeaderValue(rawValue: "gzip")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:37:19: note: consider making struct 'HeaderValue' conform to the 'Sendable' protocol
public struct HeaderValue: RawRepresentable, Equatable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:266:16: note: annotate 'encodingGzip' with '@MainActor' if property should only be accessed from the main actor
static let encodingGzip = HTTP.HeaderValue(rawValue: "gzip")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:266:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let encodingGzip = HTTP.HeaderValue(rawValue: "gzip")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:267:16: warning: static property 'encodingIdentity' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderValue' may have shared mutable state; this is an error in the Swift 6 language mode
static let encodingIdentity = HTTP.HeaderValue(rawValue: "identity")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:37:19: note: consider making struct 'HeaderValue' conform to the 'Sendable' protocol
public struct HeaderValue: RawRepresentable, Equatable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:267:16: note: annotate 'encodingIdentity' with '@MainActor' if property should only be accessed from the main actor
static let encodingIdentity = HTTP.HeaderValue(rawValue: "identity")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:267:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let encodingIdentity = HTTP.HeaderValue(rawValue: "identity")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:268:16: warning: static property 'encodingPack200Gzip' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderValue' may have shared mutable state; this is an error in the Swift 6 language mode
static let encodingPack200Gzip = HTTP.HeaderValue(rawValue: "pack200-gzip")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:37:19: note: consider making struct 'HeaderValue' conform to the 'Sendable' protocol
public struct HeaderValue: RawRepresentable, Equatable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:268:16: note: annotate 'encodingPack200Gzip' with '@MainActor' if property should only be accessed from the main actor
static let encodingPack200Gzip = HTTP.HeaderValue(rawValue: "pack200-gzip")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:268:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let encodingPack200Gzip = HTTP.HeaderValue(rawValue: "pack200-gzip")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:269:16: warning: static property 'encodingBr' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderValue' may have shared mutable state; this is an error in the Swift 6 language mode
static let encodingBr = HTTP.HeaderValue(rawValue: "br")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:37:19: note: consider making struct 'HeaderValue' conform to the 'Sendable' protocol
public struct HeaderValue: RawRepresentable, Equatable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:269:16: note: annotate 'encodingBr' with '@MainActor' if property should only be accessed from the main actor
static let encodingBr = HTTP.HeaderValue(rawValue: "br")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:269:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let encodingBr = HTTP.HeaderValue(rawValue: "br")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:270:16: warning: static property 'passKit' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderValue' may have shared mutable state; this is an error in the Swift 6 language mode
static let passKit = HTTP.HeaderValue(rawValue: "application/vnd.apple.pkpass")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:37:19: note: consider making struct 'HeaderValue' conform to the 'Sendable' protocol
public struct HeaderValue: RawRepresentable, Equatable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:270:16: note: annotate 'passKit' with '@MainActor' if property should only be accessed from the main actor
static let passKit = HTTP.HeaderValue(rawValue: "application/vnd.apple.pkpass")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:270:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let passKit = HTTP.HeaderValue(rawValue: "application/vnd.apple.pkpass")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:271:16: warning: static property 'jsonAPI' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderValue' may have shared mutable state; this is an error in the Swift 6 language mode
static let jsonAPI = HTTP.HeaderValue(rawValue: "application/vnd.api+json")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:37:19: note: consider making struct 'HeaderValue' conform to the 'Sendable' protocol
public struct HeaderValue: RawRepresentable, Equatable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:271:16: note: annotate 'jsonAPI' with '@MainActor' if property should only be accessed from the main actor
static let jsonAPI = HTTP.HeaderValue(rawValue: "application/vnd.api+json")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:271:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let jsonAPI = HTTP.HeaderValue(rawValue: "application/vnd.api+json")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:285:16: warning: static property 'ok' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.Success' may have shared mutable state; this is an error in the Swift 6 language mode
static let ok = HTTP.Status.Success(rawValue: 200)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:51:23: note: consider making struct 'Success' conform to the 'Sendable' protocol
public struct Success: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:285:16: note: annotate 'ok' with '@MainActor' if property should only be accessed from the main actor
static let ok = HTTP.Status.Success(rawValue: 200)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:285:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let ok = HTTP.Status.Success(rawValue: 200)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:286:16: warning: static property 'created' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.Success' may have shared mutable state; this is an error in the Swift 6 language mode
static let created = HTTP.Status.Success(rawValue: 201)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:51:23: note: consider making struct 'Success' conform to the 'Sendable' protocol
public struct Success: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:286:16: note: annotate 'created' with '@MainActor' if property should only be accessed from the main actor
static let created = HTTP.Status.Success(rawValue: 201)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:286:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let created = HTTP.Status.Success(rawValue: 201)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:287:16: warning: static property 'accepted' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.Success' may have shared mutable state; this is an error in the Swift 6 language mode
static let accepted = HTTP.Status.Success(rawValue: 202)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:51:23: note: consider making struct 'Success' conform to the 'Sendable' protocol
public struct Success: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:287:16: note: annotate 'accepted' with '@MainActor' if property should only be accessed from the main actor
static let accepted = HTTP.Status.Success(rawValue: 202)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:287:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let accepted = HTTP.Status.Success(rawValue: 202)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:288:16: warning: static property 'nonAuthoritativeInformation' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.Success' may have shared mutable state; this is an error in the Swift 6 language mode
static let nonAuthoritativeInformation = HTTP.Status.Success(rawValue: 203)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:51:23: note: consider making struct 'Success' conform to the 'Sendable' protocol
public struct Success: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:288:16: note: annotate 'nonAuthoritativeInformation' with '@MainActor' if property should only be accessed from the main actor
static let nonAuthoritativeInformation = HTTP.Status.Success(rawValue: 203)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:288:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let nonAuthoritativeInformation = HTTP.Status.Success(rawValue: 203)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:289:16: warning: static property 'noContent' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.Success' may have shared mutable state; this is an error in the Swift 6 language mode
static let noContent = HTTP.Status.Success(rawValue: 204)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:51:23: note: consider making struct 'Success' conform to the 'Sendable' protocol
public struct Success: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:289:16: note: annotate 'noContent' with '@MainActor' if property should only be accessed from the main actor
static let noContent = HTTP.Status.Success(rawValue: 204)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:289:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let noContent = HTTP.Status.Success(rawValue: 204)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:290:16: warning: static property 'resetContent' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.Success' may have shared mutable state; this is an error in the Swift 6 language mode
static let resetContent = HTTP.Status.Success(rawValue: 205)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:51:23: note: consider making struct 'Success' conform to the 'Sendable' protocol
public struct Success: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:290:16: note: annotate 'resetContent' with '@MainActor' if property should only be accessed from the main actor
static let resetContent = HTTP.Status.Success(rawValue: 205)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:290:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let resetContent = HTTP.Status.Success(rawValue: 205)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:291:16: warning: static property 'partialContent' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.Success' may have shared mutable state; this is an error in the Swift 6 language mode
static let partialContent = HTTP.Status.Success(rawValue: 206)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:51:23: note: consider making struct 'Success' conform to the 'Sendable' protocol
public struct Success: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:291:16: note: annotate 'partialContent' with '@MainActor' if property should only be accessed from the main actor
static let partialContent = HTTP.Status.Success(rawValue: 206)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:291:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let partialContent = HTTP.Status.Success(rawValue: 206)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:292:16: warning: static property 'multiStatus' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.Success' may have shared mutable state; this is an error in the Swift 6 language mode
static let multiStatus = HTTP.Status.Success(rawValue: 207)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:51:23: note: consider making struct 'Success' conform to the 'Sendable' protocol
public struct Success: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:292:16: note: annotate 'multiStatus' with '@MainActor' if property should only be accessed from the main actor
static let multiStatus = HTTP.Status.Success(rawValue: 207)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:292:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let multiStatus = HTTP.Status.Success(rawValue: 207)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:293:16: warning: static property 'alreadyReported' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.Success' may have shared mutable state; this is an error in the Swift 6 language mode
static let alreadyReported = HTTP.Status.Success(rawValue: 208)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:51:23: note: consider making struct 'Success' conform to the 'Sendable' protocol
public struct Success: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:293:16: note: annotate 'alreadyReported' with '@MainActor' if property should only be accessed from the main actor
static let alreadyReported = HTTP.Status.Success(rawValue: 208)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:293:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let alreadyReported = HTTP.Status.Success(rawValue: 208)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:294:16: warning: static property 'imUsed' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.Success' may have shared mutable state; this is an error in the Swift 6 language mode
static let imUsed = HTTP.Status.Success(rawValue: 226)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:51:23: note: consider making struct 'Success' conform to the 'Sendable' protocol
public struct Success: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:294:16: note: annotate 'imUsed' with '@MainActor' if property should only be accessed from the main actor
static let imUsed = HTTP.Status.Success(rawValue: 226)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:294:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let imUsed = HTTP.Status.Success(rawValue: 226)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:298:16: warning: static property 'multipleChoices' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.Redirection' may have shared mutable state; this is an error in the Swift 6 language mode
static let multipleChoices = HTTP.Status.Redirection(rawValue: 300)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:61:23: note: consider making struct 'Redirection' conform to the 'Sendable' protocol
public struct Redirection: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:298:16: note: annotate 'multipleChoices' with '@MainActor' if property should only be accessed from the main actor
static let multipleChoices = HTTP.Status.Redirection(rawValue: 300)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:298:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let multipleChoices = HTTP.Status.Redirection(rawValue: 300)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:299:16: warning: static property 'movedPermanently' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.Redirection' may have shared mutable state; this is an error in the Swift 6 language mode
static let movedPermanently = HTTP.Status.Redirection(rawValue: 301)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:61:23: note: consider making struct 'Redirection' conform to the 'Sendable' protocol
public struct Redirection: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:299:16: note: annotate 'movedPermanently' with '@MainActor' if property should only be accessed from the main actor
static let movedPermanently = HTTP.Status.Redirection(rawValue: 301)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:299:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let movedPermanently = HTTP.Status.Redirection(rawValue: 301)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:300:16: warning: static property 'found' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.Redirection' may have shared mutable state; this is an error in the Swift 6 language mode
static let found = HTTP.Status.Redirection(rawValue: 302)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:61:23: note: consider making struct 'Redirection' conform to the 'Sendable' protocol
public struct Redirection: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:300:16: note: annotate 'found' with '@MainActor' if property should only be accessed from the main actor
static let found = HTTP.Status.Redirection(rawValue: 302)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:300:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let found = HTTP.Status.Redirection(rawValue: 302)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:301:16: warning: static property 'seeOther' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.Redirection' may have shared mutable state; this is an error in the Swift 6 language mode
static let seeOther = HTTP.Status.Redirection(rawValue: 303)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:61:23: note: consider making struct 'Redirection' conform to the 'Sendable' protocol
public struct Redirection: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:301:16: note: annotate 'seeOther' with '@MainActor' if property should only be accessed from the main actor
static let seeOther = HTTP.Status.Redirection(rawValue: 303)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:301:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let seeOther = HTTP.Status.Redirection(rawValue: 303)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:302:16: warning: static property 'notModified' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.Redirection' may have shared mutable state; this is an error in the Swift 6 language mode
static let notModified = HTTP.Status.Redirection(rawValue: 304)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:61:23: note: consider making struct 'Redirection' conform to the 'Sendable' protocol
public struct Redirection: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:302:16: note: annotate 'notModified' with '@MainActor' if property should only be accessed from the main actor
static let notModified = HTTP.Status.Redirection(rawValue: 304)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:302:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let notModified = HTTP.Status.Redirection(rawValue: 304)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:303:16: warning: static property 'useProxy' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.Redirection' may have shared mutable state; this is an error in the Swift 6 language mode
static let useProxy = HTTP.Status.Redirection(rawValue: 305)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:61:23: note: consider making struct 'Redirection' conform to the 'Sendable' protocol
public struct Redirection: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:303:16: note: annotate 'useProxy' with '@MainActor' if property should only be accessed from the main actor
static let useProxy = HTTP.Status.Redirection(rawValue: 305)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:303:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let useProxy = HTTP.Status.Redirection(rawValue: 305)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:304:16: warning: static property 'switchProxy' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.Redirection' may have shared mutable state; this is an error in the Swift 6 language mode
static let switchProxy = HTTP.Status.Redirection(rawValue: 306)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:61:23: note: consider making struct 'Redirection' conform to the 'Sendable' protocol
public struct Redirection: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:304:16: note: annotate 'switchProxy' with '@MainActor' if property should only be accessed from the main actor
static let switchProxy = HTTP.Status.Redirection(rawValue: 306)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:304:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let switchProxy = HTTP.Status.Redirection(rawValue: 306)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:305:16: warning: static property 'temporaryRedirect' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.Redirection' may have shared mutable state; this is an error in the Swift 6 language mode
static let temporaryRedirect = HTTP.Status.Redirection(rawValue: 307)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:61:23: note: consider making struct 'Redirection' conform to the 'Sendable' protocol
public struct Redirection: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:305:16: note: annotate 'temporaryRedirect' with '@MainActor' if property should only be accessed from the main actor
static let temporaryRedirect = HTTP.Status.Redirection(rawValue: 307)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:305:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let temporaryRedirect = HTTP.Status.Redirection(rawValue: 307)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:306:16: warning: static property 'permanentRedirect' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.Redirection' may have shared mutable state; this is an error in the Swift 6 language mode
static let permanentRedirect = HTTP.Status.Redirection(rawValue: 308)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:61:23: note: consider making struct 'Redirection' conform to the 'Sendable' protocol
public struct Redirection: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:306:16: note: annotate 'permanentRedirect' with '@MainActor' if property should only be accessed from the main actor
static let permanentRedirect = HTTP.Status.Redirection(rawValue: 308)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:306:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let permanentRedirect = HTTP.Status.Redirection(rawValue: 308)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:310:16: warning: static property 'badRequest' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let badRequest = HTTP.Status.ClientError(rawValue: 400)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:310:16: note: annotate 'badRequest' with '@MainActor' if property should only be accessed from the main actor
static let badRequest = HTTP.Status.ClientError(rawValue: 400)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:310:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let badRequest = HTTP.Status.ClientError(rawValue: 400)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:311:16: warning: static property 'unauthorized' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let unauthorized = HTTP.Status.ClientError(rawValue: 401)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:311:16: note: annotate 'unauthorized' with '@MainActor' if property should only be accessed from the main actor
static let unauthorized = HTTP.Status.ClientError(rawValue: 401)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:311:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let unauthorized = HTTP.Status.ClientError(rawValue: 401)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:312:16: warning: static property 'paymentRequired' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let paymentRequired = HTTP.Status.ClientError(rawValue: 402)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:312:16: note: annotate 'paymentRequired' with '@MainActor' if property should only be accessed from the main actor
static let paymentRequired = HTTP.Status.ClientError(rawValue: 402)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:312:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let paymentRequired = HTTP.Status.ClientError(rawValue: 402)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:313:16: warning: static property 'forbidden' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let forbidden = HTTP.Status.ClientError(rawValue: 403)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:313:16: note: annotate 'forbidden' with '@MainActor' if property should only be accessed from the main actor
static let forbidden = HTTP.Status.ClientError(rawValue: 403)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:313:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let forbidden = HTTP.Status.ClientError(rawValue: 403)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:314:16: warning: static property 'notFound' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let notFound = HTTP.Status.ClientError(rawValue: 404)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:314:16: note: annotate 'notFound' with '@MainActor' if property should only be accessed from the main actor
static let notFound = HTTP.Status.ClientError(rawValue: 404)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:314:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let notFound = HTTP.Status.ClientError(rawValue: 404)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:315:16: warning: static property 'methodNotAllowed' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let methodNotAllowed = HTTP.Status.ClientError(rawValue: 405)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:315:16: note: annotate 'methodNotAllowed' with '@MainActor' if property should only be accessed from the main actor
static let methodNotAllowed = HTTP.Status.ClientError(rawValue: 405)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:315:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let methodNotAllowed = HTTP.Status.ClientError(rawValue: 405)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:316:16: warning: static property 'notAcceptable' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let notAcceptable = HTTP.Status.ClientError(rawValue: 406)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:316:16: note: annotate 'notAcceptable' with '@MainActor' if property should only be accessed from the main actor
static let notAcceptable = HTTP.Status.ClientError(rawValue: 406)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:316:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let notAcceptable = HTTP.Status.ClientError(rawValue: 406)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:317:16: warning: static property 'proxyAuthenticationRequired' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let proxyAuthenticationRequired = HTTP.Status.ClientError(rawValue: 407)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:317:16: note: annotate 'proxyAuthenticationRequired' with '@MainActor' if property should only be accessed from the main actor
static let proxyAuthenticationRequired = HTTP.Status.ClientError(rawValue: 407)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:317:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let proxyAuthenticationRequired = HTTP.Status.ClientError(rawValue: 407)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:318:16: warning: static property 'requestTimeout' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let requestTimeout = HTTP.Status.ClientError(rawValue: 408)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:318:16: note: annotate 'requestTimeout' with '@MainActor' if property should only be accessed from the main actor
static let requestTimeout = HTTP.Status.ClientError(rawValue: 408)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:318:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let requestTimeout = HTTP.Status.ClientError(rawValue: 408)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:319:16: warning: static property 'conflict' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let conflict = HTTP.Status.ClientError(rawValue: 409)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:319:16: note: annotate 'conflict' with '@MainActor' if property should only be accessed from the main actor
static let conflict = HTTP.Status.ClientError(rawValue: 409)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:319:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let conflict = HTTP.Status.ClientError(rawValue: 409)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:320:16: warning: static property 'gone' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let gone = HTTP.Status.ClientError(rawValue: 410)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:320:16: note: annotate 'gone' with '@MainActor' if property should only be accessed from the main actor
static let gone = HTTP.Status.ClientError(rawValue: 410)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:320:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let gone = HTTP.Status.ClientError(rawValue: 410)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:321:16: warning: static property 'lengthRequried' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let lengthRequried = HTTP.Status.ClientError(rawValue: 411)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:321:16: note: annotate 'lengthRequried' with '@MainActor' if property should only be accessed from the main actor
static let lengthRequried = HTTP.Status.ClientError(rawValue: 411)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:321:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let lengthRequried = HTTP.Status.ClientError(rawValue: 411)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:322:16: warning: static property 'preconditionFailed' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let preconditionFailed = HTTP.Status.ClientError(rawValue: 412)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:322:16: note: annotate 'preconditionFailed' with '@MainActor' if property should only be accessed from the main actor
static let preconditionFailed = HTTP.Status.ClientError(rawValue: 412)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:322:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let preconditionFailed = HTTP.Status.ClientError(rawValue: 412)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:323:16: warning: static property 'payloadTooLarge' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let payloadTooLarge = HTTP.Status.ClientError(rawValue: 413)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:323:16: note: annotate 'payloadTooLarge' with '@MainActor' if property should only be accessed from the main actor
static let payloadTooLarge = HTTP.Status.ClientError(rawValue: 413)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:323:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let payloadTooLarge = HTTP.Status.ClientError(rawValue: 413)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:324:16: warning: static property 'uriTooLong' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let uriTooLong = HTTP.Status.ClientError(rawValue: 414)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:324:16: note: annotate 'uriTooLong' with '@MainActor' if property should only be accessed from the main actor
static let uriTooLong = HTTP.Status.ClientError(rawValue: 414)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:324:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let uriTooLong = HTTP.Status.ClientError(rawValue: 414)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:325:16: warning: static property 'unsupportedMediaType' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let unsupportedMediaType = HTTP.Status.ClientError(rawValue: 415)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:325:16: note: annotate 'unsupportedMediaType' with '@MainActor' if property should only be accessed from the main actor
static let unsupportedMediaType = HTTP.Status.ClientError(rawValue: 415)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:325:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let unsupportedMediaType = HTTP.Status.ClientError(rawValue: 415)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:326:16: warning: static property 'rangeNotSatisfiable' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let rangeNotSatisfiable = HTTP.Status.ClientError(rawValue: 416)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:326:16: note: annotate 'rangeNotSatisfiable' with '@MainActor' if property should only be accessed from the main actor
static let rangeNotSatisfiable = HTTP.Status.ClientError(rawValue: 416)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:326:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let rangeNotSatisfiable = HTTP.Status.ClientError(rawValue: 416)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:327:16: warning: static property 'expectationFailed' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let expectationFailed = HTTP.Status.ClientError(rawValue: 417)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:327:16: note: annotate 'expectationFailed' with '@MainActor' if property should only be accessed from the main actor
static let expectationFailed = HTTP.Status.ClientError(rawValue: 417)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:327:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let expectationFailed = HTTP.Status.ClientError(rawValue: 417)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:328:16: warning: static property 'imATeapot' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let imATeapot = HTTP.Status.ClientError(rawValue: 418)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:328:16: note: annotate 'imATeapot' with '@MainActor' if property should only be accessed from the main actor
static let imATeapot = HTTP.Status.ClientError(rawValue: 418)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:328:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let imATeapot = HTTP.Status.ClientError(rawValue: 418)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:329:16: warning: static property 'misdirectedRequest' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let misdirectedRequest = HTTP.Status.ClientError(rawValue: 421)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:329:16: note: annotate 'misdirectedRequest' with '@MainActor' if property should only be accessed from the main actor
static let misdirectedRequest = HTTP.Status.ClientError(rawValue: 421)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:329:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let misdirectedRequest = HTTP.Status.ClientError(rawValue: 421)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:330:16: warning: static property 'unproccessableEntity' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let unproccessableEntity = HTTP.Status.ClientError(rawValue: 422)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:330:16: note: annotate 'unproccessableEntity' with '@MainActor' if property should only be accessed from the main actor
static let unproccessableEntity = HTTP.Status.ClientError(rawValue: 422)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:330:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let unproccessableEntity = HTTP.Status.ClientError(rawValue: 422)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:331:16: warning: static property 'locked' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let locked = HTTP.Status.ClientError(rawValue: 423)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:331:16: note: annotate 'locked' with '@MainActor' if property should only be accessed from the main actor
static let locked = HTTP.Status.ClientError(rawValue: 423)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:331:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let locked = HTTP.Status.ClientError(rawValue: 423)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:332:16: warning: static property 'failedDependency' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let failedDependency = HTTP.Status.ClientError(rawValue: 424)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:332:16: note: annotate 'failedDependency' with '@MainActor' if property should only be accessed from the main actor
static let failedDependency = HTTP.Status.ClientError(rawValue: 424)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:332:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let failedDependency = HTTP.Status.ClientError(rawValue: 424)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:333:16: warning: static property 'upgradeRequired' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let upgradeRequired = HTTP.Status.ClientError(rawValue: 426)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:333:16: note: annotate 'upgradeRequired' with '@MainActor' if property should only be accessed from the main actor
static let upgradeRequired = HTTP.Status.ClientError(rawValue: 426)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:333:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let upgradeRequired = HTTP.Status.ClientError(rawValue: 426)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:334:16: warning: static property 'preconditionRequired' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let preconditionRequired = HTTP.Status.ClientError(rawValue: 428)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:334:16: note: annotate 'preconditionRequired' with '@MainActor' if property should only be accessed from the main actor
static let preconditionRequired = HTTP.Status.ClientError(rawValue: 428)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:334:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let preconditionRequired = HTTP.Status.ClientError(rawValue: 428)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:335:16: warning: static property 'tooManyRequests' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let tooManyRequests = HTTP.Status.ClientError(rawValue: 429)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:335:16: note: annotate 'tooManyRequests' with '@MainActor' if property should only be accessed from the main actor
static let tooManyRequests = HTTP.Status.ClientError(rawValue: 429)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:335:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let tooManyRequests = HTTP.Status.ClientError(rawValue: 429)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:336:16: warning: static property 'requestHeaderFieldsTooLarge' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let requestHeaderFieldsTooLarge = HTTP.Status.ClientError(rawValue: 431)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:336:16: note: annotate 'requestHeaderFieldsTooLarge' with '@MainActor' if property should only be accessed from the main actor
static let requestHeaderFieldsTooLarge = HTTP.Status.ClientError(rawValue: 431)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:336:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let requestHeaderFieldsTooLarge = HTTP.Status.ClientError(rawValue: 431)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:337:16: warning: static property 'unavailableForLegalReasons' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let unavailableForLegalReasons = HTTP.Status.ClientError(rawValue: 451)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:337:16: note: annotate 'unavailableForLegalReasons' with '@MainActor' if property should only be accessed from the main actor
static let unavailableForLegalReasons = HTTP.Status.ClientError(rawValue: 451)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:337:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let unavailableForLegalReasons = HTTP.Status.ClientError(rawValue: 451)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:341:16: warning: static property 'internalServerError' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ServerError' may have shared mutable state; this is an error in the Swift 6 language mode
static let internalServerError = HTTP.Status.ServerError(rawValue: 500)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:81:23: note: consider making struct 'ServerError' conform to the 'Sendable' protocol
public struct ServerError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:341:16: note: annotate 'internalServerError' with '@MainActor' if property should only be accessed from the main actor
static let internalServerError = HTTP.Status.ServerError(rawValue: 500)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:341:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let internalServerError = HTTP.Status.ServerError(rawValue: 500)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:342:16: warning: static property 'notImplemented' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ServerError' may have shared mutable state; this is an error in the Swift 6 language mode
static let notImplemented = HTTP.Status.ServerError(rawValue: 501)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:81:23: note: consider making struct 'ServerError' conform to the 'Sendable' protocol
public struct ServerError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:342:16: note: annotate 'notImplemented' with '@MainActor' if property should only be accessed from the main actor
static let notImplemented = HTTP.Status.ServerError(rawValue: 501)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:342:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let notImplemented = HTTP.Status.ServerError(rawValue: 501)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:343:16: warning: static property 'badGateway' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ServerError' may have shared mutable state; this is an error in the Swift 6 language mode
static let badGateway = HTTP.Status.ServerError(rawValue: 502)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:81:23: note: consider making struct 'ServerError' conform to the 'Sendable' protocol
public struct ServerError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:343:16: note: annotate 'badGateway' with '@MainActor' if property should only be accessed from the main actor
static let badGateway = HTTP.Status.ServerError(rawValue: 502)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:343:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let badGateway = HTTP.Status.ServerError(rawValue: 502)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:344:16: warning: static property 'serviceUnavailable' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ServerError' may have shared mutable state; this is an error in the Swift 6 language mode
static let serviceUnavailable = HTTP.Status.ServerError(rawValue: 503)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:81:23: note: consider making struct 'ServerError' conform to the 'Sendable' protocol
public struct ServerError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:344:16: note: annotate 'serviceUnavailable' with '@MainActor' if property should only be accessed from the main actor
static let serviceUnavailable = HTTP.Status.ServerError(rawValue: 503)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:344:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let serviceUnavailable = HTTP.Status.ServerError(rawValue: 503)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:345:16: warning: static property 'gatewayTimeout' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ServerError' may have shared mutable state; this is an error in the Swift 6 language mode
static let gatewayTimeout = HTTP.Status.ServerError(rawValue: 504)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:81:23: note: consider making struct 'ServerError' conform to the 'Sendable' protocol
public struct ServerError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:345:16: note: annotate 'gatewayTimeout' with '@MainActor' if property should only be accessed from the main actor
static let gatewayTimeout = HTTP.Status.ServerError(rawValue: 504)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:345:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let gatewayTimeout = HTTP.Status.ServerError(rawValue: 504)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:346:16: warning: static property 'httpVersionNotSupported' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ServerError' may have shared mutable state; this is an error in the Swift 6 language mode
static let httpVersionNotSupported = HTTP.Status.ServerError(rawValue: 505)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:81:23: note: consider making struct 'ServerError' conform to the 'Sendable' protocol
public struct ServerError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:346:16: note: annotate 'httpVersionNotSupported' with '@MainActor' if property should only be accessed from the main actor
static let httpVersionNotSupported = HTTP.Status.ServerError(rawValue: 505)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:346:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let httpVersionNotSupported = HTTP.Status.ServerError(rawValue: 505)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:347:16: warning: static property 'variantAlsoNegotiates' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ServerError' may have shared mutable state; this is an error in the Swift 6 language mode
static let variantAlsoNegotiates = HTTP.Status.ServerError(rawValue: 506)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:81:23: note: consider making struct 'ServerError' conform to the 'Sendable' protocol
public struct ServerError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:347:16: note: annotate 'variantAlsoNegotiates' with '@MainActor' if property should only be accessed from the main actor
static let variantAlsoNegotiates = HTTP.Status.ServerError(rawValue: 506)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:347:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let variantAlsoNegotiates = HTTP.Status.ServerError(rawValue: 506)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:348:16: warning: static property 'insufficientStorage' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ServerError' may have shared mutable state; this is an error in the Swift 6 language mode
static let insufficientStorage = HTTP.Status.ServerError(rawValue: 507)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:81:23: note: consider making struct 'ServerError' conform to the 'Sendable' protocol
public struct ServerError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:348:16: note: annotate 'insufficientStorage' with '@MainActor' if property should only be accessed from the main actor
static let insufficientStorage = HTTP.Status.ServerError(rawValue: 507)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:348:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let insufficientStorage = HTTP.Status.ServerError(rawValue: 507)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:349:16: warning: static property 'loopDetected' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ServerError' may have shared mutable state; this is an error in the Swift 6 language mode
static let loopDetected = HTTP.Status.ServerError(rawValue: 508)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:81:23: note: consider making struct 'ServerError' conform to the 'Sendable' protocol
public struct ServerError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:349:16: note: annotate 'loopDetected' with '@MainActor' if property should only be accessed from the main actor
static let loopDetected = HTTP.Status.ServerError(rawValue: 508)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:349:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let loopDetected = HTTP.Status.ServerError(rawValue: 508)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:350:16: warning: static property 'notExtended' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ServerError' may have shared mutable state; this is an error in the Swift 6 language mode
static let notExtended = HTTP.Status.ServerError(rawValue: 510)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:81:23: note: consider making struct 'ServerError' conform to the 'Sendable' protocol
public struct ServerError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:350:16: note: annotate 'notExtended' with '@MainActor' if property should only be accessed from the main actor
static let notExtended = HTTP.Status.ServerError(rawValue: 510)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:350:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let notExtended = HTTP.Status.ServerError(rawValue: 510)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:351:16: warning: static property 'networkAuthenticationRequired' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ServerError' may have shared mutable state; this is an error in the Swift 6 language mode
static let networkAuthenticationRequired = HTTP.Status.ServerError(rawValue: 511)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:81:23: note: consider making struct 'ServerError' conform to the 'Sendable' protocol
public struct ServerError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:351:16: note: annotate 'networkAuthenticationRequired' with '@MainActor' if property should only be accessed from the main actor
static let networkAuthenticationRequired = HTTP.Status.ServerError(rawValue: 511)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:351:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let networkAuthenticationRequired = HTTP.Status.ServerError(rawValue: 511)
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+Decodable.swift (in target 'Hyperspace' from project 'Hyperspace')
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/Extensions/Coding/JSONCoder+Container.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/URL+Additions.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body+URLForm.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+Decodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+EmptyDecodingStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.URLRequestCreationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendService.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendServicing.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/NetworkActivityController.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/PreparationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/RecoveryStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/Transporting.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Request+Decodable.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Request+Decodable.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Request+Decodable.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Request+Decodable.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 -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/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace_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 -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/Hyperspace.build/Debug/Hyperspace.build/swift-overrides.hmap -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/Hyperspace.build/Debug/Hyperspace.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Hyperspace -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/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Request+Decodable.o -index-unit-output-path /Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.o -index-unit-output-path /Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Request+Decodable.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:166:23: warning: static property 'defaultCachePolicy' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var defaultCachePolicy: URLRequest.CachePolicy = .useProtocolCachePolicy
^
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:166:23: note: convert 'defaultCachePolicy' to a 'let' constant to make 'Sendable' shared state immutable
public static var defaultCachePolicy: URLRequest.CachePolicy = .useProtocolCachePolicy
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:166:23: note: annotate 'defaultCachePolicy' with '@MainActor' if property should only be accessed from the main actor
public static var defaultCachePolicy: URLRequest.CachePolicy = .useProtocolCachePolicy
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:166:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var defaultCachePolicy: URLRequest.CachePolicy = .useProtocolCachePolicy
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:169:23: warning: static property 'defaultTimeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var defaultTimeout: TimeInterval = 60
^
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:169:23: note: convert 'defaultTimeout' to a 'let' constant to make 'Sendable' shared state immutable
public static var defaultTimeout: TimeInterval = 60
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:169:23: note: annotate 'defaultTimeout' with '@MainActor' if property should only be accessed from the main actor
public static var defaultTimeout: TimeInterval = 60
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:169:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var defaultTimeout: TimeInterval = 60
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:167:23: warning: static property 'defaultDecoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var defaultDecoder: JSONDecoder = JSONDecoder()
^
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:167:23: note: convert 'defaultDecoder' to a 'let' constant to make 'Sendable' shared state immutable
public static var defaultDecoder: JSONDecoder = JSONDecoder()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:167:23: note: annotate 'defaultDecoder' with '@MainActor' if property should only be accessed from the main actor
public static var defaultDecoder: JSONDecoder = JSONDecoder()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:167:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var defaultDecoder: JSONDecoder = JSONDecoder()
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ HTTP.Body+URLForm.swift,\ HTTP.Body.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body+URLForm.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body.swift (in target 'Hyperspace' from project 'Hyperspace')
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/Extensions/Coding/JSONCoder+Container.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/URL+Additions.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body+URLForm.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+Decodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+EmptyDecodingStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.URLRequestCreationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendService.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendServicing.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/NetworkActivityController.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/PreparationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/RecoveryStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/Transporting.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body.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 -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/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace_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 -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/Hyperspace.build/Debug/Hyperspace.build/swift-overrides.hmap -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/Hyperspace.build/Debug/Hyperspace.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Hyperspace -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/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body.o -index-unit-output-path /Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.o -index-unit-output-path /Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body.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/HTTP/HTTP.Body+URLForm.swift (in target 'Hyperspace' from project 'Hyperspace')
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/Extensions/Coding/JSONCoder+Container.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/URL+Additions.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body+URLForm.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+Decodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+EmptyDecodingStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.URLRequestCreationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendService.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendServicing.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/NetworkActivityController.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/PreparationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/RecoveryStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/Transporting.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body.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 -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/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace_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 -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/Hyperspace.build/Debug/Hyperspace.build/swift-overrides.hmap -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/Hyperspace.build/Debug/Hyperspace.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Hyperspace -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/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body.o -index-unit-output-path /Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.o -index-unit-output-path /Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:246:16: warning: static property 'contentType' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderKey' may have shared mutable state; this is an error in the Swift 6 language mode
static let contentType = HTTP.HeaderKey(rawValue: "Content-Type")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:24:19: note: consider making struct 'HeaderKey' conform to the 'Sendable' protocol
public struct HeaderKey: RawRepresentable, Equatable, Hashable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:246:16: note: annotate 'contentType' with '@MainActor' if property should only be accessed from the main actor
static let contentType = HTTP.HeaderKey(rawValue: "Content-Type")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:246:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let contentType = HTTP.HeaderKey(rawValue: "Content-Type")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:256:16: warning: static property 'applicationFormURLEncoded' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderValue' may have shared mutable state; this is an error in the Swift 6 language mode
static let applicationFormURLEncoded = HTTP.HeaderValue(rawValue: "application/x-www-form-urlencoded")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:37:19: note: consider making struct 'HeaderValue' conform to the 'Sendable' protocol
public struct HeaderValue: RawRepresentable, Equatable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:256:16: note: annotate 'applicationFormURLEncoded' with '@MainActor' if property should only be accessed from the main actor
static let applicationFormURLEncoded = HTTP.HeaderValue(rawValue: "application/x-www-form-urlencoded")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:256:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let applicationFormURLEncoded = HTTP.HeaderValue(rawValue: "application/x-www-form-urlencoded")
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body.swift (in target 'Hyperspace' from project 'Hyperspace')
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/Extensions/Coding/JSONCoder+Container.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/URL+Additions.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body+URLForm.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+Decodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+EmptyDecodingStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.URLRequestCreationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendService.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendServicing.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/NetworkActivityController.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/PreparationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/RecoveryStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/Transporting.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body.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 -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/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace_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 -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/Hyperspace.build/Debug/Hyperspace.build/swift-overrides.hmap -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/Hyperspace.build/Debug/Hyperspace.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Hyperspace -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/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body.o -index-unit-output-path /Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.o -index-unit-output-path /Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/HTTP.Body.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:255:16: warning: static property 'applicationJSON' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderValue' may have shared mutable state; this is an error in the Swift 6 language mode
static let applicationJSON = HTTP.HeaderValue(rawValue: "application/json")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:37:19: note: consider making struct 'HeaderValue' conform to the 'Sendable' protocol
public struct HeaderValue: RawRepresentable, Equatable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:255:16: note: annotate 'applicationJSON' with '@MainActor' if property should only be accessed from the main actor
static let applicationJSON = HTTP.HeaderValue(rawValue: "application/json")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:255:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let applicationJSON = HTTP.HeaderValue(rawValue: "application/json")
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Emitting module for Hyperspace (in target 'Hyperspace' from project 'Hyperspace')
SwiftCompile normal arm64 Compiling\ PreparationStrategy.swift,\ RecoveryStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/PreparationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/RecoveryStrategy.swift (in target 'Hyperspace' from project 'Hyperspace')
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/Extensions/Coding/JSONCoder+Container.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/URL+Additions.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body+URLForm.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+Decodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+EmptyDecodingStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.URLRequestCreationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendService.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendServicing.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/NetworkActivityController.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/PreparationStrategy.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/RecoveryStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/Transporting.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/PreparationStrategy.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/PreparationStrategy.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/PreparationStrategy.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/PreparationStrategy.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/RecoveryStrategy.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/RecoveryStrategy.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/RecoveryStrategy.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/RecoveryStrategy.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 -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/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace_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 -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/Hyperspace.build/Debug/Hyperspace.build/swift-overrides.hmap -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/Hyperspace.build/Debug/Hyperspace.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Hyperspace -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/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/PreparationStrategy.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/RecoveryStrategy.o -index-unit-output-path /Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/PreparationStrategy.o -index-unit-output-path /Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/RecoveryStrategy.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/Service/Peripheral/PreparationStrategy.swift (in target 'Hyperspace' from project 'Hyperspace')
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/Extensions/Coding/JSONCoder+Container.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/URL+Additions.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body+URLForm.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+Decodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+EmptyDecodingStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.URLRequestCreationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendService.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendServicing.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/NetworkActivityController.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/PreparationStrategy.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/RecoveryStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/Transporting.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/PreparationStrategy.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/PreparationStrategy.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/PreparationStrategy.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/PreparationStrategy.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/RecoveryStrategy.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/RecoveryStrategy.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/RecoveryStrategy.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/RecoveryStrategy.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 -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/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace_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 -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/Hyperspace.build/Debug/Hyperspace.build/swift-overrides.hmap -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/Hyperspace.build/Debug/Hyperspace.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Hyperspace -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/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/PreparationStrategy.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/RecoveryStrategy.o -index-unit-output-path /Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/PreparationStrategy.o -index-unit-output-path /Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/RecoveryStrategy.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/Service/Peripheral/RecoveryStrategy.swift (in target 'Hyperspace' from project 'Hyperspace')
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/Extensions/Coding/JSONCoder+Container.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/URL+Additions.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body+URLForm.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+Decodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+EmptyDecodingStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.URLRequestCreationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendService.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendServicing.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/NetworkActivityController.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/PreparationStrategy.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/RecoveryStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/Transporting.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/PreparationStrategy.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/PreparationStrategy.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/PreparationStrategy.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/PreparationStrategy.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/RecoveryStrategy.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/RecoveryStrategy.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/RecoveryStrategy.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/RecoveryStrategy.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 -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/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace_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 -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/Hyperspace.build/Debug/Hyperspace.build/swift-overrides.hmap -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/Hyperspace.build/Debug/Hyperspace.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Hyperspace -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/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/PreparationStrategy.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/RecoveryStrategy.o -index-unit-output-path /Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/PreparationStrategy.o -index-unit-output-path /Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/RecoveryStrategy.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:344:16: warning: static property 'serviceUnavailable' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ServerError' may have shared mutable state; this is an error in the Swift 6 language mode
static let serviceUnavailable = HTTP.Status.ServerError(rawValue: 503)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:81:23: note: consider making struct 'ServerError' conform to the 'Sendable' protocol
public struct ServerError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:344:16: note: annotate 'serviceUnavailable' with '@MainActor' if property should only be accessed from the main actor
static let serviceUnavailable = HTTP.Status.ServerError(rawValue: 503)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:344:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let serviceUnavailable = HTTP.Status.ServerError(rawValue: 503)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:249:16: warning: static property 'retryAfter' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderKey' may have shared mutable state; this is an error in the Swift 6 language mode
static let retryAfter = HTTP.HeaderKey(rawValue: "Retry-After")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:24:19: note: consider making struct 'HeaderKey' conform to the 'Sendable' protocol
public struct HeaderKey: RawRepresentable, Equatable, Hashable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:249:16: note: annotate 'retryAfter' with '@MainActor' if property should only be accessed from the main actor
static let retryAfter = HTTP.HeaderKey(rawValue: "Retry-After")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:249:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let retryAfter = HTTP.HeaderKey(rawValue: "Retry-After")
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling TransportSession.swift (in target 'Hyperspace' from project 'Hyperspace')
SwiftDriver\ Compilation\ Requirements Hyperspace normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Hyperspace' from project 'Hyperspace')
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 Hyperspace -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -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 -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/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace-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/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace.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/Hyperspace.build/Debug/Hyperspace.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace_const_extract_protocols.json -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/Hyperspace.build/Debug/Hyperspace.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.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/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace-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/Hyperspace-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace-Swift.h (in target 'Hyperspace' from project 'Hyperspace')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Hyperspace-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Hyperspace.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace.swiftmodule (in target 'Hyperspace' from project 'Hyperspace')
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/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Hyperspace.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Hyperspace.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace.swiftdoc (in target 'Hyperspace' from project 'Hyperspace')
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/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Hyperspace.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Hyperspace.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace.abi.json (in target 'Hyperspace' from project 'Hyperspace')
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/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Hyperspace.swiftmodule/arm64-apple-macos.abi.json
SwiftDriverJobDiscovery normal arm64 Compiling HTTP.Body+URLForm.swift, HTTP.Body.swift (in target 'Hyperspace' from project 'Hyperspace')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Hyperspace.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace.swiftsourceinfo (in target 'Hyperspace' from project 'Hyperspace')
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/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Hyperspace.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling BackendServicing.swift, NetworkActivityController.swift (in target 'Hyperspace' from project 'Hyperspace')
SwiftDriverJobDiscovery normal arm64 Compiling TransportResult.swift (in target 'Hyperspace' from project 'Hyperspace')
SwiftDriverJobDiscovery normal arm64 Compiling Request.swift, BackendService.swift (in target 'Hyperspace' from project 'Hyperspace')
SwiftDriverJobDiscovery normal arm64 Compiling PreparationStrategy.swift, RecoveryStrategy.swift (in target 'Hyperspace' from project 'Hyperspace')
SwiftDriverJobDiscovery normal arm64 Compiling JSONCoder+Container.swift, URL+Additions.swift (in target 'Hyperspace' from project 'Hyperspace')
SwiftDriverJobDiscovery normal arm64 Compiling Request+EmptyDecodingStrategy.swift, Request.URLRequestCreationStrategy.swift (in target 'Hyperspace' from project 'Hyperspace')
SwiftDriverJobDiscovery normal arm64 Compiling Transporting.swift (in target 'Hyperspace' from project 'Hyperspace')
SwiftDriverJobDiscovery normal arm64 Compiling HTTP.swift, Request+Decodable.swift (in target 'Hyperspace' from project 'Hyperspace')
SwiftDriver\ Compilation Hyperspace normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Hyperspace' from project 'Hyperspace')
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 Hyperspace -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -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 -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/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace-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/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace.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/Hyperspace.build/Debug/Hyperspace.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace_const_extract_protocols.json -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/Hyperspace.build/Debug/Hyperspace.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.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/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace-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/Hyperspace.o normal (in target 'Hyperspace' from project 'Hyperspace')
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 -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/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace_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/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug/Hyperspace.build/Objects-normal/arm64/Hyperspace_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Hyperspace.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Hyperspace.o (in target 'Hyperspace' from project 'Hyperspace')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Hyperspace.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" : [
],
"manifest_display_name" : "Hyperspace",
"name" : "Hyperspace",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "11.0"
},
{
"name" : "maccatalyst",
"version" : "13.0"
},
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "6.0"
}
],
"products" : [
{
"name" : "Hyperspace",
"targets" : [
"Hyperspace"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "HyperspaceTests",
"module_type" : "SwiftTarget",
"name" : "HyperspaceTests",
"path" : "Tests",
"sources" : [
"BackendServiceTests.swift",
"Coding/DecodingTests.swift",
"Coding/EmptyDecodingStrategyTests.swift",
"Coding/EncodingTests.swift",
"Helper/Mocks/MockBackendService.swift",
"Helper/Mocks/MockCodableContainer.swift",
"Helper/Mocks/MockTransportService.swift",
"Helper/Mocks/MockTransportSession.swift",
"Helper/Request+Mock.swift",
"Helper/Test Defaults/RequestTestDefaults.swift",
"Helper/Test Defaults/TestDecodingError.swift",
"Helper/XCTest+Async.swift",
"Helper/XCTestCase+JSON.swift",
"Peripheral/NetworkActivityControllerTests.swift",
"Peripheral/PreparationStrategyTests.swift",
"Peripheral/RecoveryStrategyTests.swift",
"Request/HTTPTests.swift",
"Request/RequestTests.swift",
"TransportServiceTests.swift",
"URLFormEncoderTests.swift",
"URLQueryParameterTests.swift"
],
"target_dependencies" : [
"Hyperspace"
],
"type" : "test"
},
{
"c99name" : "Hyperspace",
"module_type" : "SwiftTarget",
"name" : "Hyperspace",
"path" : "Sources",
"product_memberships" : [
"Hyperspace"
],
"sources" : [
"Extensions/Coding/JSONCoder+Container.swift",
"Extensions/URL+Additions.swift",
"HTTP/HTTP.Body+URLForm.swift",
"HTTP/HTTP.Body.swift",
"HTTP/HTTP.swift",
"Request/Request+Decodable.swift",
"Request/Request+EmptyDecodingStrategy.swift",
"Request/Request.URLRequestCreationStrategy.swift",
"Request/Request.swift",
"Service/Backend/BackendService.swift",
"Service/Backend/BackendServicing.swift",
"Service/Peripheral/NetworkActivityController.swift",
"Service/Peripheral/PreparationStrategy.swift",
"Service/Peripheral/RecoveryStrategy.swift",
"Service/Transport/TransportResult.swift",
"Service/Transport/TransportSession.swift",
"Service/Transport/Transporting.swift"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
Done.