Build Information
Successful build of Hyperspace with Swift 6.0 for iOS using Xcode 16.0.
Swift 6 data race errors: 98
Build Command
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme Hyperspace -destination generic/platform=ios OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete
Build Log
^
, 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
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/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-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/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-iphoneos/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-iphoneos/Hyperspace.build/Objects-normal/arm64/Request+Decodable.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request+Decodable.dia -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Hyperspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request+Decodable.o -index-unit-output-path /Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.o -index-unit-output-path /Hyperspace.build/Debug-iphoneos/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 non-isolated 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 non-isolated 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 non-isolated 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\ Request+EmptyDecodingStrategy.swift,\ Request.URLRequestCreationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+EmptyDecodingStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.URLRequestCreationStrategy.swift (in target 'Hyperspace' from project 'Hyperspace')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+EmptyDecodingStrategy.swift -primary-file /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-iphoneos/Hyperspace.build/Objects-normal/arm64/Request+EmptyDecodingStrategy.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request+EmptyDecodingStrategy.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request+EmptyDecodingStrategy.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request+EmptyDecodingStrategy.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request.URLRequestCreationStrategy.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request.URLRequestCreationStrategy.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request.URLRequestCreationStrategy.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request.URLRequestCreationStrategy.dia -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Hyperspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request+EmptyDecodingStrategy.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request.URLRequestCreationStrategy.o -index-unit-output-path /Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request+EmptyDecodingStrategy.o -index-unit-output-path /Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request.URLRequestCreationStrategy.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/Request/Request+EmptyDecodingStrategy.swift (in target 'Hyperspace' from project 'Hyperspace')
cd /Users/admin/builder/spi-builder-workspace
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+EmptyDecodingStrategy.swift -primary-file /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-iphoneos/Hyperspace.build/Objects-normal/arm64/Request+EmptyDecodingStrategy.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request+EmptyDecodingStrategy.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request+EmptyDecodingStrategy.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request+EmptyDecodingStrategy.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request.URLRequestCreationStrategy.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request.URLRequestCreationStrategy.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request.URLRequestCreationStrategy.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request.URLRequestCreationStrategy.dia -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Hyperspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request+EmptyDecodingStrategy.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request.URLRequestCreationStrategy.o -index-unit-output-path /Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request+EmptyDecodingStrategy.o -index-unit-output-path /Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request.URLRequestCreationStrategy.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 non-isolated 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 non-isolated 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)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.URLRequestCreationStrategy.swift (in target 'Hyperspace' from project 'Hyperspace')
cd /Users/admin/builder/spi-builder-workspace
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+EmptyDecodingStrategy.swift -primary-file /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-iphoneos/Hyperspace.build/Objects-normal/arm64/Request+EmptyDecodingStrategy.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request+EmptyDecodingStrategy.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request+EmptyDecodingStrategy.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request+EmptyDecodingStrategy.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request.URLRequestCreationStrategy.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request.URLRequestCreationStrategy.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request.URLRequestCreationStrategy.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request.URLRequestCreationStrategy.dia -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Hyperspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request+EmptyDecodingStrategy.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request.URLRequestCreationStrategy.o -index-unit-output-path /Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request+EmptyDecodingStrategy.o -index-unit-output-path /Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Request.URLRequestCreationStrategy.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ TransportResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportResult.swift (in target 'Hyperspace' from project 'Hyperspace')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/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 /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/PreparationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/RecoveryStrategy.swift -primary-file /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-iphoneos/Hyperspace.build/Objects-normal/arm64/TransportResult.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/TransportResult.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/TransportResult.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/TransportResult.dia -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Hyperspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/TransportResult.o -index-unit-output-path /Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/TransportResult.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/Transport/TransportResult.swift (in target 'Hyperspace' from project 'Hyperspace')
cd /Users/admin/builder/spi-builder-workspace
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/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 /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/PreparationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/RecoveryStrategy.swift -primary-file /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-iphoneos/Hyperspace.build/Objects-normal/arm64/TransportResult.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/TransportResult.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/TransportResult.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/TransportResult.dia -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Hyperspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/TransportResult.o -index-unit-output-path /Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/TransportResult.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportResult.swift:37:16: warning: stored property 'kind' of 'Sendable'-conforming struct 'TransportFailure' has non-sendable type 'TransportFailure.Kind'; this is an error in the Swift 6 language mode
public let kind: Kind
^
/Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportResult.swift:29:17: note: consider making enum 'Kind' conform to the 'Sendable' protocol
public enum Kind: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportResult.swift:38:16: warning: stored property 'request' of 'Sendable'-conforming struct 'TransportFailure' has non-sendable type 'HTTP.Request'; this is an error in the Swift 6 language mode
public let request: HTTP.Request
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:124:19: note: consider making struct 'Request' conform to the 'Sendable' protocol
public struct Request: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportResult.swift:39:16: warning: stored property 'response' of 'Sendable'-conforming struct 'TransportFailure' has non-sendable type 'HTTP.Response?'; this is an error in the Swift 6 language mode
public let response: HTTP.Response?
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:162:19: note: consider making struct 'Response' conform to the 'Sendable' protocol
public struct Response: Equatable {
^
, Sendable
SwiftDriverJobDiscovery normal arm64 Emitting module for Hyperspace (in target 'Hyperspace' from project 'Hyperspace')
SwiftCompile normal arm64 Compiling\ JSONCoder+Container.swift,\ URL+Additions.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/Coding/JSONCoder+Container.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/URL+Additions.swift (in target 'Hyperspace' from project 'Hyperspace')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Extensions/Coding/JSONCoder+Container.swift -primary-file /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 /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-iphoneos/Hyperspace.build/Objects-normal/arm64/JSONCoder+Container.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/JSONCoder+Container.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/JSONCoder+Container.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/JSONCoder+Container.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/URL+Additions.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/URL+Additions.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/URL+Additions.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/URL+Additions.dia -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Hyperspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/JSONCoder+Container.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/URL+Additions.o -index-unit-output-path /Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/JSONCoder+Container.o -index-unit-output-path /Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/URL+Additions.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/Extensions/Coding/JSONCoder+Container.swift (in target 'Hyperspace' from project 'Hyperspace')
cd /Users/admin/builder/spi-builder-workspace
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Extensions/Coding/JSONCoder+Container.swift -primary-file /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 /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-iphoneos/Hyperspace.build/Objects-normal/arm64/JSONCoder+Container.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/JSONCoder+Container.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/JSONCoder+Container.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/JSONCoder+Container.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/URL+Additions.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/URL+Additions.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/URL+Additions.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/URL+Additions.dia -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Hyperspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/JSONCoder+Container.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/URL+Additions.o -index-unit-output-path /Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/JSONCoder+Container.o -index-unit-output-path /Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/URL+Additions.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/Extensions/URL+Additions.swift (in target 'Hyperspace' from project 'Hyperspace')
cd /Users/admin/builder/spi-builder-workspace
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Extensions/Coding/JSONCoder+Container.swift -primary-file /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 /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-iphoneos/Hyperspace.build/Objects-normal/arm64/JSONCoder+Container.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/JSONCoder+Container.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/JSONCoder+Container.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/JSONCoder+Container.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/URL+Additions.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/URL+Additions.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/URL+Additions.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/URL+Additions.dia -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Hyperspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/JSONCoder+Container.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/URL+Additions.o -index-unit-output-path /Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/JSONCoder+Container.o -index-unit-output-path /Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/URL+Additions.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
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
builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name Hyperspace -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/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-iphoneos/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-iphoneos/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-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/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-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling TransportResult.swift (in target 'Hyperspace' from project 'Hyperspace')
SwiftDriverJobDiscovery normal arm64 Compiling BackendServicing.swift, NetworkActivityController.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 HTTP.Body+URLForm.swift, HTTP.Body.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 Request.swift, BackendService.swift (in target 'Hyperspace' from project 'Hyperspace')
SwiftDriverJobDiscovery normal arm64 Compiling Transporting.swift (in target 'Hyperspace' from project 'Hyperspace')
SwiftDriverJobDiscovery normal arm64 Compiling TransportSession.swift (in target 'Hyperspace' from project 'Hyperspace')
SwiftDriverJobDiscovery normal arm64 Compiling HTTP.swift, Request+Decodable.swift (in target 'Hyperspace' from project 'Hyperspace')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/Hyperspace-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/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-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/Hyperspace-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Hyperspace.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/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-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Hyperspace.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Hyperspace.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/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-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Hyperspace.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Hyperspace.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/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-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Hyperspace.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Hyperspace.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/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-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Hyperspace.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling JSONCoder+Container.swift, URL+Additions.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
builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name Hyperspace -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/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-iphoneos/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-iphoneos/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-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/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-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Hyperspace.o normal (in target 'Hyperspace' from project 'Hyperspace')
cd /Users/admin/builder/spi-builder-workspace
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/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-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Hyperspace.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/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-iphoneos/Hyperspace.o
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Hyperspace' from project 'Hyperspace')
** BUILD SUCCEEDED **
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.