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 HTTPMediaTypes, reference master (cbbb33), with Swift 6.1 for watchOS using Xcode 16.3 on 25 Apr 2025 23:37:43 UTC.

Swift 6 data race errors: 87

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme HTTPMediaTypes -destination generic/platform=watchOS 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

              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:193:16: note: add '@MainActor' to make static property 'jsonAPI' part of global actor 'MainActor'
    static let jsonAPI = HTTPMediaType(type: "application", subType: "vnd.api+json", parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:193:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let jsonAPI = HTTPMediaType(type: "application", subType: "vnd.api+json", parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:195:16: warning: static property 'xml' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let xml = HTTPMediaType(type: "application", subType: "xml", parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:195:16: note: add '@MainActor' to make static property 'xml' part of global actor 'MainActor'
    static let xml = HTTPMediaType(type: "application", subType: "xml", parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:195:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let xml = HTTPMediaType(type: "application", subType: "xml", parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:197:16: warning: static property 'dtd' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let dtd = HTTPMediaType(type: "application", subType: "xml-dtd", parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:197:16: note: add '@MainActor' to make static property 'dtd' part of global actor 'MainActor'
    static let dtd = HTTPMediaType(type: "application", subType: "xml-dtd", parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:197:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let dtd = HTTPMediaType(type: "application", subType: "xml-dtd", parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:199:16: warning: static property 'pdf' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let pdf = HTTPMediaType(type: "application", subType: "pdf")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:199:16: note: add '@MainActor' to make static property 'pdf' part of global actor 'MainActor'
    static let pdf = HTTPMediaType(type: "application", subType: "pdf")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:199:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let pdf = HTTPMediaType(type: "application", subType: "pdf")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:201:16: warning: static property 'zip' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let zip = HTTPMediaType(type: "application", subType: "zip")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:201:16: note: add '@MainActor' to make static property 'zip' part of global actor 'MainActor'
    static let zip = HTTPMediaType(type: "application", subType: "zip")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:201:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let zip = HTTPMediaType(type: "application", subType: "zip")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:203:16: warning: static property 'tar' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let tar = HTTPMediaType(type: "application", subType: "x-tar")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:203:16: note: add '@MainActor' to make static property 'tar' part of global actor 'MainActor'
    static let tar = HTTPMediaType(type: "application", subType: "x-tar")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:203:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let tar = HTTPMediaType(type: "application", subType: "x-tar")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:205:16: warning: static property 'gzip' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let gzip = HTTPMediaType(type: "application", subType: "x-gzip")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:205:16: note: add '@MainActor' to make static property 'gzip' part of global actor 'MainActor'
    static let gzip = HTTPMediaType(type: "application", subType: "x-gzip")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:205:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let gzip = HTTPMediaType(type: "application", subType: "x-gzip")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:207:16: warning: static property 'bzip2' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let bzip2 = HTTPMediaType(type: "application", subType: "x-bzip2")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:207:16: note: add '@MainActor' to make static property 'bzip2' part of global actor 'MainActor'
    static let bzip2 = HTTPMediaType(type: "application", subType: "x-bzip2")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:207:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let bzip2 = HTTPMediaType(type: "application", subType: "x-bzip2")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:209:16: warning: static property 'binary' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let binary = HTTPMediaType(type: "application", subType: "octet-stream")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:209:16: note: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
    static let binary = HTTPMediaType(type: "application", subType: "octet-stream")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:209:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let binary = HTTPMediaType(type: "application", subType: "octet-stream")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:211:16: warning: static property 'gif' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let gif = HTTPMediaType(type: "image", subType: "gif")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:211:16: note: add '@MainActor' to make static property 'gif' part of global actor 'MainActor'
    static let gif = HTTPMediaType(type: "image", subType: "gif")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:211:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let gif = HTTPMediaType(type: "image", subType: "gif")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:213:16: warning: static property 'jpeg' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let jpeg = HTTPMediaType(type: "image", subType: "jpeg")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:213:16: note: add '@MainActor' to make static property 'jpeg' part of global actor 'MainActor'
    static let jpeg = HTTPMediaType(type: "image", subType: "jpeg")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:213:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let jpeg = HTTPMediaType(type: "image", subType: "jpeg")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:215:16: warning: static property 'png' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let png = HTTPMediaType(type: "image", subType: "png")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:215:16: note: add '@MainActor' to make static property 'png' part of global actor 'MainActor'
    static let png = HTTPMediaType(type: "image", subType: "png")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:215:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let png = HTTPMediaType(type: "image", subType: "png")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:217:16: warning: static property 'svg' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let svg = HTTPMediaType(type: "image", subType: "svg+xml")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:217:16: note: add '@MainActor' to make static property 'svg' part of global actor 'MainActor'
    static let svg = HTTPMediaType(type: "image", subType: "svg+xml")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:217:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let svg = HTTPMediaType(type: "image", subType: "svg+xml")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:219:16: warning: static property 'audio' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let audio = HTTPMediaType(type: "audio", subType: "basic")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:219:16: note: add '@MainActor' to make static property 'audio' part of global actor 'MainActor'
    static let audio = HTTPMediaType(type: "audio", subType: "basic")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:219:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let audio = HTTPMediaType(type: "audio", subType: "basic")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:221:16: warning: static property 'midi' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let midi = HTTPMediaType(type: "audio", subType: "x-midi")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:221:16: note: add '@MainActor' to make static property 'midi' part of global actor 'MainActor'
    static let midi = HTTPMediaType(type: "audio", subType: "x-midi")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:221:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let midi = HTTPMediaType(type: "audio", subType: "x-midi")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:223:16: warning: static property 'mp3' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mp3 = HTTPMediaType(type: "audio", subType: "mpeg")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:223:16: note: add '@MainActor' to make static property 'mp3' part of global actor 'MainActor'
    static let mp3 = HTTPMediaType(type: "audio", subType: "mpeg")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:223:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mp3 = HTTPMediaType(type: "audio", subType: "mpeg")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:225:16: warning: static property 'wave' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let wave = HTTPMediaType(type: "audio", subType: "wav")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:225:16: note: add '@MainActor' to make static property 'wave' part of global actor 'MainActor'
    static let wave = HTTPMediaType(type: "audio", subType: "wav")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:225:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let wave = HTTPMediaType(type: "audio", subType: "wav")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:227:16: warning: static property 'ogg' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ogg = HTTPMediaType(type: "audio", subType: "vorbis")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:227:16: note: add '@MainActor' to make static property 'ogg' part of global actor 'MainActor'
    static let ogg = HTTPMediaType(type: "audio", subType: "vorbis")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:227:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ogg = HTTPMediaType(type: "audio", subType: "vorbis")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:229:16: warning: static property 'avi' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let avi = HTTPMediaType(type: "video", subType: "avi")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:229:16: note: add '@MainActor' to make static property 'avi' part of global actor 'MainActor'
    static let avi = HTTPMediaType(type: "video", subType: "avi")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:229:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let avi = HTTPMediaType(type: "video", subType: "avi")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:231:16: warning: static property 'mpeg' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mpeg = HTTPMediaType(type: "video", subType: "mpeg")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:231:16: note: add '@MainActor' to make static property 'mpeg' part of global actor 'MainActor'
    static let mpeg = HTTPMediaType(type: "video", subType: "mpeg")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:231:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mpeg = HTTPMediaType(type: "video", subType: "mpeg")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:235:5: warning: let 'fileExtensionMediaTypeMapping' is not concurrency-safe because non-'Sendable' type '[String : HTTPMediaType]' may have shared mutable state; this is an error in the Swift 6 language mode
let fileExtensionMediaTypeMapping: [String: HTTPMediaType] = [
    ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:235:5: note: add '@MainActor' to make let 'fileExtensionMediaTypeMapping' part of global actor 'MainActor'
let fileExtensionMediaTypeMapping: [String: HTTPMediaType] = [
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:235:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let fileExtensionMediaTypeMapping: [String: HTTPMediaType] = [
    ^
nonisolated(unsafe)
SwiftEmitModule normal arm64 Emitting\ module\ for\ HTTPMediaTypes (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
EmitSwiftModule normal arm64 (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:177:16: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let any = HTTPMediaType(type: "*", subType: "*")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:177:16: note: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
    static let any = HTTPMediaType(type: "*", subType: "*")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:177:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let any = HTTPMediaType(type: "*", subType: "*")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:179:16: warning: static property 'plainText' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let plainText = HTTPMediaType(type: "text", subType: "plain", parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:179:16: note: add '@MainActor' to make static property 'plainText' part of global actor 'MainActor'
    static let plainText = HTTPMediaType(type: "text", subType: "plain", parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:179:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let plainText = HTTPMediaType(type: "text", subType: "plain", parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:181:16: warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let html = HTTPMediaType(type: "text", subType: "html", parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:181:16: note: add '@MainActor' to make static property 'html' part of global actor 'MainActor'
    static let html = HTTPMediaType(type: "text", subType: "html", parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:181:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let html = HTTPMediaType(type: "text", subType: "html", parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:183:16: warning: static property 'css' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let css = HTTPMediaType(type: "text", subType: "css", parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:183:16: note: add '@MainActor' to make static property 'css' part of global actor 'MainActor'
    static let css = HTTPMediaType(type: "text", subType: "css", parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:183:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let css = HTTPMediaType(type: "text", subType: "css", parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:185:16: warning: static property 'urlEncodedForm' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let urlEncodedForm = HTTPMediaType(type: "application", subType: "x-www-form-urlencoded", parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:185:16: note: add '@MainActor' to make static property 'urlEncodedForm' part of global actor 'MainActor'
    static let urlEncodedForm = HTTPMediaType(type: "application", subType: "x-www-form-urlencoded", parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:185:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let urlEncodedForm = HTTPMediaType(type: "application", subType: "x-www-form-urlencoded", parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:187:16: warning: static property 'formData' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let formData = HTTPMediaType(type: "multipart", subType: "form-data")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:187:16: note: add '@MainActor' to make static property 'formData' part of global actor 'MainActor'
    static let formData = HTTPMediaType(type: "multipart", subType: "form-data")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:187:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let formData = HTTPMediaType(type: "multipart", subType: "form-data")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:189:16: warning: static property 'multipart' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let multipart = HTTPMediaType(type: "multipart", subType: "mixed")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:189:16: note: add '@MainActor' to make static property 'multipart' part of global actor 'MainActor'
    static let multipart = HTTPMediaType(type: "multipart", subType: "mixed")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:189:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let multipart = HTTPMediaType(type: "multipart", subType: "mixed")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:191:16: warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let json = HTTPMediaType(type: "application", subType: "json", parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:191:16: note: add '@MainActor' to make static property 'json' part of global actor 'MainActor'
    static let json = HTTPMediaType(type: "application", subType: "json", parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:191:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let json = HTTPMediaType(type: "application", subType: "json", parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:193:16: warning: static property 'jsonAPI' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let jsonAPI = HTTPMediaType(type: "application", subType: "vnd.api+json", parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:193:16: note: add '@MainActor' to make static property 'jsonAPI' part of global actor 'MainActor'
    static let jsonAPI = HTTPMediaType(type: "application", subType: "vnd.api+json", parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:193:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let jsonAPI = HTTPMediaType(type: "application", subType: "vnd.api+json", parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:195:16: warning: static property 'xml' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let xml = HTTPMediaType(type: "application", subType: "xml", parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:195:16: note: add '@MainActor' to make static property 'xml' part of global actor 'MainActor'
    static let xml = HTTPMediaType(type: "application", subType: "xml", parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:195:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let xml = HTTPMediaType(type: "application", subType: "xml", parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:197:16: warning: static property 'dtd' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let dtd = HTTPMediaType(type: "application", subType: "xml-dtd", parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:197:16: note: add '@MainActor' to make static property 'dtd' part of global actor 'MainActor'
    static let dtd = HTTPMediaType(type: "application", subType: "xml-dtd", parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:197:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let dtd = HTTPMediaType(type: "application", subType: "xml-dtd", parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:199:16: warning: static property 'pdf' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let pdf = HTTPMediaType(type: "application", subType: "pdf")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:199:16: note: add '@MainActor' to make static property 'pdf' part of global actor 'MainActor'
    static let pdf = HTTPMediaType(type: "application", subType: "pdf")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:199:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let pdf = HTTPMediaType(type: "application", subType: "pdf")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:201:16: warning: static property 'zip' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let zip = HTTPMediaType(type: "application", subType: "zip")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:201:16: note: add '@MainActor' to make static property 'zip' part of global actor 'MainActor'
    static let zip = HTTPMediaType(type: "application", subType: "zip")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:201:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let zip = HTTPMediaType(type: "application", subType: "zip")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:203:16: warning: static property 'tar' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let tar = HTTPMediaType(type: "application", subType: "x-tar")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:203:16: note: add '@MainActor' to make static property 'tar' part of global actor 'MainActor'
    static let tar = HTTPMediaType(type: "application", subType: "x-tar")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:203:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let tar = HTTPMediaType(type: "application", subType: "x-tar")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:205:16: warning: static property 'gzip' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let gzip = HTTPMediaType(type: "application", subType: "x-gzip")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:205:16: note: add '@MainActor' to make static property 'gzip' part of global actor 'MainActor'
    static let gzip = HTTPMediaType(type: "application", subType: "x-gzip")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:205:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let gzip = HTTPMediaType(type: "application", subType: "x-gzip")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:207:16: warning: static property 'bzip2' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let bzip2 = HTTPMediaType(type: "application", subType: "x-bzip2")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:207:16: note: add '@MainActor' to make static property 'bzip2' part of global actor 'MainActor'
    static let bzip2 = HTTPMediaType(type: "application", subType: "x-bzip2")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:207:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let bzip2 = HTTPMediaType(type: "application", subType: "x-bzip2")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:209:16: warning: static property 'binary' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let binary = HTTPMediaType(type: "application", subType: "octet-stream")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:209:16: note: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
    static let binary = HTTPMediaType(type: "application", subType: "octet-stream")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:209:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let binary = HTTPMediaType(type: "application", subType: "octet-stream")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:211:16: warning: static property 'gif' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let gif = HTTPMediaType(type: "image", subType: "gif")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:211:16: note: add '@MainActor' to make static property 'gif' part of global actor 'MainActor'
    static let gif = HTTPMediaType(type: "image", subType: "gif")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:211:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let gif = HTTPMediaType(type: "image", subType: "gif")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:213:16: warning: static property 'jpeg' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let jpeg = HTTPMediaType(type: "image", subType: "jpeg")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:213:16: note: add '@MainActor' to make static property 'jpeg' part of global actor 'MainActor'
    static let jpeg = HTTPMediaType(type: "image", subType: "jpeg")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:213:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let jpeg = HTTPMediaType(type: "image", subType: "jpeg")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:215:16: warning: static property 'png' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let png = HTTPMediaType(type: "image", subType: "png")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:215:16: note: add '@MainActor' to make static property 'png' part of global actor 'MainActor'
    static let png = HTTPMediaType(type: "image", subType: "png")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:215:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let png = HTTPMediaType(type: "image", subType: "png")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:217:16: warning: static property 'svg' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let svg = HTTPMediaType(type: "image", subType: "svg+xml")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:217:16: note: add '@MainActor' to make static property 'svg' part of global actor 'MainActor'
    static let svg = HTTPMediaType(type: "image", subType: "svg+xml")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:217:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let svg = HTTPMediaType(type: "image", subType: "svg+xml")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:219:16: warning: static property 'audio' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let audio = HTTPMediaType(type: "audio", subType: "basic")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:219:16: note: add '@MainActor' to make static property 'audio' part of global actor 'MainActor'
    static let audio = HTTPMediaType(type: "audio", subType: "basic")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:219:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let audio = HTTPMediaType(type: "audio", subType: "basic")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:221:16: warning: static property 'midi' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let midi = HTTPMediaType(type: "audio", subType: "x-midi")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:221:16: note: add '@MainActor' to make static property 'midi' part of global actor 'MainActor'
    static let midi = HTTPMediaType(type: "audio", subType: "x-midi")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:221:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let midi = HTTPMediaType(type: "audio", subType: "x-midi")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:223:16: warning: static property 'mp3' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mp3 = HTTPMediaType(type: "audio", subType: "mpeg")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:223:16: note: add '@MainActor' to make static property 'mp3' part of global actor 'MainActor'
    static let mp3 = HTTPMediaType(type: "audio", subType: "mpeg")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:223:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mp3 = HTTPMediaType(type: "audio", subType: "mpeg")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:225:16: warning: static property 'wave' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let wave = HTTPMediaType(type: "audio", subType: "wav")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:225:16: note: add '@MainActor' to make static property 'wave' part of global actor 'MainActor'
    static let wave = HTTPMediaType(type: "audio", subType: "wav")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:225:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let wave = HTTPMediaType(type: "audio", subType: "wav")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:227:16: warning: static property 'ogg' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ogg = HTTPMediaType(type: "audio", subType: "vorbis")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:227:16: note: add '@MainActor' to make static property 'ogg' part of global actor 'MainActor'
    static let ogg = HTTPMediaType(type: "audio", subType: "vorbis")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:227:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ogg = HTTPMediaType(type: "audio", subType: "vorbis")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:229:16: warning: static property 'avi' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let avi = HTTPMediaType(type: "video", subType: "avi")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:229:16: note: add '@MainActor' to make static property 'avi' part of global actor 'MainActor'
    static let avi = HTTPMediaType(type: "video", subType: "avi")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:229:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let avi = HTTPMediaType(type: "video", subType: "avi")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:231:16: warning: static property 'mpeg' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mpeg = HTTPMediaType(type: "video", subType: "mpeg")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:231:16: note: add '@MainActor' to make static property 'mpeg' part of global actor 'MainActor'
    static let mpeg = HTTPMediaType(type: "video", subType: "mpeg")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:231:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mpeg = HTTPMediaType(type: "video", subType: "mpeg")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:235:5: warning: let 'fileExtensionMediaTypeMapping' is not concurrency-safe because non-'Sendable' type '[String : HTTPMediaType]' may have shared mutable state; this is an error in the Swift 6 language mode
let fileExtensionMediaTypeMapping: [String: HTTPMediaType] = [
    ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:235:5: note: add '@MainActor' to make let 'fileExtensionMediaTypeMapping' part of global actor 'MainActor'
let fileExtensionMediaTypeMapping: [String: HTTPMediaType] = [
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:235:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let fileExtensionMediaTypeMapping: [String: HTTPMediaType] = [
    ^
nonisolated(unsafe)
SwiftCompile normal armv7k Compiling\ HTTPHeaderValue.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPHeaderValue.swift (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPHeaderValue.swift (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ HTTPMediaType.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:177:16: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let any = HTTPMediaType(type: "*", subType: "*")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:177:16: note: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
    static let any = HTTPMediaType(type: "*", subType: "*")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:177:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let any = HTTPMediaType(type: "*", subType: "*")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:179:16: warning: static property 'plainText' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let plainText = HTTPMediaType(type: "text", subType: "plain", parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:179:16: note: add '@MainActor' to make static property 'plainText' part of global actor 'MainActor'
    static let plainText = HTTPMediaType(type: "text", subType: "plain", parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:179:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let plainText = HTTPMediaType(type: "text", subType: "plain", parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:181:16: warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let html = HTTPMediaType(type: "text", subType: "html", parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:181:16: note: add '@MainActor' to make static property 'html' part of global actor 'MainActor'
    static let html = HTTPMediaType(type: "text", subType: "html", parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:181:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let html = HTTPMediaType(type: "text", subType: "html", parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:183:16: warning: static property 'css' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let css = HTTPMediaType(type: "text", subType: "css", parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:183:16: note: add '@MainActor' to make static property 'css' part of global actor 'MainActor'
    static let css = HTTPMediaType(type: "text", subType: "css", parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:183:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let css = HTTPMediaType(type: "text", subType: "css", parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:185:16: warning: static property 'urlEncodedForm' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let urlEncodedForm = HTTPMediaType(type: "application", subType: "x-www-form-urlencoded", parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:185:16: note: add '@MainActor' to make static property 'urlEncodedForm' part of global actor 'MainActor'
    static let urlEncodedForm = HTTPMediaType(type: "application", subType: "x-www-form-urlencoded", parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:185:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let urlEncodedForm = HTTPMediaType(type: "application", subType: "x-www-form-urlencoded", parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:187:16: warning: static property 'formData' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let formData = HTTPMediaType(type: "multipart", subType: "form-data")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:187:16: note: add '@MainActor' to make static property 'formData' part of global actor 'MainActor'
    static let formData = HTTPMediaType(type: "multipart", subType: "form-data")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:187:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let formData = HTTPMediaType(type: "multipart", subType: "form-data")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:189:16: warning: static property 'multipart' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let multipart = HTTPMediaType(type: "multipart", subType: "mixed")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:189:16: note: add '@MainActor' to make static property 'multipart' part of global actor 'MainActor'
    static let multipart = HTTPMediaType(type: "multipart", subType: "mixed")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:189:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let multipart = HTTPMediaType(type: "multipart", subType: "mixed")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:191:16: warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let json = HTTPMediaType(type: "application", subType: "json", parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:191:16: note: add '@MainActor' to make static property 'json' part of global actor 'MainActor'
    static let json = HTTPMediaType(type: "application", subType: "json", parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:191:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let json = HTTPMediaType(type: "application", subType: "json", parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:193:16: warning: static property 'jsonAPI' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let jsonAPI = HTTPMediaType(type: "application", subType: "vnd.api+json", parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:193:16: note: add '@MainActor' to make static property 'jsonAPI' part of global actor 'MainActor'
    static let jsonAPI = HTTPMediaType(type: "application", subType: "vnd.api+json", parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:193:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let jsonAPI = HTTPMediaType(type: "application", subType: "vnd.api+json", parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:195:16: warning: static property 'xml' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let xml = HTTPMediaType(type: "application", subType: "xml", parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:195:16: note: add '@MainActor' to make static property 'xml' part of global actor 'MainActor'
    static let xml = HTTPMediaType(type: "application", subType: "xml", parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:195:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let xml = HTTPMediaType(type: "application", subType: "xml", parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:197:16: warning: static property 'dtd' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let dtd = HTTPMediaType(type: "application", subType: "xml-dtd", parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:197:16: note: add '@MainActor' to make static property 'dtd' part of global actor 'MainActor'
    static let dtd = HTTPMediaType(type: "application", subType: "xml-dtd", parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:197:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let dtd = HTTPMediaType(type: "application", subType: "xml-dtd", parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:199:16: warning: static property 'pdf' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let pdf = HTTPMediaType(type: "application", subType: "pdf")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:199:16: note: add '@MainActor' to make static property 'pdf' part of global actor 'MainActor'
    static let pdf = HTTPMediaType(type: "application", subType: "pdf")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:199:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let pdf = HTTPMediaType(type: "application", subType: "pdf")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:201:16: warning: static property 'zip' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let zip = HTTPMediaType(type: "application", subType: "zip")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:201:16: note: add '@MainActor' to make static property 'zip' part of global actor 'MainActor'
    static let zip = HTTPMediaType(type: "application", subType: "zip")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:201:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let zip = HTTPMediaType(type: "application", subType: "zip")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:203:16: warning: static property 'tar' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let tar = HTTPMediaType(type: "application", subType: "x-tar")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:203:16: note: add '@MainActor' to make static property 'tar' part of global actor 'MainActor'
    static let tar = HTTPMediaType(type: "application", subType: "x-tar")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:203:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let tar = HTTPMediaType(type: "application", subType: "x-tar")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:205:16: warning: static property 'gzip' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let gzip = HTTPMediaType(type: "application", subType: "x-gzip")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:205:16: note: add '@MainActor' to make static property 'gzip' part of global actor 'MainActor'
    static let gzip = HTTPMediaType(type: "application", subType: "x-gzip")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:205:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let gzip = HTTPMediaType(type: "application", subType: "x-gzip")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:207:16: warning: static property 'bzip2' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let bzip2 = HTTPMediaType(type: "application", subType: "x-bzip2")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:207:16: note: add '@MainActor' to make static property 'bzip2' part of global actor 'MainActor'
    static let bzip2 = HTTPMediaType(type: "application", subType: "x-bzip2")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:207:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let bzip2 = HTTPMediaType(type: "application", subType: "x-bzip2")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:209:16: warning: static property 'binary' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let binary = HTTPMediaType(type: "application", subType: "octet-stream")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:209:16: note: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
    static let binary = HTTPMediaType(type: "application", subType: "octet-stream")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:209:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let binary = HTTPMediaType(type: "application", subType: "octet-stream")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:211:16: warning: static property 'gif' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let gif = HTTPMediaType(type: "image", subType: "gif")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:211:16: note: add '@MainActor' to make static property 'gif' part of global actor 'MainActor'
    static let gif = HTTPMediaType(type: "image", subType: "gif")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:211:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let gif = HTTPMediaType(type: "image", subType: "gif")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:213:16: warning: static property 'jpeg' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let jpeg = HTTPMediaType(type: "image", subType: "jpeg")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:213:16: note: add '@MainActor' to make static property 'jpeg' part of global actor 'MainActor'
    static let jpeg = HTTPMediaType(type: "image", subType: "jpeg")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:213:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let jpeg = HTTPMediaType(type: "image", subType: "jpeg")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:215:16: warning: static property 'png' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let png = HTTPMediaType(type: "image", subType: "png")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:215:16: note: add '@MainActor' to make static property 'png' part of global actor 'MainActor'
    static let png = HTTPMediaType(type: "image", subType: "png")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:215:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let png = HTTPMediaType(type: "image", subType: "png")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:217:16: warning: static property 'svg' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let svg = HTTPMediaType(type: "image", subType: "svg+xml")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:217:16: note: add '@MainActor' to make static property 'svg' part of global actor 'MainActor'
    static let svg = HTTPMediaType(type: "image", subType: "svg+xml")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:217:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let svg = HTTPMediaType(type: "image", subType: "svg+xml")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:219:16: warning: static property 'audio' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let audio = HTTPMediaType(type: "audio", subType: "basic")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:219:16: note: add '@MainActor' to make static property 'audio' part of global actor 'MainActor'
    static let audio = HTTPMediaType(type: "audio", subType: "basic")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:219:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let audio = HTTPMediaType(type: "audio", subType: "basic")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:221:16: warning: static property 'midi' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let midi = HTTPMediaType(type: "audio", subType: "x-midi")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:221:16: note: add '@MainActor' to make static property 'midi' part of global actor 'MainActor'
    static let midi = HTTPMediaType(type: "audio", subType: "x-midi")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:221:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let midi = HTTPMediaType(type: "audio", subType: "x-midi")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:223:16: warning: static property 'mp3' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mp3 = HTTPMediaType(type: "audio", subType: "mpeg")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:223:16: note: add '@MainActor' to make static property 'mp3' part of global actor 'MainActor'
    static let mp3 = HTTPMediaType(type: "audio", subType: "mpeg")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:223:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mp3 = HTTPMediaType(type: "audio", subType: "mpeg")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:225:16: warning: static property 'wave' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let wave = HTTPMediaType(type: "audio", subType: "wav")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:225:16: note: add '@MainActor' to make static property 'wave' part of global actor 'MainActor'
    static let wave = HTTPMediaType(type: "audio", subType: "wav")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:225:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let wave = HTTPMediaType(type: "audio", subType: "wav")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:227:16: warning: static property 'ogg' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ogg = HTTPMediaType(type: "audio", subType: "vorbis")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:227:16: note: add '@MainActor' to make static property 'ogg' part of global actor 'MainActor'
    static let ogg = HTTPMediaType(type: "audio", subType: "vorbis")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:227:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ogg = HTTPMediaType(type: "audio", subType: "vorbis")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:229:16: warning: static property 'avi' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let avi = HTTPMediaType(type: "video", subType: "avi")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:229:16: note: add '@MainActor' to make static property 'avi' part of global actor 'MainActor'
    static let avi = HTTPMediaType(type: "video", subType: "avi")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:229:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let avi = HTTPMediaType(type: "video", subType: "avi")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:231:16: warning: static property 'mpeg' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mpeg = HTTPMediaType(type: "video", subType: "mpeg")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:231:16: note: add '@MainActor' to make static property 'mpeg' part of global actor 'MainActor'
    static let mpeg = HTTPMediaType(type: "video", subType: "mpeg")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:231:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mpeg = HTTPMediaType(type: "video", subType: "mpeg")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:235:5: warning: let 'fileExtensionMediaTypeMapping' is not concurrency-safe because non-'Sendable' type '[String : HTTPMediaType]' may have shared mutable state; this is an error in the Swift 6 language mode
let fileExtensionMediaTypeMapping: [String: HTTPMediaType] = [
    ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:235:5: note: add '@MainActor' to make let 'fileExtensionMediaTypeMapping' part of global actor 'MainActor'
let fileExtensionMediaTypeMapping: [String: HTTPMediaType] = [
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:235:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let fileExtensionMediaTypeMapping: [String: HTTPMediaType] = [
    ^
nonisolated(unsafe)
SwiftCompile normal armv7k Compiling\ HTTPMediaType.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:177:16: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let any = HTTPMediaType(type: "*", subType: "*")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:177:16: note: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
    static let any = HTTPMediaType(type: "*", subType: "*")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:177:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let any = HTTPMediaType(type: "*", subType: "*")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:179:16: warning: static property 'plainText' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let plainText = HTTPMediaType(type: "text", subType: "plain", parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:179:16: note: add '@MainActor' to make static property 'plainText' part of global actor 'MainActor'
    static let plainText = HTTPMediaType(type: "text", subType: "plain", parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:179:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let plainText = HTTPMediaType(type: "text", subType: "plain", parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:181:16: warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let html = HTTPMediaType(type: "text", subType: "html", parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:181:16: note: add '@MainActor' to make static property 'html' part of global actor 'MainActor'
    static let html = HTTPMediaType(type: "text", subType: "html", parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:181:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let html = HTTPMediaType(type: "text", subType: "html", parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:183:16: warning: static property 'css' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let css = HTTPMediaType(type: "text", subType: "css", parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:183:16: note: add '@MainActor' to make static property 'css' part of global actor 'MainActor'
    static let css = HTTPMediaType(type: "text", subType: "css", parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:183:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let css = HTTPMediaType(type: "text", subType: "css", parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:185:16: warning: static property 'urlEncodedForm' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let urlEncodedForm = HTTPMediaType(type: "application", subType: "x-www-form-urlencoded", parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:185:16: note: add '@MainActor' to make static property 'urlEncodedForm' part of global actor 'MainActor'
    static let urlEncodedForm = HTTPMediaType(type: "application", subType: "x-www-form-urlencoded", parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:185:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let urlEncodedForm = HTTPMediaType(type: "application", subType: "x-www-form-urlencoded", parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:187:16: warning: static property 'formData' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let formData = HTTPMediaType(type: "multipart", subType: "form-data")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:187:16: note: add '@MainActor' to make static property 'formData' part of global actor 'MainActor'
    static let formData = HTTPMediaType(type: "multipart", subType: "form-data")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:187:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let formData = HTTPMediaType(type: "multipart", subType: "form-data")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:189:16: warning: static property 'multipart' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let multipart = HTTPMediaType(type: "multipart", subType: "mixed")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:189:16: note: add '@MainActor' to make static property 'multipart' part of global actor 'MainActor'
    static let multipart = HTTPMediaType(type: "multipart", subType: "mixed")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:189:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let multipart = HTTPMediaType(type: "multipart", subType: "mixed")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:191:16: warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let json = HTTPMediaType(type: "application", subType: "json", parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:191:16: note: add '@MainActor' to make static property 'json' part of global actor 'MainActor'
    static let json = HTTPMediaType(type: "application", subType: "json", parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:191:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let json = HTTPMediaType(type: "application", subType: "json", parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:193:16: warning: static property 'jsonAPI' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let jsonAPI = HTTPMediaType(type: "application", subType: "vnd.api+json", parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:193:16: note: add '@MainActor' to make static property 'jsonAPI' part of global actor 'MainActor'
    static let jsonAPI = HTTPMediaType(type: "application", subType: "vnd.api+json", parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:193:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let jsonAPI = HTTPMediaType(type: "application", subType: "vnd.api+json", parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:195:16: warning: static property 'xml' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let xml = HTTPMediaType(type: "application", subType: "xml", parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:195:16: note: add '@MainActor' to make static property 'xml' part of global actor 'MainActor'
    static let xml = HTTPMediaType(type: "application", subType: "xml", parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:195:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let xml = HTTPMediaType(type: "application", subType: "xml", parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:197:16: warning: static property 'dtd' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let dtd = HTTPMediaType(type: "application", subType: "xml-dtd", parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:197:16: note: add '@MainActor' to make static property 'dtd' part of global actor 'MainActor'
    static let dtd = HTTPMediaType(type: "application", subType: "xml-dtd", parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:197:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let dtd = HTTPMediaType(type: "application", subType: "xml-dtd", parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:199:16: warning: static property 'pdf' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let pdf = HTTPMediaType(type: "application", subType: "pdf")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:199:16: note: add '@MainActor' to make static property 'pdf' part of global actor 'MainActor'
    static let pdf = HTTPMediaType(type: "application", subType: "pdf")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:199:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let pdf = HTTPMediaType(type: "application", subType: "pdf")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:201:16: warning: static property 'zip' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let zip = HTTPMediaType(type: "application", subType: "zip")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:201:16: note: add '@MainActor' to make static property 'zip' part of global actor 'MainActor'
    static let zip = HTTPMediaType(type: "application", subType: "zip")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:201:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let zip = HTTPMediaType(type: "application", subType: "zip")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:203:16: warning: static property 'tar' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let tar = HTTPMediaType(type: "application", subType: "x-tar")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:203:16: note: add '@MainActor' to make static property 'tar' part of global actor 'MainActor'
    static let tar = HTTPMediaType(type: "application", subType: "x-tar")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:203:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let tar = HTTPMediaType(type: "application", subType: "x-tar")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:205:16: warning: static property 'gzip' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let gzip = HTTPMediaType(type: "application", subType: "x-gzip")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:205:16: note: add '@MainActor' to make static property 'gzip' part of global actor 'MainActor'
    static let gzip = HTTPMediaType(type: "application", subType: "x-gzip")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:205:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let gzip = HTTPMediaType(type: "application", subType: "x-gzip")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:207:16: warning: static property 'bzip2' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let bzip2 = HTTPMediaType(type: "application", subType: "x-bzip2")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:207:16: note: add '@MainActor' to make static property 'bzip2' part of global actor 'MainActor'
    static let bzip2 = HTTPMediaType(type: "application", subType: "x-bzip2")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:207:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let bzip2 = HTTPMediaType(type: "application", subType: "x-bzip2")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:209:16: warning: static property 'binary' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let binary = HTTPMediaType(type: "application", subType: "octet-stream")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:209:16: note: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
    static let binary = HTTPMediaType(type: "application", subType: "octet-stream")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:209:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let binary = HTTPMediaType(type: "application", subType: "octet-stream")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:211:16: warning: static property 'gif' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let gif = HTTPMediaType(type: "image", subType: "gif")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:211:16: note: add '@MainActor' to make static property 'gif' part of global actor 'MainActor'
    static let gif = HTTPMediaType(type: "image", subType: "gif")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:211:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let gif = HTTPMediaType(type: "image", subType: "gif")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:213:16: warning: static property 'jpeg' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let jpeg = HTTPMediaType(type: "image", subType: "jpeg")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:213:16: note: add '@MainActor' to make static property 'jpeg' part of global actor 'MainActor'
    static let jpeg = HTTPMediaType(type: "image", subType: "jpeg")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:213:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let jpeg = HTTPMediaType(type: "image", subType: "jpeg")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:215:16: warning: static property 'png' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let png = HTTPMediaType(type: "image", subType: "png")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:215:16: note: add '@MainActor' to make static property 'png' part of global actor 'MainActor'
    static let png = HTTPMediaType(type: "image", subType: "png")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:215:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let png = HTTPMediaType(type: "image", subType: "png")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:217:16: warning: static property 'svg' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let svg = HTTPMediaType(type: "image", subType: "svg+xml")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:217:16: note: add '@MainActor' to make static property 'svg' part of global actor 'MainActor'
    static let svg = HTTPMediaType(type: "image", subType: "svg+xml")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:217:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let svg = HTTPMediaType(type: "image", subType: "svg+xml")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:219:16: warning: static property 'audio' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let audio = HTTPMediaType(type: "audio", subType: "basic")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:219:16: note: add '@MainActor' to make static property 'audio' part of global actor 'MainActor'
    static let audio = HTTPMediaType(type: "audio", subType: "basic")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:219:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let audio = HTTPMediaType(type: "audio", subType: "basic")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:221:16: warning: static property 'midi' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let midi = HTTPMediaType(type: "audio", subType: "x-midi")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:221:16: note: add '@MainActor' to make static property 'midi' part of global actor 'MainActor'
    static let midi = HTTPMediaType(type: "audio", subType: "x-midi")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:221:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let midi = HTTPMediaType(type: "audio", subType: "x-midi")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:223:16: warning: static property 'mp3' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mp3 = HTTPMediaType(type: "audio", subType: "mpeg")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:223:16: note: add '@MainActor' to make static property 'mp3' part of global actor 'MainActor'
    static let mp3 = HTTPMediaType(type: "audio", subType: "mpeg")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:223:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mp3 = HTTPMediaType(type: "audio", subType: "mpeg")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:225:16: warning: static property 'wave' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let wave = HTTPMediaType(type: "audio", subType: "wav")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:225:16: note: add '@MainActor' to make static property 'wave' part of global actor 'MainActor'
    static let wave = HTTPMediaType(type: "audio", subType: "wav")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:225:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let wave = HTTPMediaType(type: "audio", subType: "wav")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:227:16: warning: static property 'ogg' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ogg = HTTPMediaType(type: "audio", subType: "vorbis")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:227:16: note: add '@MainActor' to make static property 'ogg' part of global actor 'MainActor'
    static let ogg = HTTPMediaType(type: "audio", subType: "vorbis")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:227:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ogg = HTTPMediaType(type: "audio", subType: "vorbis")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:229:16: warning: static property 'avi' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let avi = HTTPMediaType(type: "video", subType: "avi")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:229:16: note: add '@MainActor' to make static property 'avi' part of global actor 'MainActor'
    static let avi = HTTPMediaType(type: "video", subType: "avi")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:229:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let avi = HTTPMediaType(type: "video", subType: "avi")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:231:16: warning: static property 'mpeg' is not concurrency-safe because non-'Sendable' type 'HTTPMediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mpeg = HTTPMediaType(type: "video", subType: "mpeg")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:231:16: note: add '@MainActor' to make static property 'mpeg' part of global actor 'MainActor'
    static let mpeg = HTTPMediaType(type: "video", subType: "mpeg")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:231:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mpeg = HTTPMediaType(type: "video", subType: "mpeg")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:235:5: warning: let 'fileExtensionMediaTypeMapping' is not concurrency-safe because non-'Sendable' type '[String : HTTPMediaType]' may have shared mutable state; this is an error in the Swift 6 language mode
let fileExtensionMediaTypeMapping: [String: HTTPMediaType] = [
    ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:52:15: note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
              ^
                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:235:5: note: add '@MainActor' to make let 'fileExtensionMediaTypeMapping' part of global actor 'MainActor'
let fileExtensionMediaTypeMapping: [String: HTTPMediaType] = [
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift:235:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let fileExtensionMediaTypeMapping: [String: HTTPMediaType] = [
    ^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ HTTPHeaderValue.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPHeaderValue.swift (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPHeaderValue.swift (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling HTTPHeaderValue.swift (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
SwiftDriverJobDiscovery normal arm64 Compiling HTTPHeaderValue.swift (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
SwiftDriverJobDiscovery normal arm64_32 Compiling HTTPHeaderValue.swift (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
SwiftDriverJobDiscovery normal arm64_32 Emitting module for HTTPMediaTypes (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
SwiftDriver\ Compilation\ Requirements HTTPMediaTypes normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name HTTPMediaTypes -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes.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 -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes-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/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes.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/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes.swiftdoc (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    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/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes.abi.json (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    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/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes.swiftmodule (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    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/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes.swiftsourceinfo (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    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/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
SwiftDriverJobDiscovery normal armv7k Emitting module for HTTPMediaTypes (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
SwiftDriver\ Compilation\ Requirements HTTPMediaTypes normal armv7k com.apple.xcode.tools.swift.compiler (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name HTTPMediaTypes -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes.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 -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes-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/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes.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/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Emitting module for HTTPMediaTypes (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
SwiftDriver\ Compilation\ Requirements HTTPMediaTypes normal arm64 com.apple.xcode.tools.swift.compiler (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name HTTPMediaTypes -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes.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 -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes-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/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes.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/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/HTTPMediaTypes-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes-Swift.h (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/HTTPMediaTypes-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes.swiftmodule (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    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/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.swiftmodule/armv7k-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes.abi.json (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    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/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes.swiftmodule (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    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/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes.swiftdoc (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    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/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes.swiftdoc (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    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/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes.abi.json (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    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/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes.swiftsourceinfo (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    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/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes.swiftsourceinfo (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    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/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftDriverJobDiscovery normal armv7k Compiling HTTPMediaType.swift (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
SwiftDriver\ Compilation HTTPMediaTypes normal armv7k com.apple.xcode.tools.swift.compiler (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name HTTPMediaTypes -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes.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 -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes-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/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes.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/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/Binary/HTTPMediaTypes.o normal armv7k (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/Binary/HTTPMediaTypes.o
SwiftDriverJobDiscovery normal arm64 Compiling HTTPMediaType.swift (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
SwiftDriver\ Compilation HTTPMediaTypes normal arm64 com.apple.xcode.tools.swift.compiler (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name HTTPMediaTypes -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes.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 -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes-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/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes.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/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64_32 Compiling HTTPMediaType.swift (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
SwiftDriver\ Compilation HTTPMediaTypes normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name HTTPMediaTypes -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes.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 -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes-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/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes.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/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/Binary/HTTPMediaTypes.o normal arm64 (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    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-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/Binary/HTTPMediaTypes.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/Binary/HTTPMediaTypes.o normal arm64_32 (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    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_32-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/Binary/HTTPMediaTypes.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.o normal arm64\ armv7k\ arm64_32 (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/Binary/HTTPMediaTypes.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/Binary/HTTPMediaTypes.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/Binary/HTTPMediaTypes.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.o
ExtractAppIntentsMetadata (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    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 HTTPMediaTypes --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 5.0 --bundle-identifier spi-builder-workspace.HTTPMediaTypes --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.appintents --target-triple arm64-apple-watchos5.0 --target-triple armv7k-apple-watchos5.0 --target-triple arm64_32-apple-watchos5.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/HTTPMediaTypes.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/HTTPMediaTypes.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-25 16:37:42.317 appintentsmetadataprocessor[721:4144] Starting appintentsmetadataprocessor export
2025-04-25 16:37:42.356 appintentsmetadataprocessor[721:4144] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.o (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTTPMediaTypes.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "HTTPMediaTypes",
  "name" : "HTTPMediaTypes",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "HTTPMediaTypes",
      "targets" : [
        "HTTPMediaTypes"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "HTTPMediaTypes",
      "module_type" : "SwiftTarget",
      "name" : "HTTPMediaTypes",
      "path" : "Sources/HTTPMediaTypes",
      "product_memberships" : [
        "HTTPMediaTypes"
      ],
      "sources" : [
        "HTTPHeaderValue.swift",
        "HTTPMediaType.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
Done.