Build Information
Successful build of Hyperspace, reference 5.1.0 (f3bed2
), with Swift 6.0 for iOS using Xcode 16.0 on 3 Nov 2024 23:19:21 UTC.
Swift 6 data race errors: 98
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Hyperspace -destination generic/platform=iOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete
Build Log
static let switchProxy = HTTP.Status.Redirection(rawValue: 306)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:304:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let switchProxy = HTTP.Status.Redirection(rawValue: 306)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:305:16: warning: static property 'temporaryRedirect' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.Redirection' may have shared mutable state; this is an error in the Swift 6 language mode
static let temporaryRedirect = HTTP.Status.Redirection(rawValue: 307)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:61:23: note: consider making struct 'Redirection' conform to the 'Sendable' protocol
public struct Redirection: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:305:16: note: annotate 'temporaryRedirect' with '@MainActor' if property should only be accessed from the main actor
static let temporaryRedirect = HTTP.Status.Redirection(rawValue: 307)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:305:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let temporaryRedirect = HTTP.Status.Redirection(rawValue: 307)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:306:16: warning: static property 'permanentRedirect' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.Redirection' may have shared mutable state; this is an error in the Swift 6 language mode
static let permanentRedirect = HTTP.Status.Redirection(rawValue: 308)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:61:23: note: consider making struct 'Redirection' conform to the 'Sendable' protocol
public struct Redirection: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:306:16: note: annotate 'permanentRedirect' with '@MainActor' if property should only be accessed from the main actor
static let permanentRedirect = HTTP.Status.Redirection(rawValue: 308)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:306:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let permanentRedirect = HTTP.Status.Redirection(rawValue: 308)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:310:16: warning: static property 'badRequest' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let badRequest = HTTP.Status.ClientError(rawValue: 400)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:310:16: note: annotate 'badRequest' with '@MainActor' if property should only be accessed from the main actor
static let badRequest = HTTP.Status.ClientError(rawValue: 400)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:310:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let badRequest = HTTP.Status.ClientError(rawValue: 400)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:311:16: warning: static property 'unauthorized' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let unauthorized = HTTP.Status.ClientError(rawValue: 401)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:311:16: note: annotate 'unauthorized' with '@MainActor' if property should only be accessed from the main actor
static let unauthorized = HTTP.Status.ClientError(rawValue: 401)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:311:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let unauthorized = HTTP.Status.ClientError(rawValue: 401)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:312:16: warning: static property 'paymentRequired' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let paymentRequired = HTTP.Status.ClientError(rawValue: 402)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:312:16: note: annotate 'paymentRequired' with '@MainActor' if property should only be accessed from the main actor
static let paymentRequired = HTTP.Status.ClientError(rawValue: 402)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:312:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let paymentRequired = HTTP.Status.ClientError(rawValue: 402)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:313:16: warning: static property 'forbidden' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let forbidden = HTTP.Status.ClientError(rawValue: 403)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:313:16: note: annotate 'forbidden' with '@MainActor' if property should only be accessed from the main actor
static let forbidden = HTTP.Status.ClientError(rawValue: 403)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:313:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let forbidden = HTTP.Status.ClientError(rawValue: 403)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:314:16: warning: static property 'notFound' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let notFound = HTTP.Status.ClientError(rawValue: 404)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:314:16: note: annotate 'notFound' with '@MainActor' if property should only be accessed from the main actor
static let notFound = HTTP.Status.ClientError(rawValue: 404)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:314:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let notFound = HTTP.Status.ClientError(rawValue: 404)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:315:16: warning: static property 'methodNotAllowed' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let methodNotAllowed = HTTP.Status.ClientError(rawValue: 405)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:315:16: note: annotate 'methodNotAllowed' with '@MainActor' if property should only be accessed from the main actor
static let methodNotAllowed = HTTP.Status.ClientError(rawValue: 405)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:315:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let methodNotAllowed = HTTP.Status.ClientError(rawValue: 405)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:316:16: warning: static property 'notAcceptable' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let notAcceptable = HTTP.Status.ClientError(rawValue: 406)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:316:16: note: annotate 'notAcceptable' with '@MainActor' if property should only be accessed from the main actor
static let notAcceptable = HTTP.Status.ClientError(rawValue: 406)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:316:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let notAcceptable = HTTP.Status.ClientError(rawValue: 406)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:317:16: warning: static property 'proxyAuthenticationRequired' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let proxyAuthenticationRequired = HTTP.Status.ClientError(rawValue: 407)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:317:16: note: annotate 'proxyAuthenticationRequired' with '@MainActor' if property should only be accessed from the main actor
static let proxyAuthenticationRequired = HTTP.Status.ClientError(rawValue: 407)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:317:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let proxyAuthenticationRequired = HTTP.Status.ClientError(rawValue: 407)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:318:16: warning: static property 'requestTimeout' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let requestTimeout = HTTP.Status.ClientError(rawValue: 408)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:318:16: note: annotate 'requestTimeout' with '@MainActor' if property should only be accessed from the main actor
static let requestTimeout = HTTP.Status.ClientError(rawValue: 408)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:318:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let requestTimeout = HTTP.Status.ClientError(rawValue: 408)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:319:16: warning: static property 'conflict' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let conflict = HTTP.Status.ClientError(rawValue: 409)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:319:16: note: annotate 'conflict' with '@MainActor' if property should only be accessed from the main actor
static let conflict = HTTP.Status.ClientError(rawValue: 409)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:319:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let conflict = HTTP.Status.ClientError(rawValue: 409)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:320:16: warning: static property 'gone' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let gone = HTTP.Status.ClientError(rawValue: 410)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:320:16: note: annotate 'gone' with '@MainActor' if property should only be accessed from the main actor
static let gone = HTTP.Status.ClientError(rawValue: 410)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:320:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let gone = HTTP.Status.ClientError(rawValue: 410)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:321:16: warning: static property 'lengthRequried' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let lengthRequried = HTTP.Status.ClientError(rawValue: 411)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:321:16: note: annotate 'lengthRequried' with '@MainActor' if property should only be accessed from the main actor
static let lengthRequried = HTTP.Status.ClientError(rawValue: 411)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:321:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let lengthRequried = HTTP.Status.ClientError(rawValue: 411)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:322:16: warning: static property 'preconditionFailed' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let preconditionFailed = HTTP.Status.ClientError(rawValue: 412)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:322:16: note: annotate 'preconditionFailed' with '@MainActor' if property should only be accessed from the main actor
static let preconditionFailed = HTTP.Status.ClientError(rawValue: 412)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:322:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let preconditionFailed = HTTP.Status.ClientError(rawValue: 412)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:323:16: warning: static property 'payloadTooLarge' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let payloadTooLarge = HTTP.Status.ClientError(rawValue: 413)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:323:16: note: annotate 'payloadTooLarge' with '@MainActor' if property should only be accessed from the main actor
static let payloadTooLarge = HTTP.Status.ClientError(rawValue: 413)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:323:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let payloadTooLarge = HTTP.Status.ClientError(rawValue: 413)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:324:16: warning: static property 'uriTooLong' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let uriTooLong = HTTP.Status.ClientError(rawValue: 414)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:324:16: note: annotate 'uriTooLong' with '@MainActor' if property should only be accessed from the main actor
static let uriTooLong = HTTP.Status.ClientError(rawValue: 414)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:324:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let uriTooLong = HTTP.Status.ClientError(rawValue: 414)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:325:16: warning: static property 'unsupportedMediaType' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let unsupportedMediaType = HTTP.Status.ClientError(rawValue: 415)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:325:16: note: annotate 'unsupportedMediaType' with '@MainActor' if property should only be accessed from the main actor
static let unsupportedMediaType = HTTP.Status.ClientError(rawValue: 415)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:325:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let unsupportedMediaType = HTTP.Status.ClientError(rawValue: 415)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:326:16: warning: static property 'rangeNotSatisfiable' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let rangeNotSatisfiable = HTTP.Status.ClientError(rawValue: 416)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:326:16: note: annotate 'rangeNotSatisfiable' with '@MainActor' if property should only be accessed from the main actor
static let rangeNotSatisfiable = HTTP.Status.ClientError(rawValue: 416)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:326:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let rangeNotSatisfiable = HTTP.Status.ClientError(rawValue: 416)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:327:16: warning: static property 'expectationFailed' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let expectationFailed = HTTP.Status.ClientError(rawValue: 417)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:327:16: note: annotate 'expectationFailed' with '@MainActor' if property should only be accessed from the main actor
static let expectationFailed = HTTP.Status.ClientError(rawValue: 417)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:327:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let expectationFailed = HTTP.Status.ClientError(rawValue: 417)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:328:16: warning: static property 'imATeapot' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let imATeapot = HTTP.Status.ClientError(rawValue: 418)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:328:16: note: annotate 'imATeapot' with '@MainActor' if property should only be accessed from the main actor
static let imATeapot = HTTP.Status.ClientError(rawValue: 418)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:328:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let imATeapot = HTTP.Status.ClientError(rawValue: 418)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:329:16: warning: static property 'misdirectedRequest' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let misdirectedRequest = HTTP.Status.ClientError(rawValue: 421)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:329:16: note: annotate 'misdirectedRequest' with '@MainActor' if property should only be accessed from the main actor
static let misdirectedRequest = HTTP.Status.ClientError(rawValue: 421)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:329:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let misdirectedRequest = HTTP.Status.ClientError(rawValue: 421)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:330:16: warning: static property 'unproccessableEntity' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let unproccessableEntity = HTTP.Status.ClientError(rawValue: 422)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:330:16: note: annotate 'unproccessableEntity' with '@MainActor' if property should only be accessed from the main actor
static let unproccessableEntity = HTTP.Status.ClientError(rawValue: 422)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:330:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let unproccessableEntity = HTTP.Status.ClientError(rawValue: 422)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:331:16: warning: static property 'locked' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let locked = HTTP.Status.ClientError(rawValue: 423)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:331:16: note: annotate 'locked' with '@MainActor' if property should only be accessed from the main actor
static let locked = HTTP.Status.ClientError(rawValue: 423)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:331:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let locked = HTTP.Status.ClientError(rawValue: 423)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:332:16: warning: static property 'failedDependency' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let failedDependency = HTTP.Status.ClientError(rawValue: 424)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:332:16: note: annotate 'failedDependency' with '@MainActor' if property should only be accessed from the main actor
static let failedDependency = HTTP.Status.ClientError(rawValue: 424)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:332:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let failedDependency = HTTP.Status.ClientError(rawValue: 424)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:333:16: warning: static property 'upgradeRequired' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let upgradeRequired = HTTP.Status.ClientError(rawValue: 426)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:333:16: note: annotate 'upgradeRequired' with '@MainActor' if property should only be accessed from the main actor
static let upgradeRequired = HTTP.Status.ClientError(rawValue: 426)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:333:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let upgradeRequired = HTTP.Status.ClientError(rawValue: 426)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:334:16: warning: static property 'preconditionRequired' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let preconditionRequired = HTTP.Status.ClientError(rawValue: 428)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:334:16: note: annotate 'preconditionRequired' with '@MainActor' if property should only be accessed from the main actor
static let preconditionRequired = HTTP.Status.ClientError(rawValue: 428)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:334:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let preconditionRequired = HTTP.Status.ClientError(rawValue: 428)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:335:16: warning: static property 'tooManyRequests' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let tooManyRequests = HTTP.Status.ClientError(rawValue: 429)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:335:16: note: annotate 'tooManyRequests' with '@MainActor' if property should only be accessed from the main actor
static let tooManyRequests = HTTP.Status.ClientError(rawValue: 429)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:335:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let tooManyRequests = HTTP.Status.ClientError(rawValue: 429)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:336:16: warning: static property 'requestHeaderFieldsTooLarge' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let requestHeaderFieldsTooLarge = HTTP.Status.ClientError(rawValue: 431)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:336:16: note: annotate 'requestHeaderFieldsTooLarge' with '@MainActor' if property should only be accessed from the main actor
static let requestHeaderFieldsTooLarge = HTTP.Status.ClientError(rawValue: 431)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:336:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let requestHeaderFieldsTooLarge = HTTP.Status.ClientError(rawValue: 431)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:337:16: warning: static property 'unavailableForLegalReasons' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ClientError' may have shared mutable state; this is an error in the Swift 6 language mode
static let unavailableForLegalReasons = HTTP.Status.ClientError(rawValue: 451)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:71:23: note: consider making struct 'ClientError' conform to the 'Sendable' protocol
public struct ClientError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:337:16: note: annotate 'unavailableForLegalReasons' with '@MainActor' if property should only be accessed from the main actor
static let unavailableForLegalReasons = HTTP.Status.ClientError(rawValue: 451)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:337:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let unavailableForLegalReasons = HTTP.Status.ClientError(rawValue: 451)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:341:16: warning: static property 'internalServerError' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ServerError' may have shared mutable state; this is an error in the Swift 6 language mode
static let internalServerError = HTTP.Status.ServerError(rawValue: 500)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:81:23: note: consider making struct 'ServerError' conform to the 'Sendable' protocol
public struct ServerError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:341:16: note: annotate 'internalServerError' with '@MainActor' if property should only be accessed from the main actor
static let internalServerError = HTTP.Status.ServerError(rawValue: 500)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:341:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let internalServerError = HTTP.Status.ServerError(rawValue: 500)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:342:16: warning: static property 'notImplemented' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ServerError' may have shared mutable state; this is an error in the Swift 6 language mode
static let notImplemented = HTTP.Status.ServerError(rawValue: 501)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:81:23: note: consider making struct 'ServerError' conform to the 'Sendable' protocol
public struct ServerError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:342:16: note: annotate 'notImplemented' with '@MainActor' if property should only be accessed from the main actor
static let notImplemented = HTTP.Status.ServerError(rawValue: 501)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:342:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let notImplemented = HTTP.Status.ServerError(rawValue: 501)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:343:16: warning: static property 'badGateway' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ServerError' may have shared mutable state; this is an error in the Swift 6 language mode
static let badGateway = HTTP.Status.ServerError(rawValue: 502)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:81:23: note: consider making struct 'ServerError' conform to the 'Sendable' protocol
public struct ServerError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:343:16: note: annotate 'badGateway' with '@MainActor' if property should only be accessed from the main actor
static let badGateway = HTTP.Status.ServerError(rawValue: 502)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:343:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let badGateway = HTTP.Status.ServerError(rawValue: 502)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:344:16: warning: static property 'serviceUnavailable' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ServerError' may have shared mutable state; this is an error in the Swift 6 language mode
static let serviceUnavailable = HTTP.Status.ServerError(rawValue: 503)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:81:23: note: consider making struct 'ServerError' conform to the 'Sendable' protocol
public struct ServerError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:344:16: note: annotate 'serviceUnavailable' with '@MainActor' if property should only be accessed from the main actor
static let serviceUnavailable = HTTP.Status.ServerError(rawValue: 503)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:344:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let serviceUnavailable = HTTP.Status.ServerError(rawValue: 503)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:345:16: warning: static property 'gatewayTimeout' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ServerError' may have shared mutable state; this is an error in the Swift 6 language mode
static let gatewayTimeout = HTTP.Status.ServerError(rawValue: 504)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:81:23: note: consider making struct 'ServerError' conform to the 'Sendable' protocol
public struct ServerError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:345:16: note: annotate 'gatewayTimeout' with '@MainActor' if property should only be accessed from the main actor
static let gatewayTimeout = HTTP.Status.ServerError(rawValue: 504)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:345:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let gatewayTimeout = HTTP.Status.ServerError(rawValue: 504)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:346:16: warning: static property 'httpVersionNotSupported' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ServerError' may have shared mutable state; this is an error in the Swift 6 language mode
static let httpVersionNotSupported = HTTP.Status.ServerError(rawValue: 505)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:81:23: note: consider making struct 'ServerError' conform to the 'Sendable' protocol
public struct ServerError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:346:16: note: annotate 'httpVersionNotSupported' with '@MainActor' if property should only be accessed from the main actor
static let httpVersionNotSupported = HTTP.Status.ServerError(rawValue: 505)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:346:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let httpVersionNotSupported = HTTP.Status.ServerError(rawValue: 505)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:347:16: warning: static property 'variantAlsoNegotiates' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ServerError' may have shared mutable state; this is an error in the Swift 6 language mode
static let variantAlsoNegotiates = HTTP.Status.ServerError(rawValue: 506)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:81:23: note: consider making struct 'ServerError' conform to the 'Sendable' protocol
public struct ServerError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:347:16: note: annotate 'variantAlsoNegotiates' with '@MainActor' if property should only be accessed from the main actor
static let variantAlsoNegotiates = HTTP.Status.ServerError(rawValue: 506)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:347:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let variantAlsoNegotiates = HTTP.Status.ServerError(rawValue: 506)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:348:16: warning: static property 'insufficientStorage' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ServerError' may have shared mutable state; this is an error in the Swift 6 language mode
static let insufficientStorage = HTTP.Status.ServerError(rawValue: 507)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:81:23: note: consider making struct 'ServerError' conform to the 'Sendable' protocol
public struct ServerError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:348:16: note: annotate 'insufficientStorage' with '@MainActor' if property should only be accessed from the main actor
static let insufficientStorage = HTTP.Status.ServerError(rawValue: 507)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:348:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let insufficientStorage = HTTP.Status.ServerError(rawValue: 507)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:349:16: warning: static property 'loopDetected' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ServerError' may have shared mutable state; this is an error in the Swift 6 language mode
static let loopDetected = HTTP.Status.ServerError(rawValue: 508)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:81:23: note: consider making struct 'ServerError' conform to the 'Sendable' protocol
public struct ServerError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:349:16: note: annotate 'loopDetected' with '@MainActor' if property should only be accessed from the main actor
static let loopDetected = HTTP.Status.ServerError(rawValue: 508)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:349:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let loopDetected = HTTP.Status.ServerError(rawValue: 508)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:350:16: warning: static property 'notExtended' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ServerError' may have shared mutable state; this is an error in the Swift 6 language mode
static let notExtended = HTTP.Status.ServerError(rawValue: 510)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:81:23: note: consider making struct 'ServerError' conform to the 'Sendable' protocol
public struct ServerError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:350:16: note: annotate 'notExtended' with '@MainActor' if property should only be accessed from the main actor
static let notExtended = HTTP.Status.ServerError(rawValue: 510)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:350:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let notExtended = HTTP.Status.ServerError(rawValue: 510)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:351:16: warning: static property 'networkAuthenticationRequired' is not concurrency-safe because non-'Sendable' type 'HTTP.Status.ServerError' may have shared mutable state; this is an error in the Swift 6 language mode
static let networkAuthenticationRequired = HTTP.Status.ServerError(rawValue: 511)
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:81:23: note: consider making struct 'ServerError' conform to the 'Sendable' protocol
public struct ServerError: RawRepresentable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:351:16: note: annotate 'networkAuthenticationRequired' with '@MainActor' if property should only be accessed from the main actor
static let networkAuthenticationRequired = HTTP.Status.ServerError(rawValue: 511)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:351:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let networkAuthenticationRequired = HTTP.Status.ServerError(rawValue: 511)
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+Decodable.swift (in target 'Hyperspace' from project 'Hyperspace')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Extensions/Coding/JSONCoder+Container.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/URL+Additions.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body+URLForm.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+Decodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+EmptyDecodingStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.URLRequestCreationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendService.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendServicing.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/NetworkActivityController.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/PreparationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/RecoveryStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/Transporting.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-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 -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.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-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -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 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-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 nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var defaultCachePolicy: URLRequest.CachePolicy = .useProtocolCachePolicy
^
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:166:23: note: convert 'defaultCachePolicy' to a 'let' constant to make 'Sendable' shared state immutable
public static var defaultCachePolicy: URLRequest.CachePolicy = .useProtocolCachePolicy
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:166:23: note: annotate 'defaultCachePolicy' with '@MainActor' if property should only be accessed from the main actor
public static var defaultCachePolicy: URLRequest.CachePolicy = .useProtocolCachePolicy
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:166:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var defaultCachePolicy: URLRequest.CachePolicy = .useProtocolCachePolicy
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:169:23: warning: static property 'defaultTimeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var defaultTimeout: TimeInterval = 60
^
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:169:23: note: convert 'defaultTimeout' to a 'let' constant to make 'Sendable' shared state immutable
public static var defaultTimeout: TimeInterval = 60
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:169:23: note: annotate 'defaultTimeout' with '@MainActor' if property should only be accessed from the main actor
public static var defaultTimeout: TimeInterval = 60
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:169:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var defaultTimeout: TimeInterval = 60
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:167:23: warning: static property 'defaultDecoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var defaultDecoder: JSONDecoder = JSONDecoder()
^
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:167:23: note: convert 'defaultDecoder' to a 'let' constant to make 'Sendable' shared state immutable
public static var defaultDecoder: JSONDecoder = JSONDecoder()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:167:23: note: annotate 'defaultDecoder' with '@MainActor' if property should only be accessed from the main actor
public static var defaultDecoder: JSONDecoder = JSONDecoder()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:167:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var defaultDecoder: JSONDecoder = JSONDecoder()
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ 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/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Extensions/Coding/JSONCoder+Container.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/URL+Additions.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body+URLForm.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+Decodable.swift -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 -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.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-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -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 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-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/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Extensions/Coding/JSONCoder+Container.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/URL+Additions.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body+URLForm.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+Decodable.swift -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 -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.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-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -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 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-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 nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var defaultCachePolicy: URLRequest.CachePolicy = .useProtocolCachePolicy
^
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:166:23: note: convert 'defaultCachePolicy' to a 'let' constant to make 'Sendable' shared state immutable
public static var defaultCachePolicy: URLRequest.CachePolicy = .useProtocolCachePolicy
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:166:23: note: annotate 'defaultCachePolicy' with '@MainActor' if property should only be accessed from the main actor
public static var defaultCachePolicy: URLRequest.CachePolicy = .useProtocolCachePolicy
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:166:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var defaultCachePolicy: URLRequest.CachePolicy = .useProtocolCachePolicy
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:169:23: warning: static property 'defaultTimeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var defaultTimeout: TimeInterval = 60
^
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:169:23: note: convert 'defaultTimeout' to a 'let' constant to make 'Sendable' shared state immutable
public static var defaultTimeout: TimeInterval = 60
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:169:23: note: annotate 'defaultTimeout' with '@MainActor' if property should only be accessed from the main actor
public static var defaultTimeout: TimeInterval = 60
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift:169:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var defaultTimeout: TimeInterval = 60
^
nonisolated(unsafe)
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/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Extensions/Coding/JSONCoder+Container.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/URL+Additions.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body+URLForm.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+Decodable.swift -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 -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.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-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -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 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-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/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Extensions/Coding/JSONCoder+Container.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/URL+Additions.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body+URLForm.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+Decodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+EmptyDecodingStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.URLRequestCreationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendService.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendServicing.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/NetworkActivityController.swift /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 -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.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-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -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 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-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/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Extensions/Coding/JSONCoder+Container.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/URL+Additions.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body+URLForm.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+Decodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+EmptyDecodingStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.URLRequestCreationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendService.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendServicing.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/NetworkActivityController.swift /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 -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.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-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -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 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-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
SwiftCompile normal arm64 Compiling\ HTTP.Body+URLForm.swift,\ HTTP.Body.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body+URLForm.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body.swift (in target 'Hyperspace' from project 'Hyperspace')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Extensions/Coding/JSONCoder+Container.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/URL+Additions.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body+URLForm.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+Decodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+EmptyDecodingStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.URLRequestCreationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendService.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendServicing.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/NetworkActivityController.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/PreparationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/RecoveryStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/Transporting.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body.dia -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.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-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -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 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body.o -index-unit-output-path /Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.o -index-unit-output-path /Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body+URLForm.swift (in target 'Hyperspace' from project 'Hyperspace')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Extensions/Coding/JSONCoder+Container.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/URL+Additions.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body+URLForm.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+Decodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+EmptyDecodingStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.URLRequestCreationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendService.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendServicing.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/NetworkActivityController.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/PreparationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/RecoveryStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/Transporting.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body.dia -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.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-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -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 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body.o -index-unit-output-path /Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.o -index-unit-output-path /Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:246:16: warning: static property 'contentType' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderKey' may have shared mutable state; this is an error in the Swift 6 language mode
static let contentType = HTTP.HeaderKey(rawValue: "Content-Type")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:24:19: note: consider making struct 'HeaderKey' conform to the 'Sendable' protocol
public struct HeaderKey: RawRepresentable, Equatable, Hashable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:246:16: note: annotate 'contentType' with '@MainActor' if property should only be accessed from the main actor
static let contentType = HTTP.HeaderKey(rawValue: "Content-Type")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:246:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let contentType = HTTP.HeaderKey(rawValue: "Content-Type")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:256:16: warning: static property 'applicationFormURLEncoded' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderValue' may have shared mutable state; this is an error in the Swift 6 language mode
static let applicationFormURLEncoded = HTTP.HeaderValue(rawValue: "application/x-www-form-urlencoded")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:37:19: note: consider making struct 'HeaderValue' conform to the 'Sendable' protocol
public struct HeaderValue: RawRepresentable, Equatable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:256:16: note: annotate 'applicationFormURLEncoded' with '@MainActor' if property should only be accessed from the main actor
static let applicationFormURLEncoded = HTTP.HeaderValue(rawValue: "application/x-www-form-urlencoded")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:256:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let applicationFormURLEncoded = HTTP.HeaderValue(rawValue: "application/x-www-form-urlencoded")
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body.swift (in target 'Hyperspace' from project 'Hyperspace')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Extensions/Coding/JSONCoder+Container.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/URL+Additions.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body+URLForm.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+Decodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+EmptyDecodingStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.URLRequestCreationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendService.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendServicing.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/NetworkActivityController.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/PreparationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/RecoveryStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/Transporting.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body.dia -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.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-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -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 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body.o -index-unit-output-path /Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body+URLForm.o -index-unit-output-path /Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/HTTP.Body.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:255:16: warning: static property 'applicationJSON' is not concurrency-safe because non-'Sendable' type 'HTTP.HeaderValue' may have shared mutable state; this is an error in the Swift 6 language mode
static let applicationJSON = HTTP.HeaderValue(rawValue: "application/json")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:37:19: note: consider making struct 'HeaderValue' conform to the 'Sendable' protocol
public struct HeaderValue: RawRepresentable, Equatable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:255:16: note: annotate 'applicationJSON' with '@MainActor' if property should only be accessed from the main actor
static let applicationJSON = HTTP.HeaderValue(rawValue: "application/json")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift:255:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let applicationJSON = HTTP.HeaderValue(rawValue: "application/json")
^
nonisolated(unsafe)
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/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.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 -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.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-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -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 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-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/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.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 -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.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-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -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 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-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/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.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 -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.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-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -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 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-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
SwiftDriverJobDiscovery normal arm64 Emitting module for Hyperspace (in target 'Hyperspace' from project 'Hyperspace')
SwiftCompile normal arm64 Compiling\ Transporting.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/Transporting.swift (in target 'Hyperspace' from project 'Hyperspace')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Extensions/Coding/JSONCoder+Container.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/URL+Additions.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body+URLForm.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+Decodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+EmptyDecodingStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.URLRequestCreationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendService.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendServicing.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/NetworkActivityController.swift /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 -primary-file /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/Transporting.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Transporting.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Transporting.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Transporting.dia -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.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-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -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 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Transporting.o -index-unit-output-path /Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Transporting.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/Transporting.swift (in target 'Hyperspace' from project 'Hyperspace')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Extensions/Coding/JSONCoder+Container.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/URL+Additions.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body+URLForm.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.Body.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTP/HTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+Decodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request+EmptyDecodingStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.URLRequestCreationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Request/Request.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendService.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Backend/BackendServicing.swift /Users/admin/builder/spi-builder-workspace/Sources/Service/Peripheral/NetworkActivityController.swift /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 -primary-file /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/Transporting.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Transporting.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Transporting.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Transporting.dia -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.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-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -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 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Transporting.o -index-unit-output-path /Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Transporting.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/Transporting.swift:60:17: warning: non-sendable type 'TransportSuccess' returned by actor-isolated instance method 'execute(request:)' satisfying protocol requirement cannot cross actor boundary; this is an error in the Swift 6 language mode
public func execute(request: URLRequest) async throws -> TransportSuccess {
^
/Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportResult.swift:11:15: note: consider making struct 'TransportSuccess' conform to the 'Sendable' protocol
public struct TransportSuccess: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/Transporting.swift:73:17: warning: non-sendable type 'TransportSuccess' returned by actor-isolated instance method 'execute(request:delegate:)' satisfying protocol requirement cannot cross actor boundary; this is an error in the Swift 6 language mode
public func execute(request: URLRequest, delegate: TransportTaskDelegate? = nil) async throws -> TransportSuccess {
^
/Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/TransportResult.swift:11:15: note: consider making struct 'TransportSuccess' conform to the 'Sendable' protocol
public struct TransportSuccess: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/Transporting.swift:45:75: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
self.networkActivityController = networkActivityIndicatable.map { NetworkActivityController(indicator: $0) }
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/Transporting.swift:45:75: note: sending task-isolated '$0' to actor-isolated callee risks causing data races between actor-isolated and task-isolated uses
self.networkActivityController = networkActivityIndicatable.map { NetworkActivityController(indicator: $0) }
^
/Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/Transporting.swift:62:53: warning: sending 'self.session' risks causing data races; this is an error in the Swift 6 language mode
let (data, urlResponse) = try await session.data(for: request)
~~~~~~~~^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/Transporting.swift:62:53: note: sending 'self'-isolated 'self.session' to nonisolated instance method 'data(for:)' risks causing data races between nonisolated and 'self'-isolated uses
let (data, urlResponse) = try await session.data(for: request)
^
/Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/Transporting.swift:75:53: warning: sending 'self.session' risks causing data races; this is an error in the Swift 6 language mode
let (data, urlResponse) = try await session.data(for: request, delegate: delegate)
~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Service/Transport/Transporting.swift:75:53: note: sending 'self'-isolated 'self.session' to nonisolated instance method 'data(for:delegate:)' risks causing data races between nonisolated and 'self'-isolated uses
let (data, urlResponse) = try await session.data(for: request, delegate: delegate)
^
SwiftDriverJobDiscovery normal arm64 Compiling TransportResult.swift (in target 'Hyperspace' from project 'Hyperspace')
SwiftDriver\ Compilation\ Requirements Hyperspace normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Hyperspace' from project 'Hyperspace')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Hyperspace -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.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 -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.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-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -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/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
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.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/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
SwiftDriverJobDiscovery normal arm64 Compiling Transporting.swift (in target 'Hyperspace' from project 'Hyperspace')
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 PreparationStrategy.swift, RecoveryStrategy.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 TransportSession.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 JSONCoder+Container.swift, URL+Additions.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 BackendServicing.swift, NetworkActivityController.swift (in target 'Hyperspace' from project 'Hyperspace')
SwiftDriverJobDiscovery normal arm64 Compiling HTTP.swift, Request+Decodable.swift (in target 'Hyperspace' from project 'Hyperspace')
SwiftDriver\ Compilation Hyperspace normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Hyperspace' from project 'Hyperspace')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Hyperspace -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hyperspace.build/Debug-iphoneos/Hyperspace.build/Objects-normal/arm64/Hyperspace.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.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 -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.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-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -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/.swiftpm/xcode -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
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.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-16.1.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-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.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/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.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
** 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.