The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of Requests, reference master (8504a5), with Swift 6.1 for tvOS using Xcode 16.3 on 24 Apr 2025 14:14:12 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Requests -destination generic/platform=tvOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:135:16: note: add '@MainActor' to make static property 'message' part of global actor 'MainActor'
    static let message = MediaType.TopLevelType("message")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:135:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let message = MediaType.TopLevelType("message")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:137:16: warning: static property 'model' is not concurrency-safe because non-'Sendable' type 'MediaType.TopLevelType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let model = MediaType.TopLevelType("model")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:46:19: note: consider making struct 'TopLevelType' conform to the 'Sendable' protocol
    public struct TopLevelType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:137:16: note: add '@MainActor' to make static property 'model' part of global actor 'MainActor'
    static let model = MediaType.TopLevelType("model")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:137:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let model = MediaType.TopLevelType("model")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:139:16: warning: static property 'multipart' is not concurrency-safe because non-'Sendable' type 'MediaType.TopLevelType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let multipart = MediaType.TopLevelType("multipart")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:46:19: note: consider making struct 'TopLevelType' conform to the 'Sendable' protocol
    public struct TopLevelType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:139:16: note: add '@MainActor' to make static property 'multipart' part of global actor 'MainActor'
    static let multipart = MediaType.TopLevelType("multipart")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:139:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let multipart = MediaType.TopLevelType("multipart")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:141:16: warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'MediaType.TopLevelType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let text = MediaType.TopLevelType("text")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:46:19: note: consider making struct 'TopLevelType' conform to the 'Sendable' protocol
    public struct TopLevelType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:141:16: note: add '@MainActor' to make static property 'text' part of global actor 'MainActor'
    static let text = MediaType.TopLevelType("text")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:141:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let text = MediaType.TopLevelType("text")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:143:16: warning: static property 'video' is not concurrency-safe because non-'Sendable' type 'MediaType.TopLevelType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let video = MediaType.TopLevelType("video")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:46:19: note: consider making struct 'TopLevelType' conform to the 'Sendable' protocol
    public struct TopLevelType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:143:16: note: add '@MainActor' to make static property 'video' part of global actor 'MainActor'
    static let video = MediaType.TopLevelType("video")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:143:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let video = MediaType.TopLevelType("video")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:150:16: warning: static property 'plain' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let plain = MediaType.SubType("plain")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:150:16: note: add '@MainActor' to make static property 'plain' part of global actor 'MainActor'
    static let plain = MediaType.SubType("plain")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:150:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let plain = MediaType.SubType("plain")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:152:16: warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let html = MediaType.SubType("html")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:152:16: note: add '@MainActor' to make static property 'html' part of global actor 'MainActor'
    static let html = MediaType.SubType("html")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:152:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let html = MediaType.SubType("html")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:154:16: warning: static property 'css' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let css = MediaType.SubType("css")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:154:16: note: add '@MainActor' to make static property 'css' part of global actor 'MainActor'
    static let css = MediaType.SubType("css")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:154:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let css = MediaType.SubType("css")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:156:16: warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let json = MediaType.SubType("json")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:156:16: note: add '@MainActor' to make static property 'json' part of global actor 'MainActor'
    static let json = MediaType.SubType("json")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:156:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let json = MediaType.SubType("json")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:158:16: warning: static property 'xml' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let xml = MediaType.SubType("xml")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:158:16: note: add '@MainActor' to make static property 'xml' part of global actor 'MainActor'
    static let xml = MediaType.SubType("xml")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:158:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let xml = MediaType.SubType("xml")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:160:16: warning: static property 'urlEncodedForm' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let urlEncodedForm = MediaType.SubType("x-www-form-urlencoded")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:160:16: note: add '@MainActor' to make static property 'urlEncodedForm' part of global actor 'MainActor'
    static let urlEncodedForm = MediaType.SubType("x-www-form-urlencoded")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:160:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let urlEncodedForm = MediaType.SubType("x-www-form-urlencoded")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:162:16: warning: static property 'octetStream' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let octetStream = MediaType.SubType("octet-stream")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:162:16: note: add '@MainActor' to make static property 'octetStream' part of global actor 'MainActor'
    static let octetStream = MediaType.SubType("octet-stream")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:162:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let octetStream = MediaType.SubType("octet-stream")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:164:16: warning: static property 'formData' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let formData = MediaType.SubType("form-data")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:164:16: note: add '@MainActor' to make static property 'formData' part of global actor 'MainActor'
    static let formData = MediaType.SubType("form-data")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:164:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let formData = MediaType.SubType("form-data")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:166:16: warning: static property 'gif' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let gif = MediaType.SubType("gif")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:166:16: note: add '@MainActor' to make static property 'gif' part of global actor 'MainActor'
    static let gif = MediaType.SubType("gif")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:166:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let gif = MediaType.SubType("gif")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:168:16: warning: static property 'png' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let png = MediaType.SubType("png")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:168:16: note: add '@MainActor' to make static property 'png' part of global actor 'MainActor'
    static let png = MediaType.SubType("png")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:168:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let png = MediaType.SubType("png")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:170:16: warning: static property 'jpeg' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let jpeg = MediaType.SubType("jpeg")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:170:16: note: add '@MainActor' to make static property 'jpeg' part of global actor 'MainActor'
    static let jpeg = MediaType.SubType("jpeg")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:170:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let jpeg = MediaType.SubType("jpeg")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:172:16: warning: static property 'svg' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let svg = MediaType.SubType("svg+xml")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:172:16: note: add '@MainActor' to make static property 'svg' part of global actor 'MainActor'
    static let svg = MediaType.SubType("svg+xml")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:172:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let svg = MediaType.SubType("svg+xml")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:181:16: warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let json = MediaType(type: .application, subtype: .json, parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:181:16: note: add '@MainActor' to make static property 'json' part of global actor 'MainActor'
    static let json = MediaType(type: .application, subtype: .json, parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:181:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let json = MediaType(type: .application, subtype: .json, parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:183:16: warning: static property 'xml' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let xml = MediaType(type: .application, subtype: .xml, parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:183:16: note: add '@MainActor' to make static property 'xml' part of global actor 'MainActor'
    static let xml = MediaType(type: .application, subtype: .xml, parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:183:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let xml = MediaType(type: .application, subtype: .xml, parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:185:16: warning: static property 'urlEncodedForm' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let urlEncodedForm = MediaType(type: .application, subtype: .urlEncodedForm,
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:185:16: note: add '@MainActor' to make static property 'urlEncodedForm' part of global actor 'MainActor'
    static let urlEncodedForm = MediaType(type: .application, subtype: .urlEncodedForm,
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:185:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let urlEncodedForm = MediaType(type: .application, subtype: .urlEncodedForm,
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:188:16: warning: static property 'binary' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let binary = MediaType(type: .application, subtype: .octetStream)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:188:16: note: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
    static let binary = MediaType(type: .application, subtype: .octetStream)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:188:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let binary = MediaType(type: .application, subtype: .octetStream)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:192:16: warning: static property 'plainText' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let plainText = MediaType(type: .text, subtype: .plain, parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:192:16: note: add '@MainActor' to make static property 'plainText' part of global actor 'MainActor'
    static let plainText = MediaType(type: .text, subtype: .plain, parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:192:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let plainText = MediaType(type: .text, subtype: .plain, parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:194:16: warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let html = MediaType(type: .text, subtype: .html, parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:194:16: note: add '@MainActor' to make static property 'html' part of global actor 'MainActor'
    static let html = MediaType(type: .text, subtype: .html, parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:194:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let html = MediaType(type: .text, subtype: .html, parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:196:16: warning: static property 'css' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let css = MediaType(type: .text, subtype: .css, parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:196:16: note: add '@MainActor' to make static property 'css' part of global actor 'MainActor'
    static let css = MediaType(type: .text, subtype: .css, parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:196:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let css = MediaType(type: .text, subtype: .css, parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:200:16: warning: static property 'gif' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let gif = MediaType(type: .image, subtype: .gif)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:200:16: note: add '@MainActor' to make static property 'gif' part of global actor 'MainActor'
    static let gif = MediaType(type: .image, subtype: .gif)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:200:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let gif = MediaType(type: .image, subtype: .gif)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:202:16: warning: static property 'png' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let png = MediaType(type: .image, subtype: .png)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:202:16: note: add '@MainActor' to make static property 'png' part of global actor 'MainActor'
    static let png = MediaType(type: .image, subtype: .png)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:202:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let png = MediaType(type: .image, subtype: .png)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:204:16: warning: static property 'jpeg' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let jpeg = MediaType(type: .image, subtype: .jpeg)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:204:16: note: add '@MainActor' to make static property 'jpeg' part of global actor 'MainActor'
    static let jpeg = MediaType(type: .image, subtype: .jpeg)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:204:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let jpeg = MediaType(type: .image, subtype: .jpeg)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:206:16: warning: static property 'svg' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let svg = MediaType(type: .image, subtype: .svg)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:206:16: note: add '@MainActor' to make static property 'svg' part of global actor 'MainActor'
    static let svg = MediaType(type: .image, subtype: .svg)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:206:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let svg = MediaType(type: .image, subtype: .svg)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:211:16: warning: static property 'formData' is not concurrency-safe because non-'Sendable' type '(String) -> MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let formData: (String) -> MediaType = { boundary in
               ^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:211:16: note: add '@MainActor' to make static property 'formData' part of global actor 'MainActor'
    static let formData: (String) -> MediaType = { boundary in
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:211:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let formData: (String) -> MediaType = { boundary in
               ^
    nonisolated(unsafe)
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745504047906592-swift-frontend-Requests-HTTPMethod.swift-arm64_apple_tvos9.0-o-Onone-3915930223.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.4824 seconds (4.0015 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0228 ( 11.1%)   0.1109 ( 40.1%)   0.1336 ( 27.7%)   1.8476 ( 46.2%)  parse-and-resolve-imports
   0.0216 ( 10.5%)   0.1097 ( 39.6%)   0.1313 ( 27.2%)   1.8453 ( 46.1%)  Import resolution
   0.0015 (  0.7%)   0.0094 (  3.4%)   0.0109 (  2.3%)   0.1019 (  2.5%)  load-stdlib
   0.0506 ( 24.6%)   0.0216 (  7.8%)   0.0722 ( 15.0%)   0.0722 (  1.8%)  build-rewrite-system
   0.0237 ( 11.5%)   0.0054 (  2.0%)   0.0291 (  6.0%)   0.0291 (  0.7%)  perform-sema
   0.0236 ( 11.5%)   0.0054 (  2.0%)   0.0290 (  6.0%)   0.0290 (  0.7%)  Type checking and Semantic analysis
   0.0161 (  7.8%)   0.0041 (  1.5%)   0.0202 (  4.2%)   0.0202 (  0.5%)  typecheck-decl
   0.0099 (  4.8%)   0.0042 (  1.5%)   0.0141 (  2.9%)   0.0142 (  0.4%)  IRGen
   0.0088 (  4.3%)   0.0017 (  0.6%)   0.0105 (  2.2%)   0.0105 (  0.3%)  typecheck-stmt
   0.0081 (  3.9%)   0.0011 (  0.4%)   0.0092 (  1.9%)   0.0092 (  0.2%)  SILGen
   0.0070 (  3.4%)   0.0018 (  0.7%)   0.0088 (  1.8%)   0.0088 (  0.2%)  typecheck-expr
   0.0063 (  3.1%)   0.0002 (  0.1%)   0.0064 (  1.3%)   0.0064 (  0.2%)  SIL optimization
   0.0037 (  1.8%)   0.0002 (  0.1%)   0.0039 (  0.8%)   0.0039 (  0.1%)  SILGen-function
   0.0008 (  0.4%)   0.0011 (  0.4%)   0.0019 (  0.4%)   0.0019 (  0.0%)  import-clang-decl
   0.0010 (  0.5%)   0.0000 (  0.0%)   0.0010 (  0.2%)   0.0010 (  0.0%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  associated-type-inference
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.2056 (100.0%)   0.2768 (100.0%)   0.4824 (100.0%)   4.0015 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.6164 seconds (2.4281 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.4182 (100.0%)   0.1982 (100.0%)   0.6164 (100.0%)   2.4281 (100.0%)  Building Target
   0.4182 (100.0%)   0.1982 (100.0%)   0.6164 (100.0%)   2.4281 (100.0%)  Total
SwiftCompile normal arm64 Compiling\ Request.swift,\ URL+StaticString.swift /Users/admin/builder/spi-builder-workspace/Sources/Request.swift /Users/admin/builder/spi-builder-workspace/Sources/URL+StaticString.swift (in target 'Requests' from project 'Requests')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Request.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/URL+StaticString.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745504047893923-swift-frontend-Requests-Request.swift-arm64_apple_tvos9.0-o-Onone-1658189254.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.5966 seconds (3.7597 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0222 (  8.3%)   0.1108 ( 33.8%)   0.1330 ( 22.3%)   1.6704 ( 44.4%)  parse-and-resolve-imports
   0.0211 (  7.9%)   0.1099 ( 33.5%)   0.1310 ( 22.0%)   1.6683 ( 44.4%)  Import resolution
   0.0868 ( 32.4%)   0.0315 (  9.6%)   0.1183 ( 19.8%)   0.1194 (  3.2%)  build-rewrite-system
   0.0020 (  0.7%)   0.0162 (  4.9%)   0.0181 (  3.0%)   0.1009 (  2.7%)  load-stdlib
   0.0279 ( 10.4%)   0.0124 (  3.8%)   0.0402 (  6.7%)   0.0411 (  1.1%)  perform-sema
   0.0278 ( 10.4%)   0.0123 (  3.8%)   0.0401 (  6.7%)   0.0410 (  1.1%)  Type checking and Semantic analysis
   0.0134 (  5.0%)   0.0115 (  3.5%)   0.0249 (  4.2%)   0.0249 (  0.7%)  import-clang-decl
   0.0119 (  4.4%)   0.0079 (  2.4%)   0.0198 (  3.3%)   0.0205 (  0.5%)  typecheck-decl
   0.0149 (  5.5%)   0.0043 (  1.3%)   0.0191 (  3.2%)   0.0193 (  0.5%)  typecheck-stmt
   0.0101 (  3.8%)   0.0045 (  1.4%)   0.0146 (  2.4%)   0.0146 (  0.4%)  IRGen
   0.0106 (  3.9%)   0.0032 (  1.0%)   0.0137 (  2.3%)   0.0139 (  0.4%)  typecheck-expr
   0.0084 (  3.1%)   0.0030 (  0.9%)   0.0114 (  1.9%)   0.0131 (  0.3%)  SILGen
   0.0051 (  1.9%)   0.0002 (  0.1%)   0.0053 (  0.9%)   0.0054 (  0.1%)  SIL optimization
   0.0039 (  1.5%)   0.0005 (  0.1%)   0.0044 (  0.7%)   0.0044 (  0.1%)  SILGen-function
   0.0012 (  0.4%)   0.0001 (  0.0%)   0.0013 (  0.2%)   0.0013 (  0.0%)  precheck-target
   0.0008 (  0.3%)   0.0003 (  0.1%)   0.0010 (  0.2%)   0.0010 (  0.0%)  load-all-members
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  associated-type-inference
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.2681 (100.0%)   0.3284 (100.0%)   0.5966 (100.0%)   3.7597 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 1.8745 seconds (3.6199 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   1.0190 (100.0%)   0.8554 (100.0%)   1.8745 (100.0%)   3.6199 (100.0%)  Building Target
   1.0190 (100.0%)   0.8554 (100.0%)   1.8745 (100.0%)   3.6199 (100.0%)  Total
SwiftCompile normal arm64 Compiling\ CaseInsensitiveString.swift,\ RequestError.swift /Users/admin/builder/spi-builder-workspace/Sources/CaseInsensitiveString.swift /Users/admin/builder/spi-builder-workspace/Sources/RequestError.swift (in target 'Requests' from project 'Requests')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745504047914153-swift-frontend-Requests-CaseInsensitiveString.swift-arm64_apple_tvos9.0-o-Onone-3799891261.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 3.1538 seconds (3.6911 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.9921 ( 45.6%)   0.4514 ( 46.1%)   1.4435 ( 45.8%)   1.6625 ( 45.0%)  parse-and-resolve-imports
   0.9910 ( 45.6%)   0.4473 ( 45.7%)   1.4383 ( 45.6%)   1.6549 ( 44.8%)  Import resolution
   0.0886 (  4.1%)   0.0223 (  2.3%)   0.1110 (  3.5%)   0.1112 (  3.0%)  build-rewrite-system
   0.0015 (  0.1%)   0.0060 (  0.6%)   0.0075 (  0.2%)   0.0876 (  2.4%)  load-stdlib
   0.0231 (  1.1%)   0.0100 (  1.0%)   0.0332 (  1.1%)   0.0379 (  1.0%)  perform-sema
   0.0230 (  1.1%)   0.0100 (  1.0%)   0.0330 (  1.0%)   0.0378 (  1.0%)  Type checking and Semantic analysis
   0.0147 (  0.7%)   0.0083 (  0.8%)   0.0230 (  0.7%)   0.0278 (  0.8%)  typecheck-decl
   0.0147 (  0.7%)   0.0117 (  1.2%)   0.0264 (  0.8%)   0.0276 (  0.7%)  import-clang-decl
   0.0042 (  0.2%)   0.0041 (  0.4%)   0.0083 (  0.3%)   0.0134 (  0.4%)  SILGen
   0.0056 (  0.3%)   0.0040 (  0.4%)   0.0096 (  0.3%)   0.0102 (  0.3%)  IRGen
   0.0082 (  0.4%)   0.0017 (  0.2%)   0.0099 (  0.3%)   0.0099 (  0.3%)  typecheck-stmt
   0.0029 (  0.1%)   0.0003 (  0.0%)   0.0032 (  0.1%)   0.0032 (  0.1%)  SIL optimization
   0.0023 (  0.1%)   0.0004 (  0.0%)   0.0027 (  0.1%)   0.0027 (  0.1%)  typecheck-expr
   0.0016 (  0.1%)   0.0008 (  0.1%)   0.0024 (  0.1%)   0.0024 (  0.1%)  SILGen-function
   0.0008 (  0.0%)   0.0002 (  0.0%)   0.0011 (  0.0%)   0.0011 (  0.0%)  load-all-members
   0.0006 (  0.0%)   0.0000 (  0.0%)   0.0006 (  0.0%)   0.0006 (  0.0%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  associated-type-inference
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   2.1752 (100.0%)   0.9786 (100.0%)   3.1538 (100.0%)   3.6911 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 3.1706 seconds (3.5967 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   1.9526 (100.0%)   1.2180 (100.0%)   3.1706 (100.0%)   3.5967 (100.0%)  Building Target
   1.9526 (100.0%)   1.2180 (100.0%)   3.1706 (100.0%)   3.5967 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CaseInsensitiveString.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RequestError.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 Compiling\ URLSession+Requests.swift,\ Header.swift /Users/admin/builder/spi-builder-workspace/Sources/URLSession+Requests.swift /Users/admin/builder/spi-builder-workspace/Sources/Header.swift (in target 'Requests' from project 'Requests')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745504047916642-swift-frontend-Requests-URLSession_Requests.swift-arm64_apple_tvos9.0-o-Onone-3311769859.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.6567 seconds (3.9029 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0205 (  5.7%)   0.1000 ( 33.7%)   0.1205 ( 18.3%)   1.6906 ( 43.3%)  parse-and-resolve-imports
   0.0195 (  5.4%)   0.0991 ( 33.4%)   0.1186 ( 18.1%)   1.6886 ( 43.3%)  Import resolution
   0.0870 ( 24.2%)   0.0339 ( 11.4%)   0.1209 ( 18.4%)   0.1259 (  3.2%)  build-rewrite-system
   0.0013 (  0.4%)   0.0043 (  1.4%)   0.0056 (  0.8%)   0.1064 (  2.7%)  load-stdlib
   0.0410 ( 11.4%)   0.0107 (  3.6%)   0.0517 (  7.9%)   0.0517 (  1.3%)  perform-sema
   0.0409 ( 11.3%)   0.0107 (  3.6%)   0.0515 (  7.8%)   0.0515 (  1.3%)  Type checking and Semantic analysis
   0.0327 (  9.1%)   0.0065 (  2.2%)   0.0391 (  6.0%)   0.0391 (  1.0%)  typecheck-stmt
   0.0256 (  7.1%)   0.0074 (  2.5%)   0.0330 (  5.0%)   0.0330 (  0.8%)  typecheck-decl
   0.0236 (  6.6%)   0.0046 (  1.5%)   0.0282 (  4.3%)   0.0282 (  0.7%)  typecheck-expr
   0.0131 (  3.6%)   0.0094 (  3.2%)   0.0225 (  3.4%)   0.0227 (  0.6%)  import-clang-decl
   0.0147 (  4.1%)   0.0022 (  0.7%)   0.0168 (  2.6%)   0.0168 (  0.4%)  SILGen
   0.0106 (  3.0%)   0.0038 (  1.3%)   0.0145 (  2.2%)   0.0145 (  0.4%)  IRGen
   0.0125 (  3.5%)   0.0017 (  0.6%)   0.0142 (  2.2%)   0.0142 (  0.4%)  SILGen-function
   0.0096 (  2.7%)   0.0022 (  0.7%)   0.0118 (  1.8%)   0.0118 (  0.3%)  precheck-target
   0.0069 (  1.9%)   0.0001 (  0.0%)   0.0070 (  1.1%)   0.0070 (  0.2%)  SIL optimization
   0.0006 (  0.2%)   0.0002 (  0.1%)   0.0008 (  0.1%)   0.0008 (  0.0%)  load-all-members
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  associated-type-inference
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.3600 (100.0%)   0.2966 (100.0%)   0.6567 (100.0%)   3.9029 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 1.8112 seconds (3.6013 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   1.0026 (100.0%)   0.8087 (100.0%)   1.8112 (100.0%)   3.6013 (100.0%)  Building Target
   1.0026 (100.0%)   0.8087 (100.0%)   1.8112 (100.0%)   3.6013 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/URLSession+Requests.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/URLSession+Requests.swift:37:35: warning: capture of 'completionHandler' with non-sendable type '(NetworkResult<R.Resource>) -> Void' (aka '(Result<(HTTPURLResponse, R.Resource), RequestTransportError>) -> ()') in a '@Sendable' closure
            callbackQueue.async { completionHandler(response) }
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/URLSession+Requests.swift:37:35: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            callbackQueue.async { completionHandler(response) }
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/URLSession+Requests.swift:37:53: warning: capture of 'response' with non-sendable type 'NetworkResult<R.Resource>' (aka 'Result<(HTTPURLResponse, R.Resource), RequestTransportError>') in a '@Sendable' closure
            callbackQueue.async { completionHandler(response) }
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/URLSession+Requests.swift:99:62: warning: capture of 'request' with non-sendable type 'R' in a '@Sendable' closure
                                                      using: request.responseDecoder)
                                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/URLSession+Requests.swift:28:25: note: consider making generic parameter 'R' conform to the 'Sendable' protocol
    public func perform<R: RequestConvertible>(
                        ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/URLSession+Requests.swift:100:25: warning: capture of 'complete' with non-sendable type '(NetworkResult<R.Resource>) -> ()' (aka '(Result<(HTTPURLResponse, R.Resource), RequestTransportError>) -> ()') in a '@Sendable' closure
                        complete(.success((httpResponse, resource)))
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/URLSession+Requests.swift:100:25: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                        complete(.success((httpResponse, resource)))
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/URLSession+Requests.swift:120:66: warning: passing non-sendable parameter 'completionHandler' to function expecting a @Sendable closure
        let task = dataTask(with: urlRequest, completionHandler: completionHandler)
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/URLSession+Requests.swift:118:7: note: parameter 'completionHandler' is implicitly non-sendable
      completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void
      ^
                         @Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Header.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 Compiling\ Field.swift,\ RequestBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Field.swift /Users/admin/builder/spi-builder-workspace/Sources/RequestBody.swift (in target 'Requests' from project 'Requests')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745504047894963-swift-frontend-Requests-Field.swift-arm64_apple_tvos9.0-o-Onone-2703219027.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.5527 seconds (3.7419 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0219 (  9.0%)   0.1045 ( 33.8%)   0.1264 ( 22.9%)   1.6665 ( 44.5%)  parse-and-resolve-imports
   0.0209 (  8.6%)   0.1035 ( 33.5%)   0.1244 ( 22.5%)   1.6645 ( 44.5%)  Import resolution
   0.0903 ( 37.1%)   0.0329 ( 10.7%)   0.1232 ( 22.3%)   0.1265 (  3.4%)  build-rewrite-system
   0.0019 (  0.8%)   0.0130 (  4.2%)   0.0150 (  2.7%)   0.1043 (  2.8%)  load-stdlib
   0.0191 (  7.8%)   0.0104 (  3.4%)   0.0295 (  5.3%)   0.0330 (  0.9%)  perform-sema
   0.0190 (  7.8%)   0.0103 (  3.3%)   0.0294 (  5.3%)   0.0329 (  0.9%)  Type checking and Semantic analysis
   0.0155 (  6.4%)   0.0095 (  3.1%)   0.0250 (  4.5%)   0.0286 (  0.8%)  typecheck-decl
   0.0103 (  4.2%)   0.0085 (  2.8%)   0.0188 (  3.4%)   0.0243 (  0.6%)  SILGen
   0.0127 (  5.2%)   0.0100 (  3.2%)   0.0227 (  4.1%)   0.0228 (  0.6%)  import-clang-decl
   0.0077 (  3.2%)   0.0011 (  0.3%)   0.0088 (  1.6%)   0.0088 (  0.2%)  typecheck-stmt
   0.0074 (  3.0%)   0.0012 (  0.4%)   0.0086 (  1.6%)   0.0087 (  0.2%)  SILGen-function
   0.0051 (  2.1%)   0.0028 (  0.9%)   0.0079 (  1.4%)   0.0079 (  0.2%)  IRGen
   0.0057 (  2.3%)   0.0007 (  0.2%)   0.0064 (  1.2%)   0.0064 (  0.2%)  typecheck-expr
   0.0038 (  1.6%)   0.0001 (  0.0%)   0.0039 (  0.7%)   0.0039 (  0.1%)  SIL optimization
   0.0012 (  0.5%)   0.0001 (  0.0%)   0.0013 (  0.2%)   0.0013 (  0.0%)  precheck-target
   0.0009 (  0.4%)   0.0004 (  0.1%)   0.0013 (  0.2%)   0.0013 (  0.0%)  load-all-members
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  associated-type-inference
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.2437 (100.0%)   0.3090 (100.0%)   0.5527 (100.0%)   3.7419 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 1.8647 seconds (3.6155 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.9887 (100.0%)   0.8760 (100.0%)   1.8647 (100.0%)   3.6155 (100.0%)  Building Target
   0.9887 (100.0%)   0.8760 (100.0%)   1.8647 (100.0%)   3.6155 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Field.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:88:16: warning: static property 'accept' is not concurrency-safe because non-'Sendable' type 'Field.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    static let accept: Field.Name = "Accept"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:15:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: Hashable, RawRepresentable, ExpressibleByStringLiteral, CustomStringConvertible {
                  ^
                                                                                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:88:16: note: add '@MainActor' to make static property 'accept' part of global actor 'MainActor'
    static let accept: Field.Name = "Accept"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:88:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let accept: Field.Name = "Accept"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:90:16: warning: static property 'acceptLanguage' is not concurrency-safe because non-'Sendable' type 'Field.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    static let acceptLanguage: Field.Name = "Accept-Language"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:15:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: Hashable, RawRepresentable, ExpressibleByStringLiteral, CustomStringConvertible {
                  ^
                                                                                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:90:16: note: add '@MainActor' to make static property 'acceptLanguage' part of global actor 'MainActor'
    static let acceptLanguage: Field.Name = "Accept-Language"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:90:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let acceptLanguage: Field.Name = "Accept-Language"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:92:16: warning: static property 'authorization' is not concurrency-safe because non-'Sendable' type 'Field.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    static let authorization: Field.Name = "Authorization"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:15:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: Hashable, RawRepresentable, ExpressibleByStringLiteral, CustomStringConvertible {
                  ^
                                                                                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:92:16: note: add '@MainActor' to make static property 'authorization' part of global actor 'MainActor'
    static let authorization: Field.Name = "Authorization"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:92:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let authorization: Field.Name = "Authorization"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:94:16: warning: static property 'contentType' is not concurrency-safe because non-'Sendable' type 'Field.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    static let contentType: Field.Name = "Content-Type"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:15:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: Hashable, RawRepresentable, ExpressibleByStringLiteral, CustomStringConvertible {
                  ^
                                                                                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:94:16: note: add '@MainActor' to make static property 'contentType' part of global actor 'MainActor'
    static let contentType: Field.Name = "Content-Type"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:94:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let contentType: Field.Name = "Content-Type"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:100:16: warning: static property 'contentType' is not concurrency-safe because non-'Sendable' type '(MediaType) -> Field' may have shared mutable state; this is an error in the Swift 6 language mode
    static let contentType: (MediaType) -> Field = { Field(name: .contentType, value: $0.rawValue) }
               ^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:100:16: note: add '@MainActor' to make static property 'contentType' part of global actor 'MainActor'
    static let contentType: (MediaType) -> Field = { Field(name: .contentType, value: $0.rawValue) }
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:100:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let contentType: (MediaType) -> Field = { Field(name: .contentType, value: $0.rawValue) }
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:102:16: warning: static property 'accept' is not concurrency-safe because non-'Sendable' type '(MediaType) -> Field' may have shared mutable state; this is an error in the Swift 6 language mode
    static let accept: (MediaType) -> Field = { Field(name: .accept, value: $0.rawValue) }
               ^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:102:16: note: add '@MainActor' to make static property 'accept' part of global actor 'MainActor'
    static let accept: (MediaType) -> Field = { Field(name: .accept, value: $0.rawValue) }
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:102:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let accept: (MediaType) -> Field = { Field(name: .accept, value: $0.rawValue) }
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:104:16: warning: static property 'acceptLanguage' is not concurrency-safe because non-'Sendable' type '(String) -> Field' may have shared mutable state; this is an error in the Swift 6 language mode
    static let acceptLanguage = { Field(name: .acceptLanguage, value: $0) }
               ^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:104:16: note: add '@MainActor' to make static property 'acceptLanguage' part of global actor 'MainActor'
    static let acceptLanguage = { Field(name: .acceptLanguage, value: $0) }
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:104:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let acceptLanguage = { Field(name: .acceptLanguage, value: $0) }
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RequestBody.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 Compiling\ RequestConvertible.swift,\ BodyProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/RequestConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/BodyProvider.swift (in target 'Requests' from project 'Requests')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745504047920143-swift-frontend-Requests-RequestConvertible.swift-arm64_apple_tvos9.0-o-Onone-3402161104.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.5653 seconds (3.8047 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0231 (  8.5%)   0.1080 ( 36.8%)   0.1310 ( 23.2%)   1.7158 ( 45.1%)  parse-and-resolve-imports
   0.0220 (  8.1%)   0.1070 ( 36.5%)   0.1291 ( 22.8%)   1.7138 ( 45.0%)  Import resolution
   0.0861 ( 31.7%)   0.0304 ( 10.4%)   0.1165 ( 20.6%)   0.1177 (  3.1%)  build-rewrite-system
   0.0012 (  0.5%)   0.0035 (  1.2%)   0.0047 (  0.8%)   0.0731 (  1.9%)  load-stdlib
   0.0284 ( 10.4%)   0.0083 (  2.8%)   0.0367 (  6.5%)   0.0367 (  1.0%)  perform-sema
   0.0283 ( 10.4%)   0.0083 (  2.8%)   0.0366 (  6.5%)   0.0366 (  1.0%)  Type checking and Semantic analysis
   0.0127 (  4.7%)   0.0110 (  3.7%)   0.0237 (  4.2%)   0.0238 (  0.6%)  import-clang-decl
   0.0167 (  6.1%)   0.0048 (  1.6%)   0.0215 (  3.8%)   0.0215 (  0.6%)  typecheck-decl
   0.0135 (  5.0%)   0.0041 (  1.4%)   0.0176 (  3.1%)   0.0176 (  0.5%)  typecheck-stmt
   0.0106 (  3.9%)   0.0029 (  1.0%)   0.0135 (  2.4%)   0.0135 (  0.4%)  typecheck-expr
   0.0097 (  3.6%)   0.0012 (  0.4%)   0.0109 (  1.9%)   0.0109 (  0.3%)  SILGen
   0.0062 (  2.3%)   0.0030 (  1.0%)   0.0091 (  1.6%)   0.0092 (  0.2%)  IRGen
   0.0066 (  2.4%)   0.0007 (  0.2%)   0.0073 (  1.3%)   0.0073 (  0.2%)  SILGen-function
   0.0045 (  1.6%)   0.0001 (  0.0%)   0.0046 (  0.8%)   0.0046 (  0.1%)  SIL optimization
   0.0015 (  0.5%)   0.0000 (  0.0%)   0.0015 (  0.3%)   0.0015 (  0.0%)  precheck-target
   0.0008 (  0.3%)   0.0002 (  0.1%)   0.0010 (  0.2%)   0.0010 (  0.0%)  load-all-members
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  associated-type-inference
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.2718 (100.0%)   0.2935 (100.0%)   0.5653 (100.0%)   3.8047 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 1.8281 seconds (3.5955 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.9989 (100.0%)   0.8292 (100.0%)   1.8281 (100.0%)   3.5955 (100.0%)  Building Target
   0.9989 (100.0%)   0.8292 (100.0%)   1.8281 (100.0%)   3.5955 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RequestConvertible.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/BodyProvider.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/BodyProvider.swift:44:16: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'BodyProvider' may have shared mutable state; this is an error in the Swift 6 language mode
    static let none = BodyProvider { header in
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BodyProvider.swift:26:15: note: consider making struct 'BodyProvider' conform to the 'Sendable' protocol
public struct BodyProvider {
              ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BodyProvider.swift:44:16: note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    static let none = BodyProvider { header in
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BodyProvider.swift:44:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let none = BodyProvider { header in
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ ResponseDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift (in target 'Requests' from project 'Requests')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745504047919891-swift-frontend-Requests-ResponseDecoder.swift-arm64_apple_tvos9.0-o-Onone-1580425137.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.4454 seconds (4.1226 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0215 ( 10.3%)   0.0810 ( 34.1%)   0.1025 ( 23.0%)   1.8732 ( 45.4%)  parse-and-resolve-imports
   0.0203 (  9.7%)   0.0790 ( 33.3%)   0.0993 ( 22.3%)   1.8699 ( 45.4%)  Import resolution
   0.0013 (  0.6%)   0.0037 (  1.6%)   0.0050 (  1.1%)   0.1399 (  3.4%)  load-stdlib
   0.0874 ( 42.0%)   0.0336 ( 14.2%)   0.1210 ( 27.2%)   0.1211 (  2.9%)  build-rewrite-system
   0.0137 (  6.6%)   0.0124 (  5.2%)   0.0261 (  5.9%)   0.0262 (  0.6%)  import-clang-decl
   0.0137 (  6.6%)   0.0056 (  2.4%)   0.0193 (  4.3%)   0.0194 (  0.5%)  perform-sema
   0.0136 (  6.5%)   0.0056 (  2.3%)   0.0192 (  4.3%)   0.0193 (  0.5%)  Type checking and Semantic analysis
   0.0091 (  4.4%)   0.0032 (  1.3%)   0.0123 (  2.8%)   0.0124 (  0.3%)  typecheck-stmt
   0.0082 (  3.9%)   0.0041 (  1.7%)   0.0123 (  2.8%)   0.0123 (  0.3%)  SILGen
   0.0042 (  2.0%)   0.0029 (  1.2%)   0.0071 (  1.6%)   0.0075 (  0.2%)  IRGen
   0.0046 (  2.2%)   0.0028 (  1.2%)   0.0074 (  1.7%)   0.0074 (  0.2%)  SILGen-function
   0.0042 (  2.0%)   0.0023 (  1.0%)   0.0064 (  1.4%)   0.0065 (  0.2%)  typecheck-decl
   0.0034 (  1.6%)   0.0001 (  0.0%)   0.0034 (  0.8%)   0.0034 (  0.1%)  SIL optimization
   0.0015 (  0.7%)   0.0005 (  0.2%)   0.0021 (  0.5%)   0.0021 (  0.0%)  typecheck-expr
   0.0008 (  0.4%)   0.0004 (  0.2%)   0.0011 (  0.3%)   0.0011 (  0.0%)  load-all-members
   0.0007 (  0.3%)   0.0001 (  0.0%)   0.0008 (  0.2%)   0.0008 (  0.0%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.2081 (100.0%)   0.2373 (100.0%)   0.4454 (100.0%)   4.1226 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 1.5950 seconds (3.5883 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.8836 (100.0%)   0.7115 (100.0%)   1.5950 (100.0%)   3.5883 (100.0%)  Building Target
   0.8836 (100.0%)   0.7115 (100.0%)   1.5950 (100.0%)   3.5883 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:26:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ResponseDecoder<()>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let none = ResponseDecoder { _, _ in () }
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:11:15: note: consider making generic struct 'ResponseDecoder' conform to the 'Sendable' protocol
public struct ResponseDecoder<Response> {
              ^
                                        : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:26:23: note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    public static let none = ResponseDecoder { _, _ in () }
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let none = ResponseDecoder { _, _ in () }
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:34:23: warning: static property 'data' is not concurrency-safe because non-'Sendable' type 'ResponseDecoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let data = ResponseDecoder { _, data in data }
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:11:15: note: consider making generic struct 'ResponseDecoder' conform to the 'Sendable' protocol
public struct ResponseDecoder<Response> {
              ^
                                        : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:34:23: note: add '@MainActor' to make static property 'data' part of global actor 'MainActor'
    public static let data = ResponseDecoder { _, data in data }
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let data = ResponseDecoder { _, data in data }
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:42:23: warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'ResponseDecoder<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let text = ResponseDecoder<String>.text(encoding: .utf8)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:11:15: note: consider making generic struct 'ResponseDecoder' conform to the 'Sendable' protocol
public struct ResponseDecoder<Response> {
              ^
                                        : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:42:23: note: add '@MainActor' to make static property 'text' part of global actor 'MainActor'
    public static let text = ResponseDecoder<String>.text(encoding: .utf8)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:42:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let text = ResponseDecoder<String>.text(encoding: .utf8)
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ DefaultValue.swift /Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift (in target 'Requests' from project 'Requests')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745504047917329-swift-frontend-Requests-DefaultValue.swift-arm64_apple_tvos9.0-o-Onone-6083907.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.4172 seconds (3.6346 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0211 ( 12.3%)   0.0926 ( 37.8%)   0.1137 ( 27.3%)   1.6624 ( 45.7%)  parse-and-resolve-imports
   0.0198 ( 11.5%)   0.0915 ( 37.4%)   0.1113 ( 26.7%)   1.6599 ( 45.7%)  Import resolution
   0.0875 ( 50.8%)   0.0332 ( 13.6%)   0.1207 ( 28.9%)   0.1237 (  3.4%)  build-rewrite-system
   0.0012 (  0.7%)   0.0033 (  1.3%)   0.0044 (  1.1%)   0.1213 (  3.3%)  load-stdlib
   0.0139 (  8.0%)   0.0120 (  4.9%)   0.0258 (  6.2%)   0.0260 (  0.7%)  import-clang-decl
   0.0048 (  2.8%)   0.0019 (  0.8%)   0.0067 (  1.6%)   0.0067 (  0.2%)  perform-sema
   0.0048 (  2.8%)   0.0019 (  0.8%)   0.0066 (  1.6%)   0.0066 (  0.2%)  Type checking and Semantic analysis
   0.0047 (  2.7%)   0.0018 (  0.7%)   0.0065 (  1.6%)   0.0065 (  0.2%)  typecheck-decl
   0.0027 (  1.5%)   0.0030 (  1.2%)   0.0057 (  1.4%)   0.0058 (  0.2%)  IRGen
   0.0034 (  2.0%)   0.0014 (  0.6%)   0.0048 (  1.1%)   0.0048 (  0.1%)  typecheck-expr
   0.0025 (  1.5%)   0.0008 (  0.3%)   0.0033 (  0.8%)   0.0033 (  0.1%)  SILGen
   0.0021 (  1.2%)   0.0007 (  0.3%)   0.0028 (  0.7%)   0.0028 (  0.1%)  SILGen-function
   0.0019 (  1.1%)   0.0001 (  0.0%)   0.0019 (  0.5%)   0.0019 (  0.1%)  SIL optimization
   0.0012 (  0.7%)   0.0005 (  0.2%)   0.0017 (  0.4%)   0.0017 (  0.0%)  load-all-members
   0.0006 (  0.4%)   0.0004 (  0.2%)   0.0010 (  0.2%)   0.0010 (  0.0%)  precheck-target
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.1723 (100.0%)   0.2449 (100.0%)   0.4172 (100.0%)   3.6346 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 1.8021 seconds (3.5872 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.9397 (100.0%)   0.8623 (100.0%)   1.8021 (100.0%)   3.5872 (100.0%)  Building Target
   0.9397 (100.0%)   0.8623 (100.0%)   1.8021 (100.0%)   3.5872 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:14:23: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let method: HTTPMethod = .get
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:13:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: Hashable, RawRepresentable {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:14:23: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
    public static let method: HTTPMethod = .get
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:14:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let method: HTTPMethod = .get
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:17:23: warning: static property 'header' is not concurrency-safe because non-'Sendable' type 'Header' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let header: Header = .empty
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Header.swift:12:15: note: consider making struct 'Header' conform to the 'Sendable' protocol
public struct Header: Hashable {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:17:23: note: add '@MainActor' to make static property 'header' part of global actor 'MainActor'
    public static let header: Header = .empty
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let header: Header = .empty
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:29:23: warning: static property 'bodyProvider' is not concurrency-safe because non-'Sendable' type 'BodyProvider' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let bodyProvider: BodyProvider = .none
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BodyProvider.swift:26:15: note: consider making struct 'BodyProvider' conform to the 'Sendable' protocol
public struct BodyProvider {
              ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:29:23: note: add '@MainActor' to make static property 'bodyProvider' part of global actor 'MainActor'
    public static let bodyProvider: BodyProvider = .none
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:29:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let bodyProvider: BodyProvider = .none
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:32:23: warning: static property 'authenticationProvider' is not concurrency-safe because non-'Sendable' type 'AuthenticationProvider' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let authenticationProvider: AuthenticationProvider = .none
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:11:15: note: consider making struct 'AuthenticationProvider' conform to the 'Sendable' protocol
public struct AuthenticationProvider {
              ^
                                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:32:23: note: add '@MainActor' to make static property 'authenticationProvider' part of global actor 'MainActor'
    public static let authenticationProvider: AuthenticationProvider = .none
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let authenticationProvider: AuthenticationProvider = .none
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ AuthenticationProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift (in target 'Requests' from project 'Requests')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745504047921188-swift-frontend-Requests-AuthenticationProvider.swift-arm64_apple_tvos9.0-o-Onone-181354407.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.4747 seconds (3.9847 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0223 ( 11.4%)   0.1071 ( 38.5%)   0.1295 ( 27.3%)   1.8481 ( 46.4%)  parse-and-resolve-imports
   0.0208 ( 10.6%)   0.1058 ( 38.1%)   0.1267 ( 26.7%)   1.8453 ( 46.3%)  Import resolution
   0.0856 ( 43.5%)   0.0318 ( 11.4%)   0.1173 ( 24.7%)   0.1183 (  3.0%)  build-rewrite-system
   0.0013 (  0.6%)   0.0032 (  1.1%)   0.0044 (  0.9%)   0.0760 (  1.9%)  load-stdlib
   0.0136 (  6.9%)   0.0101 (  3.6%)   0.0237 (  5.0%)   0.0238 (  0.6%)  import-clang-decl
   0.0094 (  4.8%)   0.0040 (  1.5%)   0.0135 (  2.8%)   0.0135 (  0.3%)  perform-sema
   0.0094 (  4.8%)   0.0040 (  1.5%)   0.0134 (  2.8%)   0.0134 (  0.3%)  Type checking and Semantic analysis
   0.0076 (  3.9%)   0.0020 (  0.7%)   0.0097 (  2.0%)   0.0097 (  0.2%)  SILGen
   0.0060 (  3.1%)   0.0015 (  0.5%)   0.0075 (  1.6%)   0.0075 (  0.2%)  SILGen-function
   0.0051 (  2.6%)   0.0025 (  0.9%)   0.0075 (  1.6%)   0.0075 (  0.2%)  typecheck-stmt
   0.0034 (  1.7%)   0.0028 (  1.0%)   0.0062 (  1.3%)   0.0062 (  0.2%)  IRGen
   0.0042 (  2.1%)   0.0015 (  0.5%)   0.0057 (  1.2%)   0.0057 (  0.1%)  typecheck-decl
   0.0033 (  1.7%)   0.0012 (  0.4%)   0.0044 (  0.9%)   0.0044 (  0.1%)  typecheck-expr
   0.0037 (  1.9%)   0.0001 (  0.0%)   0.0038 (  0.8%)   0.0038 (  0.1%)  SIL optimization
   0.0009 (  0.4%)   0.0004 (  0.1%)   0.0013 (  0.3%)   0.0013 (  0.0%)  load-all-members
   0.0001 (  0.1%)   0.0000 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.1967 (100.0%)   0.2779 (100.0%)   0.4747 (100.0%)   3.9847 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 1.6947 seconds (3.5855 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.9155 (100.0%)   0.7792 (100.0%)   1.6947 (100.0%)   3.5855 (100.0%)  Building Target
   0.9155 (100.0%)   0.7792 (100.0%)   1.6947 (100.0%)   3.5855 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:35:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'AuthenticationProvider' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let none = AuthenticationProvider(authenticate: { _ in })
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:11:15: note: consider making struct 'AuthenticationProvider' conform to the 'Sendable' protocol
public struct AuthenticationProvider {
              ^
                                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:35:23: note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    public static let none = AuthenticationProvider(authenticate: { _ in })
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let none = AuthenticationProvider(authenticate: { _ in })
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:38:23: warning: static property 'bearerToken' is not concurrency-safe because non-'Sendable' type '(String) -> AuthenticationProvider' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let bearerToken: (String) -> AuthenticationProvider = { token in
                      ^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:38:23: note: add '@MainActor' to make static property 'bearerToken' part of global actor 'MainActor'
    public static let bearerToken: (String) -> AuthenticationProvider = { token in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let bearerToken: (String) -> AuthenticationProvider = { token in
                      ^
    nonisolated(unsafe)
SwiftEmitModule normal arm64 Emitting\ module\ for\ Requests (in target 'Requests' from project 'Requests')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745504047913282-swift-frontend-Requests-all-arm64_apple_tvos9.0-swiftmodule-Onone-3332343912.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.6208 seconds (4.0276 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0270 (  9.5%)   0.1110 ( 33.1%)   0.1381 ( 22.2%)   1.8308 ( 45.5%)  parse-and-resolve-imports
   0.0255 (  8.9%)   0.1099 ( 32.8%)   0.1354 ( 21.8%)   1.8281 ( 45.4%)  Import resolution
   0.0143 (  5.0%)   0.0428 ( 12.8%)   0.0571 (  9.2%)   0.0764 (  1.9%)  load-stdlib
   0.0541 ( 18.9%)   0.0145 (  4.3%)   0.0686 ( 11.0%)   0.0686 (  1.7%)  perform-sema
   0.0538 ( 18.9%)   0.0144 (  4.3%)   0.0682 ( 11.0%)   0.0682 (  1.7%)  Type checking and Semantic analysis
   0.0530 ( 18.6%)   0.0140 (  4.2%)   0.0670 ( 10.8%)   0.0670 (  1.7%)  typecheck-decl
   0.0138 (  4.8%)   0.0094 (  2.8%)   0.0233 (  3.7%)   0.0243 (  0.6%)  SIL optimization
   0.0123 (  4.3%)   0.0026 (  0.8%)   0.0149 (  2.4%)   0.0149 (  0.4%)  SILGen
   0.0084 (  2.9%)   0.0022 (  0.7%)   0.0106 (  1.7%)   0.0106 (  0.3%)  typecheck-expr
   0.0035 (  1.2%)   0.0059 (  1.8%)   0.0094 (  1.5%)   0.0104 (  0.3%)  Serialization, swiftmodule
   0.0046 (  1.6%)   0.0043 (  1.3%)   0.0089 (  1.4%)   0.0089 (  0.2%)  import-clang-decl
   0.0070 (  2.5%)   0.0012 (  0.4%)   0.0082 (  1.3%)   0.0082 (  0.2%)  SILGen-function
   0.0047 (  1.6%)   0.0017 (  0.5%)   0.0064 (  1.0%)   0.0064 (  0.2%)  build-rewrite-system
   0.0016 (  0.6%)   0.0012 (  0.4%)   0.0028 (  0.5%)   0.0029 (  0.1%)  Serialization, swiftdoc
   0.0010 (  0.3%)   0.0001 (  0.0%)   0.0011 (  0.2%)   0.0011 (  0.0%)  Serialization, swiftsourceinfo
   0.0006 (  0.2%)   0.0000 (  0.0%)   0.0007 (  0.1%)   0.0007 (  0.0%)  precheck-target
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  associated-type-inference
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-module-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.2854 (100.0%)   0.3354 (100.0%)   0.6208 (100.0%)   4.0276 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.3209 seconds (2.0343 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.1361 (100.0%)   0.1849 (100.0%)   0.3209 (100.0%)   2.0343 (100.0%)  Building Target
   0.1361 (100.0%)   0.1849 (100.0%)   0.3209 (100.0%)   2.0343 (100.0%)  Total
EmitSwiftModule normal arm64 (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:42:16: warning: static property 'connect' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    static let connect: HTTPMethod = "CONNECT"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:13:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: Hashable, RawRepresentable {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:42:16: note: add '@MainActor' to make static property 'connect' part of global actor 'MainActor'
    static let connect: HTTPMethod = "CONNECT"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:42:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let connect: HTTPMethod = "CONNECT"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:44:16: warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    static let delete: HTTPMethod = "DELETE"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:13:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: Hashable, RawRepresentable {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:44:16: note: add '@MainActor' to make static property 'delete' part of global actor 'MainActor'
    static let delete: HTTPMethod = "DELETE"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:44:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let delete: HTTPMethod = "DELETE"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:46:16: warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    static let get: HTTPMethod = "GET"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:13:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: Hashable, RawRepresentable {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:46:16: note: add '@MainActor' to make static property 'get' part of global actor 'MainActor'
    static let get: HTTPMethod = "GET"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:46:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let get: HTTPMethod = "GET"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:48:16: warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    static let head: HTTPMethod = "HEAD"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:13:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: Hashable, RawRepresentable {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:48:16: note: add '@MainActor' to make static property 'head' part of global actor 'MainActor'
    static let head: HTTPMethod = "HEAD"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:48:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let head: HTTPMethod = "HEAD"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:50:16: warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    static let options: HTTPMethod = "OPTIONS"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:13:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: Hashable, RawRepresentable {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:50:16: note: add '@MainActor' to make static property 'options' part of global actor 'MainActor'
    static let options: HTTPMethod = "OPTIONS"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:50:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let options: HTTPMethod = "OPTIONS"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:52:16: warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    static let patch: HTTPMethod = "PATCH"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:13:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: Hashable, RawRepresentable {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:52:16: note: add '@MainActor' to make static property 'patch' part of global actor 'MainActor'
    static let patch: HTTPMethod = "PATCH"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:52:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let patch: HTTPMethod = "PATCH"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:54:16: warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    static let post: HTTPMethod = "POST"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:13:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: Hashable, RawRepresentable {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:54:16: note: add '@MainActor' to make static property 'post' part of global actor 'MainActor'
    static let post: HTTPMethod = "POST"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:54:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let post: HTTPMethod = "POST"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:56:16: warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    static let put: HTTPMethod = "PUT"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:13:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: Hashable, RawRepresentable {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:56:16: note: add '@MainActor' to make static property 'put' part of global actor 'MainActor'
    static let put: HTTPMethod = "PUT"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:56:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let put: HTTPMethod = "PUT"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:58:16: warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    static let trace: HTTPMethod = "TRACE"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:13:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: Hashable, RawRepresentable {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:58:16: note: add '@MainActor' to make static property 'trace' part of global actor 'MainActor'
    static let trace: HTTPMethod = "TRACE"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:58:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let trace: HTTPMethod = "TRACE"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:127:16: warning: static property 'application' is not concurrency-safe because non-'Sendable' type 'MediaType.TopLevelType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let application = MediaType.TopLevelType("application")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:46:19: note: consider making struct 'TopLevelType' conform to the 'Sendable' protocol
    public struct TopLevelType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:127:16: note: add '@MainActor' to make static property 'application' part of global actor 'MainActor'
    static let application = MediaType.TopLevelType("application")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:127:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let application = MediaType.TopLevelType("application")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:129:16: warning: static property 'audio' is not concurrency-safe because non-'Sendable' type 'MediaType.TopLevelType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let audio = MediaType.TopLevelType("audio")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:46:19: note: consider making struct 'TopLevelType' conform to the 'Sendable' protocol
    public struct TopLevelType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:129:16: note: add '@MainActor' to make static property 'audio' part of global actor 'MainActor'
    static let audio = MediaType.TopLevelType("audio")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:129:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let audio = MediaType.TopLevelType("audio")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:131:16: warning: static property 'font' is not concurrency-safe because non-'Sendable' type 'MediaType.TopLevelType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let font = MediaType.TopLevelType("font")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:46:19: note: consider making struct 'TopLevelType' conform to the 'Sendable' protocol
    public struct TopLevelType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:131:16: note: add '@MainActor' to make static property 'font' part of global actor 'MainActor'
    static let font = MediaType.TopLevelType("font")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:131:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let font = MediaType.TopLevelType("font")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:133:16: warning: static property 'image' is not concurrency-safe because non-'Sendable' type 'MediaType.TopLevelType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let image = MediaType.TopLevelType("image")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:46:19: note: consider making struct 'TopLevelType' conform to the 'Sendable' protocol
    public struct TopLevelType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:133:16: note: add '@MainActor' to make static property 'image' part of global actor 'MainActor'
    static let image = MediaType.TopLevelType("image")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:133:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let image = MediaType.TopLevelType("image")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:135:16: warning: static property 'message' is not concurrency-safe because non-'Sendable' type 'MediaType.TopLevelType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let message = MediaType.TopLevelType("message")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:46:19: note: consider making struct 'TopLevelType' conform to the 'Sendable' protocol
    public struct TopLevelType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:135:16: note: add '@MainActor' to make static property 'message' part of global actor 'MainActor'
    static let message = MediaType.TopLevelType("message")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:135:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let message = MediaType.TopLevelType("message")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:137:16: warning: static property 'model' is not concurrency-safe because non-'Sendable' type 'MediaType.TopLevelType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let model = MediaType.TopLevelType("model")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:46:19: note: consider making struct 'TopLevelType' conform to the 'Sendable' protocol
    public struct TopLevelType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:137:16: note: add '@MainActor' to make static property 'model' part of global actor 'MainActor'
    static let model = MediaType.TopLevelType("model")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:137:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let model = MediaType.TopLevelType("model")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:139:16: warning: static property 'multipart' is not concurrency-safe because non-'Sendable' type 'MediaType.TopLevelType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let multipart = MediaType.TopLevelType("multipart")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:46:19: note: consider making struct 'TopLevelType' conform to the 'Sendable' protocol
    public struct TopLevelType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:139:16: note: add '@MainActor' to make static property 'multipart' part of global actor 'MainActor'
    static let multipart = MediaType.TopLevelType("multipart")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:139:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let multipart = MediaType.TopLevelType("multipart")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:141:16: warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'MediaType.TopLevelType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let text = MediaType.TopLevelType("text")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:46:19: note: consider making struct 'TopLevelType' conform to the 'Sendable' protocol
    public struct TopLevelType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:141:16: note: add '@MainActor' to make static property 'text' part of global actor 'MainActor'
    static let text = MediaType.TopLevelType("text")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:141:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let text = MediaType.TopLevelType("text")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:143:16: warning: static property 'video' is not concurrency-safe because non-'Sendable' type 'MediaType.TopLevelType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let video = MediaType.TopLevelType("video")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:46:19: note: consider making struct 'TopLevelType' conform to the 'Sendable' protocol
    public struct TopLevelType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:143:16: note: add '@MainActor' to make static property 'video' part of global actor 'MainActor'
    static let video = MediaType.TopLevelType("video")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:143:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let video = MediaType.TopLevelType("video")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:150:16: warning: static property 'plain' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let plain = MediaType.SubType("plain")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:150:16: note: add '@MainActor' to make static property 'plain' part of global actor 'MainActor'
    static let plain = MediaType.SubType("plain")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:150:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let plain = MediaType.SubType("plain")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:152:16: warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let html = MediaType.SubType("html")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:152:16: note: add '@MainActor' to make static property 'html' part of global actor 'MainActor'
    static let html = MediaType.SubType("html")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:152:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let html = MediaType.SubType("html")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:154:16: warning: static property 'css' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let css = MediaType.SubType("css")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:154:16: note: add '@MainActor' to make static property 'css' part of global actor 'MainActor'
    static let css = MediaType.SubType("css")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:154:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let css = MediaType.SubType("css")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:156:16: warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let json = MediaType.SubType("json")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:156:16: note: add '@MainActor' to make static property 'json' part of global actor 'MainActor'
    static let json = MediaType.SubType("json")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:156:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let json = MediaType.SubType("json")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:158:16: warning: static property 'xml' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let xml = MediaType.SubType("xml")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:158:16: note: add '@MainActor' to make static property 'xml' part of global actor 'MainActor'
    static let xml = MediaType.SubType("xml")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:158:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let xml = MediaType.SubType("xml")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:160:16: warning: static property 'urlEncodedForm' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let urlEncodedForm = MediaType.SubType("x-www-form-urlencoded")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:160:16: note: add '@MainActor' to make static property 'urlEncodedForm' part of global actor 'MainActor'
    static let urlEncodedForm = MediaType.SubType("x-www-form-urlencoded")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:160:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let urlEncodedForm = MediaType.SubType("x-www-form-urlencoded")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:162:16: warning: static property 'octetStream' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let octetStream = MediaType.SubType("octet-stream")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:162:16: note: add '@MainActor' to make static property 'octetStream' part of global actor 'MainActor'
    static let octetStream = MediaType.SubType("octet-stream")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:162:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let octetStream = MediaType.SubType("octet-stream")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:164:16: warning: static property 'formData' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let formData = MediaType.SubType("form-data")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:164:16: note: add '@MainActor' to make static property 'formData' part of global actor 'MainActor'
    static let formData = MediaType.SubType("form-data")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:164:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let formData = MediaType.SubType("form-data")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:166:16: warning: static property 'gif' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let gif = MediaType.SubType("gif")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:166:16: note: add '@MainActor' to make static property 'gif' part of global actor 'MainActor'
    static let gif = MediaType.SubType("gif")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:166:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let gif = MediaType.SubType("gif")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:168:16: warning: static property 'png' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let png = MediaType.SubType("png")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:168:16: note: add '@MainActor' to make static property 'png' part of global actor 'MainActor'
    static let png = MediaType.SubType("png")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:168:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let png = MediaType.SubType("png")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:170:16: warning: static property 'jpeg' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let jpeg = MediaType.SubType("jpeg")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:170:16: note: add '@MainActor' to make static property 'jpeg' part of global actor 'MainActor'
    static let jpeg = MediaType.SubType("jpeg")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:170:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let jpeg = MediaType.SubType("jpeg")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:172:16: warning: static property 'svg' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let svg = MediaType.SubType("svg+xml")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:172:16: note: add '@MainActor' to make static property 'svg' part of global actor 'MainActor'
    static let svg = MediaType.SubType("svg+xml")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:172:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let svg = MediaType.SubType("svg+xml")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:181:16: warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let json = MediaType(type: .application, subtype: .json, parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:181:16: note: add '@MainActor' to make static property 'json' part of global actor 'MainActor'
    static let json = MediaType(type: .application, subtype: .json, parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:181:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let json = MediaType(type: .application, subtype: .json, parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:183:16: warning: static property 'xml' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let xml = MediaType(type: .application, subtype: .xml, parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:183:16: note: add '@MainActor' to make static property 'xml' part of global actor 'MainActor'
    static let xml = MediaType(type: .application, subtype: .xml, parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:183:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let xml = MediaType(type: .application, subtype: .xml, parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:185:16: warning: static property 'urlEncodedForm' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let urlEncodedForm = MediaType(type: .application, subtype: .urlEncodedForm,
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:185:16: note: add '@MainActor' to make static property 'urlEncodedForm' part of global actor 'MainActor'
    static let urlEncodedForm = MediaType(type: .application, subtype: .urlEncodedForm,
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:185:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let urlEncodedForm = MediaType(type: .application, subtype: .urlEncodedForm,
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:188:16: warning: static property 'binary' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let binary = MediaType(type: .application, subtype: .octetStream)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:188:16: note: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
    static let binary = MediaType(type: .application, subtype: .octetStream)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:188:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let binary = MediaType(type: .application, subtype: .octetStream)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:192:16: warning: static property 'plainText' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let plainText = MediaType(type: .text, subtype: .plain, parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:192:16: note: add '@MainActor' to make static property 'plainText' part of global actor 'MainActor'
    static let plainText = MediaType(type: .text, subtype: .plain, parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:192:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let plainText = MediaType(type: .text, subtype: .plain, parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:194:16: warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let html = MediaType(type: .text, subtype: .html, parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:194:16: note: add '@MainActor' to make static property 'html' part of global actor 'MainActor'
    static let html = MediaType(type: .text, subtype: .html, parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:194:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let html = MediaType(type: .text, subtype: .html, parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:196:16: warning: static property 'css' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let css = MediaType(type: .text, subtype: .css, parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:196:16: note: add '@MainActor' to make static property 'css' part of global actor 'MainActor'
    static let css = MediaType(type: .text, subtype: .css, parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:196:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let css = MediaType(type: .text, subtype: .css, parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:200:16: warning: static property 'gif' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let gif = MediaType(type: .image, subtype: .gif)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:200:16: note: add '@MainActor' to make static property 'gif' part of global actor 'MainActor'
    static let gif = MediaType(type: .image, subtype: .gif)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:200:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let gif = MediaType(type: .image, subtype: .gif)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:202:16: warning: static property 'png' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let png = MediaType(type: .image, subtype: .png)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:202:16: note: add '@MainActor' to make static property 'png' part of global actor 'MainActor'
    static let png = MediaType(type: .image, subtype: .png)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:202:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let png = MediaType(type: .image, subtype: .png)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:204:16: warning: static property 'jpeg' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let jpeg = MediaType(type: .image, subtype: .jpeg)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:204:16: note: add '@MainActor' to make static property 'jpeg' part of global actor 'MainActor'
    static let jpeg = MediaType(type: .image, subtype: .jpeg)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:204:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let jpeg = MediaType(type: .image, subtype: .jpeg)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:206:16: warning: static property 'svg' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let svg = MediaType(type: .image, subtype: .svg)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:206:16: note: add '@MainActor' to make static property 'svg' part of global actor 'MainActor'
    static let svg = MediaType(type: .image, subtype: .svg)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:206:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let svg = MediaType(type: .image, subtype: .svg)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:211:16: warning: static property 'formData' is not concurrency-safe because non-'Sendable' type '(String) -> MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let formData: (String) -> MediaType = { boundary in
               ^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:211:16: note: add '@MainActor' to make static property 'formData' part of global actor 'MainActor'
    static let formData: (String) -> MediaType = { boundary in
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:211:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let formData: (String) -> MediaType = { boundary in
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:88:16: warning: static property 'accept' is not concurrency-safe because non-'Sendable' type 'Field.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    static let accept: Field.Name = "Accept"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:15:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: Hashable, RawRepresentable, ExpressibleByStringLiteral, CustomStringConvertible {
                  ^
                                                                                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:88:16: note: add '@MainActor' to make static property 'accept' part of global actor 'MainActor'
    static let accept: Field.Name = "Accept"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:88:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let accept: Field.Name = "Accept"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:90:16: warning: static property 'acceptLanguage' is not concurrency-safe because non-'Sendable' type 'Field.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    static let acceptLanguage: Field.Name = "Accept-Language"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:15:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: Hashable, RawRepresentable, ExpressibleByStringLiteral, CustomStringConvertible {
                  ^
                                                                                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:90:16: note: add '@MainActor' to make static property 'acceptLanguage' part of global actor 'MainActor'
    static let acceptLanguage: Field.Name = "Accept-Language"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:90:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let acceptLanguage: Field.Name = "Accept-Language"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:92:16: warning: static property 'authorization' is not concurrency-safe because non-'Sendable' type 'Field.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    static let authorization: Field.Name = "Authorization"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:15:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: Hashable, RawRepresentable, ExpressibleByStringLiteral, CustomStringConvertible {
                  ^
                                                                                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:92:16: note: add '@MainActor' to make static property 'authorization' part of global actor 'MainActor'
    static let authorization: Field.Name = "Authorization"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:92:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let authorization: Field.Name = "Authorization"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:94:16: warning: static property 'contentType' is not concurrency-safe because non-'Sendable' type 'Field.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    static let contentType: Field.Name = "Content-Type"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:15:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: Hashable, RawRepresentable, ExpressibleByStringLiteral, CustomStringConvertible {
                  ^
                                                                                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:94:16: note: add '@MainActor' to make static property 'contentType' part of global actor 'MainActor'
    static let contentType: Field.Name = "Content-Type"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:94:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let contentType: Field.Name = "Content-Type"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:100:16: warning: static property 'contentType' is not concurrency-safe because non-'Sendable' type '(MediaType) -> Field' may have shared mutable state; this is an error in the Swift 6 language mode
    static let contentType: (MediaType) -> Field = { Field(name: .contentType, value: $0.rawValue) }
               ^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:100:16: note: add '@MainActor' to make static property 'contentType' part of global actor 'MainActor'
    static let contentType: (MediaType) -> Field = { Field(name: .contentType, value: $0.rawValue) }
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:100:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let contentType: (MediaType) -> Field = { Field(name: .contentType, value: $0.rawValue) }
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:102:16: warning: static property 'accept' is not concurrency-safe because non-'Sendable' type '(MediaType) -> Field' may have shared mutable state; this is an error in the Swift 6 language mode
    static let accept: (MediaType) -> Field = { Field(name: .accept, value: $0.rawValue) }
               ^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:102:16: note: add '@MainActor' to make static property 'accept' part of global actor 'MainActor'
    static let accept: (MediaType) -> Field = { Field(name: .accept, value: $0.rawValue) }
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:102:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let accept: (MediaType) -> Field = { Field(name: .accept, value: $0.rawValue) }
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:104:16: warning: static property 'acceptLanguage' is not concurrency-safe because non-'Sendable' type '(String) -> Field' may have shared mutable state; this is an error in the Swift 6 language mode
    static let acceptLanguage = { Field(name: .acceptLanguage, value: $0) }
               ^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:104:16: note: add '@MainActor' to make static property 'acceptLanguage' part of global actor 'MainActor'
    static let acceptLanguage = { Field(name: .acceptLanguage, value: $0) }
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:104:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let acceptLanguage = { Field(name: .acceptLanguage, value: $0) }
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BodyProvider.swift:44:16: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'BodyProvider' may have shared mutable state; this is an error in the Swift 6 language mode
    static let none = BodyProvider { header in
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BodyProvider.swift:26:15: note: consider making struct 'BodyProvider' conform to the 'Sendable' protocol
public struct BodyProvider {
              ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BodyProvider.swift:44:16: note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    static let none = BodyProvider { header in
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BodyProvider.swift:44:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let none = BodyProvider { header in
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:14:23: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let method: HTTPMethod = .get
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:13:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: Hashable, RawRepresentable {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:14:23: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
    public static let method: HTTPMethod = .get
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:14:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let method: HTTPMethod = .get
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:17:23: warning: static property 'header' is not concurrency-safe because non-'Sendable' type 'Header' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let header: Header = .empty
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Header.swift:12:15: note: consider making struct 'Header' conform to the 'Sendable' protocol
public struct Header: Hashable {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:17:23: note: add '@MainActor' to make static property 'header' part of global actor 'MainActor'
    public static let header: Header = .empty
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let header: Header = .empty
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:29:23: warning: static property 'bodyProvider' is not concurrency-safe because non-'Sendable' type 'BodyProvider' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let bodyProvider: BodyProvider = .none
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BodyProvider.swift:26:15: note: consider making struct 'BodyProvider' conform to the 'Sendable' protocol
public struct BodyProvider {
              ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:29:23: note: add '@MainActor' to make static property 'bodyProvider' part of global actor 'MainActor'
    public static let bodyProvider: BodyProvider = .none
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:29:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let bodyProvider: BodyProvider = .none
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:32:23: warning: static property 'authenticationProvider' is not concurrency-safe because non-'Sendable' type 'AuthenticationProvider' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let authenticationProvider: AuthenticationProvider = .none
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:11:15: note: consider making struct 'AuthenticationProvider' conform to the 'Sendable' protocol
public struct AuthenticationProvider {
              ^
                                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:32:23: note: add '@MainActor' to make static property 'authenticationProvider' part of global actor 'MainActor'
    public static let authenticationProvider: AuthenticationProvider = .none
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let authenticationProvider: AuthenticationProvider = .none
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:26:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ResponseDecoder<()>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let none = ResponseDecoder { _, _ in () }
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:11:15: note: consider making generic struct 'ResponseDecoder' conform to the 'Sendable' protocol
public struct ResponseDecoder<Response> {
              ^
                                        : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:26:23: note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    public static let none = ResponseDecoder { _, _ in () }
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let none = ResponseDecoder { _, _ in () }
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:34:23: warning: static property 'data' is not concurrency-safe because non-'Sendable' type 'ResponseDecoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let data = ResponseDecoder { _, data in data }
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:11:15: note: consider making generic struct 'ResponseDecoder' conform to the 'Sendable' protocol
public struct ResponseDecoder<Response> {
              ^
                                        : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:34:23: note: add '@MainActor' to make static property 'data' part of global actor 'MainActor'
    public static let data = ResponseDecoder { _, data in data }
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let data = ResponseDecoder { _, data in data }
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:42:23: warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'ResponseDecoder<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let text = ResponseDecoder<String>.text(encoding: .utf8)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:11:15: note: consider making generic struct 'ResponseDecoder' conform to the 'Sendable' protocol
public struct ResponseDecoder<Response> {
              ^
                                        : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:42:23: note: add '@MainActor' to make static property 'text' part of global actor 'MainActor'
    public static let text = ResponseDecoder<String>.text(encoding: .utf8)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:42:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let text = ResponseDecoder<String>.text(encoding: .utf8)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/URLQueryItem+ExpresibleByDictionaryLiteral.swift:7:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Array: ExpressibleByDictionaryLiteral where Element == URLQueryItem {
^
/Users/admin/builder/spi-builder-workspace/Sources/URLQueryItem+ExpresibleByDictionaryLiteral.swift:7:1: note: add '@retroactive' to silence this warning
extension Array: ExpressibleByDictionaryLiteral where Element == URLQueryItem {
^                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                 @retroactive ExpressibleByDictionaryLiteral
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:35:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'AuthenticationProvider' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let none = AuthenticationProvider(authenticate: { _ in })
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:11:15: note: consider making struct 'AuthenticationProvider' conform to the 'Sendable' protocol
public struct AuthenticationProvider {
              ^
                                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:35:23: note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    public static let none = AuthenticationProvider(authenticate: { _ in })
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let none = AuthenticationProvider(authenticate: { _ in })
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:38:23: warning: static property 'bearerToken' is not concurrency-safe because non-'Sendable' type '(String) -> AuthenticationProvider' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let bearerToken: (String) -> AuthenticationProvider = { token in
                      ^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:38:23: note: add '@MainActor' to make static property 'bearerToken' part of global actor 'MainActor'
    public static let bearerToken: (String) -> AuthenticationProvider = { token in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let bearerToken: (String) -> AuthenticationProvider = { token in
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ URLQueryItem+ExpresibleByDictionaryLiteral.swift /Users/admin/builder/spi-builder-workspace/Sources/URLQueryItem+ExpresibleByDictionaryLiteral.swift (in target 'Requests' from project 'Requests')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745504050048816-swift-frontend-Requests-URLQueryItem_ExpresibleByDictionaryLiteral.swift-arm64_apple_tvos9.0-o-Onone-1282297061.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.2248 seconds (0.2267 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0588 ( 43.5%)   0.0239 ( 26.6%)   0.0827 ( 36.8%)   0.0838 ( 37.0%)  build-rewrite-system
   0.0204 ( 15.1%)   0.0228 ( 25.4%)   0.0431 ( 19.2%)   0.0434 ( 19.1%)  parse-and-resolve-imports
   0.0191 ( 14.1%)   0.0214 ( 23.9%)   0.0405 ( 18.0%)   0.0408 ( 18.0%)  Import resolution
   0.0118 (  8.7%)   0.0098 ( 10.9%)   0.0215 (  9.6%)   0.0216 (  9.5%)  import-clang-decl
   0.0034 (  2.5%)   0.0032 (  3.5%)   0.0065 (  2.9%)   0.0065 (  2.9%)  IRGen
   0.0041 (  3.0%)   0.0016 (  1.8%)   0.0057 (  2.6%)   0.0058 (  2.5%)  perform-sema
   0.0041 (  3.0%)   0.0016 (  1.8%)   0.0057 (  2.5%)   0.0057 (  2.5%)  Type checking and Semantic analysis
   0.0024 (  1.8%)   0.0010 (  1.1%)   0.0034 (  1.5%)   0.0034 (  1.5%)  typecheck-decl
   0.0011 (  0.8%)   0.0021 (  2.3%)   0.0031 (  1.4%)   0.0032 (  1.4%)  load-stdlib
   0.0030 (  2.2%)   0.0001 (  0.2%)   0.0031 (  1.4%)   0.0031 (  1.4%)  SIL optimization
   0.0020 (  1.5%)   0.0006 (  0.7%)   0.0026 (  1.2%)   0.0026 (  1.1%)  SILGen
   0.0015 (  1.1%)   0.0006 (  0.6%)   0.0021 (  0.9%)   0.0021 (  0.9%)  typecheck-stmt
   0.0015 (  1.1%)   0.0006 (  0.6%)   0.0021 (  0.9%)   0.0021 (  0.9%)  typecheck-expr
   0.0011 (  0.8%)   0.0003 (  0.3%)   0.0014 (  0.6%)   0.0014 (  0.6%)  SILGen-function
   0.0008 (  0.6%)   0.0002 (  0.2%)   0.0010 (  0.4%)   0.0010 (  0.4%)  load-all-members
   0.0001 (  0.1%)   0.0000 (  0.0%)   0.0001 (  0.1%)   0.0001 (  0.1%)  get-conformance-access-path
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.1352 (100.0%)   0.0897 (100.0%)   0.2248 (100.0%)   0.2267 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 1.3546 seconds (1.4579 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.6628 (100.0%)   0.6918 (100.0%)   1.3546 (100.0%)   1.4579 (100.0%)  Building Target
   0.6628 (100.0%)   0.6918 (100.0%)   1.3546 (100.0%)   1.4579 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/URLQueryItem+ExpresibleByDictionaryLiteral.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/URLQueryItem+ExpresibleByDictionaryLiteral.swift:7:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Array: ExpressibleByDictionaryLiteral where Element == URLQueryItem {
^
/Users/admin/builder/spi-builder-workspace/Sources/URLQueryItem+ExpresibleByDictionaryLiteral.swift:7:1: note: add '@retroactive' to silence this warning
extension Array: ExpressibleByDictionaryLiteral where Element == URLQueryItem {
^                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                 @retroactive ExpressibleByDictionaryLiteral
SwiftDriverJobDiscovery normal arm64 Emitting module for Requests (in target 'Requests' from project 'Requests')
SwiftDriver\ Compilation\ Requirements Requests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Requests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos9.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -application-extension -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests-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/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests.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/Requests.build/Debug-appletvos/Requests.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling HTTPMethod.swift, MediaType.swift (in target 'Requests' from project 'Requests')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Requests.framework/Headers/Requests-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests-Swift.h (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Requests.framework/Headers/Requests-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Requests.framework/Modules/Requests.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests.swiftmodule (in target 'Requests' from project 'Requests')
    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/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Requests.framework/Modules/Requests.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Requests.framework/Modules/Requests.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests.swiftdoc (in target 'Requests' from project 'Requests')
    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/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Requests.framework/Modules/Requests.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Requests.framework/Modules/Requests.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests.abi.json (in target 'Requests' from project 'Requests')
    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/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Requests.framework/Modules/Requests.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Requests.framework/Modules/Requests.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests.swiftsourceinfo (in target 'Requests' from project 'Requests')
    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/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Requests.framework/Modules/Requests.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
ScanDependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests_vers.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/DerivedSources/Requests_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp

    builtin-ScanDependencies -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests_vers.o.scan -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests_vers.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests_vers.dia -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/DerivedSources/Requests_vers.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests_vers.o -index-unit-output-path /Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests_vers.o
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests_vers.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/DerivedSources/Requests_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp

    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests_vers.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests_vers.dia -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/DerivedSources/Requests_vers.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests_vers.o -index-unit-output-path /Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests_vers.o
SwiftDriverJobDiscovery normal arm64 Compiling URLQueryItem+ExpresibleByDictionaryLiteral.swift (in target 'Requests' from project 'Requests')
SwiftDriverJobDiscovery normal arm64 Compiling ResponseDecoder.swift (in target 'Requests' from project 'Requests')
SwiftDriverJobDiscovery normal arm64 Compiling AuthenticationProvider.swift (in target 'Requests' from project 'Requests')
SwiftDriverJobDiscovery normal arm64 Compiling DefaultValue.swift (in target 'Requests' from project 'Requests')
SwiftDriverJobDiscovery normal arm64 Compiling CaseInsensitiveString.swift, RequestError.swift (in target 'Requests' from project 'Requests')
SwiftDriverJobDiscovery normal arm64 Compiling URLSession+Requests.swift, Header.swift (in target 'Requests' from project 'Requests')
SwiftDriverJobDiscovery normal arm64 Compiling RequestConvertible.swift, BodyProvider.swift (in target 'Requests' from project 'Requests')
SwiftDriverJobDiscovery normal arm64 Compiling Field.swift, RequestBody.swift (in target 'Requests' from project 'Requests')
SwiftDriverJobDiscovery normal arm64 Compiling Request.swift, URL+StaticString.swift (in target 'Requests' from project 'Requests')
SwiftDriver\ Compilation Requests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Requests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos9.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -application-extension -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests-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/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests.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/Requests.build/Debug-appletvos/Requests.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Requests.framework/Requests normal (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos9.0 -dynamiclib -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests.LinkFileList -install_name @rpath/Requests.framework/Requests -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests_dependency_info.dat -fapplication-extension -fprofile-instr-generate -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Requests.framework/Requests
ExtractAppIntentsMetadata (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name Requests --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 9.0 --bundle-identifier Requests --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Requests.framework --target-triple arm64-apple-tvos9.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Requests.framework/Requests --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Requests.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Requests.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-appletvos/Requests.build/Objects-normal/arm64/Requests.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-24 07:14:11.934 appintentsmetadataprocessor[710:3966] Starting appintentsmetadataprocessor export
2025-04-24 07:14:11.937 appintentsmetadataprocessor[710:3966] warning: Metadata extraction skipped. No AppIntents.framework dependency found.
GenerateTAPI /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos/Requests.framework/Requests.tbd (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/tapi stubify -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Requests.framework/Requests -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos/Requests.framework/Requests.tbd
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Requests.framework (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Requests.framework
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Requests.framework (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace
    /usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Requests.framework
/Users/admin/builder/spi-builder-workspace/Requests.xcodeproj: warning: The tvOS deployment target 'TVOS_DEPLOYMENT_TARGET' is set to 9.0, but the range of supported deployment target versions is 12.0 to 18.4.99. (in target 'Requests' from project 'Requests')
warning: Run script build phase 'Run SwiftLint' will be run during every build because it does not specify any outputs. To address this issue, either add output dependencies to the script phase, or configure it to run in every build by unchecking "Based on dependency analysis" in the script phase. (in target 'Requests' from project 'Requests')
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Requests",
  "name" : "Requests",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Requests",
      "targets" : [
        "Requests"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "RequestsTests",
      "module_type" : "SwiftTarget",
      "name" : "RequestsTests",
      "path" : "Tests",
      "sources" : [
        "AuthenticationProviderTests.swift",
        "BodyProviderTests.swift",
        "CaseInsensitiveStringTests.swift",
        "FieldTests.swift",
        "HTTPMethodTests.swift",
        "HTTPStubProtocol.swift",
        "HeaderTests.swift",
        "MediaTypeTests.swift",
        "RequestConvertibleTests.swift",
        "RequestTests.swift",
        "URLQueryItem+ExpressibleByDictionaryLiteralTests.swift",
        "URLSessionExtensionTests.swift"
      ],
      "target_dependencies" : [
        "Requests"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Requests",
      "module_type" : "SwiftTarget",
      "name" : "Requests",
      "path" : "Sources",
      "product_memberships" : [
        "Requests"
      ],
      "sources" : [
        "AuthenticationProvider.swift",
        "BodyProvider.swift",
        "CaseInsensitiveString.swift",
        "DefaultValue.swift",
        "Field.swift",
        "HTTPMethod.swift",
        "Header.swift",
        "MediaType.swift",
        "Request.swift",
        "RequestBody.swift",
        "RequestConvertible.swift",
        "RequestError.swift",
        "ResponseDecoder.swift",
        "URL+StaticString.swift",
        "URLQueryItem+ExpresibleByDictionaryLiteral.swift",
        "URLSession+Requests.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.