This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

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 with Swift 6.0 for watchOS using Xcode 16.0.

Swift 6 data race errors: 87

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme HTTPMediaTypes -destination generic/platform=watchos OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

    |               `- note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
 53 |     /// See `Equatable`.
 54 |     public static func ==(lhs: HTTPMediaType, rhs: HTTPMediaType) -> Bool {
    :
191 |     static let json = HTTPMediaType(type: "application", subType: "json", parameters: ["charset": "utf-8"])
192 |     /// JSON API media type (see https://jsonapi.org/format/).
193 |     static let jsonAPI = HTTPMediaType(type: "application", subType: "vnd.api+json", parameters: ["charset": "utf-8"])
    |                |- 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
    |                |- note: annotate 'jsonAPI' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
194 |     /// XML media type.
195 |     static let xml = HTTPMediaType(type: "application", subType: "xml", parameters: ["charset": "utf-8"])
/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
 50 | ///     ; to use within parameter values
 51 | ///
 52 | public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
    |               `- note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
 53 |     /// See `Equatable`.
 54 |     public static func ==(lhs: HTTPMediaType, rhs: HTTPMediaType) -> Bool {
    :
193 |     static let jsonAPI = HTTPMediaType(type: "application", subType: "vnd.api+json", parameters: ["charset": "utf-8"])
194 |     /// XML media type.
195 |     static let xml = HTTPMediaType(type: "application", subType: "xml", parameters: ["charset": "utf-8"])
    |                |- 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
    |                |- note: annotate 'xml' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
196 |     /// DTD media type.
197 |     static let dtd = HTTPMediaType(type: "application", subType: "xml-dtd", parameters: ["charset": "utf-8"])
/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
 50 | ///     ; to use within parameter values
 51 | ///
 52 | public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
    |               `- note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
 53 |     /// See `Equatable`.
 54 |     public static func ==(lhs: HTTPMediaType, rhs: HTTPMediaType) -> Bool {
    :
195 |     static let xml = HTTPMediaType(type: "application", subType: "xml", parameters: ["charset": "utf-8"])
196 |     /// DTD media type.
197 |     static let dtd = HTTPMediaType(type: "application", subType: "xml-dtd", parameters: ["charset": "utf-8"])
    |                |- 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
    |                |- note: annotate 'dtd' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
198 |     /// PDF data.
199 |     static let pdf = HTTPMediaType(type: "application", subType: "pdf")
/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
 50 | ///     ; to use within parameter values
 51 | ///
 52 | public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
    |               `- note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
 53 |     /// See `Equatable`.
 54 |     public static func ==(lhs: HTTPMediaType, rhs: HTTPMediaType) -> Bool {
    :
197 |     static let dtd = HTTPMediaType(type: "application", subType: "xml-dtd", parameters: ["charset": "utf-8"])
198 |     /// PDF data.
199 |     static let pdf = HTTPMediaType(type: "application", subType: "pdf")
    |                |- 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
    |                |- note: annotate 'pdf' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
200 |     /// Zip file.
201 |     static let zip = HTTPMediaType(type: "application", subType: "zip")
/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
 50 | ///     ; to use within parameter values
 51 | ///
 52 | public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
    |               `- note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
 53 |     /// See `Equatable`.
 54 |     public static func ==(lhs: HTTPMediaType, rhs: HTTPMediaType) -> Bool {
    :
199 |     static let pdf = HTTPMediaType(type: "application", subType: "pdf")
200 |     /// Zip file.
201 |     static let zip = HTTPMediaType(type: "application", subType: "zip")
    |                |- 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
    |                |- note: annotate 'zip' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
202 |     /// tar file.
203 |     static let tar = HTTPMediaType(type: "application", subType: "x-tar")
/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
 50 | ///     ; to use within parameter values
 51 | ///
 52 | public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
    |               `- note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
 53 |     /// See `Equatable`.
 54 |     public static func ==(lhs: HTTPMediaType, rhs: HTTPMediaType) -> Bool {
    :
201 |     static let zip = HTTPMediaType(type: "application", subType: "zip")
202 |     /// tar file.
203 |     static let tar = HTTPMediaType(type: "application", subType: "x-tar")
    |                |- 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
    |                |- note: annotate 'tar' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
204 |     /// Gzip file.
205 |     static let gzip = HTTPMediaType(type: "application", subType: "x-gzip")
/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
 50 | ///     ; to use within parameter values
 51 | ///
 52 | public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
    |               `- note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
 53 |     /// See `Equatable`.
 54 |     public static func ==(lhs: HTTPMediaType, rhs: HTTPMediaType) -> Bool {
    :
203 |     static let tar = HTTPMediaType(type: "application", subType: "x-tar")
204 |     /// Gzip file.
205 |     static let gzip = HTTPMediaType(type: "application", subType: "x-gzip")
    |                |- 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
    |                |- note: annotate 'gzip' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
206 |     /// Bzip2 file.
207 |     static let bzip2 = HTTPMediaType(type: "application", subType: "x-bzip2")
/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
 50 | ///     ; to use within parameter values
 51 | ///
 52 | public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
    |               `- note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
 53 |     /// See `Equatable`.
 54 |     public static func ==(lhs: HTTPMediaType, rhs: HTTPMediaType) -> Bool {
    :
205 |     static let gzip = HTTPMediaType(type: "application", subType: "x-gzip")
206 |     /// Bzip2 file.
207 |     static let bzip2 = HTTPMediaType(type: "application", subType: "x-bzip2")
    |                |- 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
    |                |- note: annotate 'bzip2' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
208 |     /// Binary data.
209 |     static let binary = HTTPMediaType(type: "application", subType: "octet-stream")
/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
 50 | ///     ; to use within parameter values
 51 | ///
 52 | public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
    |               `- note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
 53 |     /// See `Equatable`.
 54 |     public static func ==(lhs: HTTPMediaType, rhs: HTTPMediaType) -> Bool {
    :
207 |     static let bzip2 = HTTPMediaType(type: "application", subType: "x-bzip2")
208 |     /// Binary data.
209 |     static let binary = HTTPMediaType(type: "application", subType: "octet-stream")
    |                |- 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
    |                |- note: annotate 'binary' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
210 |     /// GIF image.
211 |     static let gif = HTTPMediaType(type: "image", subType: "gif")
/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
 50 | ///     ; to use within parameter values
 51 | ///
 52 | public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
    |               `- note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
 53 |     /// See `Equatable`.
 54 |     public static func ==(lhs: HTTPMediaType, rhs: HTTPMediaType) -> Bool {
    :
209 |     static let binary = HTTPMediaType(type: "application", subType: "octet-stream")
210 |     /// GIF image.
211 |     static let gif = HTTPMediaType(type: "image", subType: "gif")
    |                |- 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
    |                |- note: annotate 'gif' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
212 |     /// JPEG image.
213 |     static let jpeg = HTTPMediaType(type: "image", subType: "jpeg")
/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
 50 | ///     ; to use within parameter values
 51 | ///
 52 | public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
    |               `- note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
 53 |     /// See `Equatable`.
 54 |     public static func ==(lhs: HTTPMediaType, rhs: HTTPMediaType) -> Bool {
    :
211 |     static let gif = HTTPMediaType(type: "image", subType: "gif")
212 |     /// JPEG image.
213 |     static let jpeg = HTTPMediaType(type: "image", subType: "jpeg")
    |                |- 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
    |                |- note: annotate 'jpeg' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |     /// PNG image.
215 |     static let png = HTTPMediaType(type: "image", subType: "png")
/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
 50 | ///     ; to use within parameter values
 51 | ///
 52 | public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
    |               `- note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
 53 |     /// See `Equatable`.
 54 |     public static func ==(lhs: HTTPMediaType, rhs: HTTPMediaType) -> Bool {
    :
213 |     static let jpeg = HTTPMediaType(type: "image", subType: "jpeg")
214 |     /// PNG image.
215 |     static let png = HTTPMediaType(type: "image", subType: "png")
    |                |- 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
    |                |- note: annotate 'png' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
216 |     /// SVG image.
217 |     static let svg = HTTPMediaType(type: "image", subType: "svg+xml")
/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
 50 | ///     ; to use within parameter values
 51 | ///
 52 | public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
    |               `- note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
 53 |     /// See `Equatable`.
 54 |     public static func ==(lhs: HTTPMediaType, rhs: HTTPMediaType) -> Bool {
    :
215 |     static let png = HTTPMediaType(type: "image", subType: "png")
216 |     /// SVG image.
217 |     static let svg = HTTPMediaType(type: "image", subType: "svg+xml")
    |                |- 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
    |                |- note: annotate 'svg' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
218 |     /// Basic audio.
219 |     static let audio = HTTPMediaType(type: "audio", subType: "basic")
/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
 50 | ///     ; to use within parameter values
 51 | ///
 52 | public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
    |               `- note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
 53 |     /// See `Equatable`.
 54 |     public static func ==(lhs: HTTPMediaType, rhs: HTTPMediaType) -> Bool {
    :
217 |     static let svg = HTTPMediaType(type: "image", subType: "svg+xml")
218 |     /// Basic audio.
219 |     static let audio = HTTPMediaType(type: "audio", subType: "basic")
    |                |- 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
    |                |- note: annotate 'audio' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |     /// MIDI audio.
221 |     static let midi = HTTPMediaType(type: "audio", subType: "x-midi")
/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
 50 | ///     ; to use within parameter values
 51 | ///
 52 | public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
    |               `- note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
 53 |     /// See `Equatable`.
 54 |     public static func ==(lhs: HTTPMediaType, rhs: HTTPMediaType) -> Bool {
    :
219 |     static let audio = HTTPMediaType(type: "audio", subType: "basic")
220 |     /// MIDI audio.
221 |     static let midi = HTTPMediaType(type: "audio", subType: "x-midi")
    |                |- 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
    |                |- note: annotate 'midi' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
222 |     /// MP3 audio.
223 |     static let mp3 = HTTPMediaType(type: "audio", subType: "mpeg")
/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
 50 | ///     ; to use within parameter values
 51 | ///
 52 | public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
    |               `- note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
 53 |     /// See `Equatable`.
 54 |     public static func ==(lhs: HTTPMediaType, rhs: HTTPMediaType) -> Bool {
    :
221 |     static let midi = HTTPMediaType(type: "audio", subType: "x-midi")
222 |     /// MP3 audio.
223 |     static let mp3 = HTTPMediaType(type: "audio", subType: "mpeg")
    |                |- 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
    |                |- note: annotate 'mp3' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
224 |     /// Wave audio.
225 |     static let wave = HTTPMediaType(type: "audio", subType: "wav")
/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
 50 | ///     ; to use within parameter values
 51 | ///
 52 | public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
    |               `- note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
 53 |     /// See `Equatable`.
 54 |     public static func ==(lhs: HTTPMediaType, rhs: HTTPMediaType) -> Bool {
    :
223 |     static let mp3 = HTTPMediaType(type: "audio", subType: "mpeg")
224 |     /// Wave audio.
225 |     static let wave = HTTPMediaType(type: "audio", subType: "wav")
    |                |- 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
    |                |- note: annotate 'wave' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |     /// OGG audio.
227 |     static let ogg = HTTPMediaType(type: "audio", subType: "vorbis")
/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
 50 | ///     ; to use within parameter values
 51 | ///
 52 | public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
    |               `- note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
 53 |     /// See `Equatable`.
 54 |     public static func ==(lhs: HTTPMediaType, rhs: HTTPMediaType) -> Bool {
    :
225 |     static let wave = HTTPMediaType(type: "audio", subType: "wav")
226 |     /// OGG audio.
227 |     static let ogg = HTTPMediaType(type: "audio", subType: "vorbis")
    |                |- 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
    |                |- note: annotate 'ogg' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
228 |     /// AVI video.
229 |     static let avi = HTTPMediaType(type: "video", subType: "avi")
/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
 50 | ///     ; to use within parameter values
 51 | ///
 52 | public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
    |               `- note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
 53 |     /// See `Equatable`.
 54 |     public static func ==(lhs: HTTPMediaType, rhs: HTTPMediaType) -> Bool {
    :
227 |     static let ogg = HTTPMediaType(type: "audio", subType: "vorbis")
228 |     /// AVI video.
229 |     static let avi = HTTPMediaType(type: "video", subType: "avi")
    |                |- 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
    |                |- note: annotate 'avi' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
230 |     /// MPEG video.
231 |     static let mpeg = HTTPMediaType(type: "video", subType: "mpeg")
/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
 50 | ///     ; to use within parameter values
 51 | ///
 52 | public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
    |               `- note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
 53 |     /// See `Equatable`.
 54 |     public static func ==(lhs: HTTPMediaType, rhs: HTTPMediaType) -> Bool {
    :
229 |     static let avi = HTTPMediaType(type: "video", subType: "avi")
230 |     /// MPEG video.
231 |     static let mpeg = HTTPMediaType(type: "video", subType: "mpeg")
    |                |- 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
    |                |- note: annotate 'mpeg' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
232 | }
233 |
/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
 50 | ///     ; to use within parameter values
 51 | ///
 52 | public struct HTTPMediaType: Hashable, CustomStringConvertible, Equatable {
    |               `- note: consider making struct 'HTTPMediaType' conform to the 'Sendable' protocol
 53 |     /// See `Equatable`.
 54 |     public static func ==(lhs: HTTPMediaType, rhs: HTTPMediaType) -> Bool {
    :
233 |
234 | // MARK: Extensions
235 | let fileExtensionMediaTypeMapping: [String: HTTPMediaType] = [
    |     |- 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
    |     |- note: annotate 'fileExtensionMediaTypeMapping' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
236 |     "ez": HTTPMediaType(type: "application", subType: "andrew-inset"),
237 |     "anx": HTTPMediaType(type: "application", subType: "annodex"),
SwiftCompile normal armv7k Compiling\ HTTPMediaType.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPHeaderValue.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaType.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaType.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaType.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaType.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/swift-overrides.hmap -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 -module-name HTTPMediaTypes -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaType.o -index-unit-output-path /HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaType.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
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
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPHeaderValue.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaType.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaType.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaType.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaType.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/swift-overrides.hmap -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 -module-name HTTPMediaTypes -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaType.o -index-unit-output-path /HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaType.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/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: annotate 'any' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'plainText' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'html' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'css' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'urlEncodedForm' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'formData' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'multipart' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'json' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'jsonAPI' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'xml' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'dtd' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'pdf' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'zip' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'tar' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'gzip' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'bzip2' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'binary' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'gif' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'jpeg' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'png' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'svg' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'audio' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'midi' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'mp3' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'wave' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'ogg' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'avi' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'mpeg' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'fileExtensionMediaTypeMapping' with '@MainActor' if property should only be accessed from the main actor
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\ HTTPMediaType.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPHeaderValue.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaType.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaType.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaType.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaType.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/swift-overrides.hmap -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 -module-name HTTPMediaTypes -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaType.o -index-unit-output-path /HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaType.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPHeaderValue.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaType.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaType.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaType.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaType.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaTypes_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/swift-overrides.hmap -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 -module-name HTTPMediaTypes -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaType.o -index-unit-output-path /HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/HTTPMediaType.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/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: annotate 'any' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'plainText' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'html' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'css' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'urlEncodedForm' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'formData' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'multipart' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'json' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'jsonAPI' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'xml' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'dtd' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'pdf' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'zip' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'tar' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'gzip' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'bzip2' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'binary' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'gif' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'jpeg' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'png' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'svg' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'audio' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'midi' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'mp3' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'wave' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'ogg' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'avi' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'mpeg' with '@MainActor' if property should only be accessed from the main actor
    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: annotate 'fileExtensionMediaTypeMapping' with '@MainActor' if property should only be accessed from the main actor
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_32 Compiling\ HTTPHeaderValue.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPHeaderValue.swift (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPHeaderValue.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPHeaderValue.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPHeaderValue.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPHeaderValue.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPHeaderValue.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/swift-overrides.hmap -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 -module-name HTTPMediaTypes -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPHeaderValue.o -index-unit-output-path /HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPHeaderValue.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPHeaderValue.swift (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPHeaderValue.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPHeaderValue.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPHeaderValue.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPHeaderValue.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPHeaderValue.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPMediaTypes_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/swift-overrides.hmap -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 -module-name HTTPMediaTypes -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPHeaderValue.o -index-unit-output-path /HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/HTTPHeaderValue.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k Compiling\ HTTPHeaderValue.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPHeaderValue.swift (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPHeaderValue.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPHeaderValue.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPHeaderValue.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPHeaderValue.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPHeaderValue.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/swift-overrides.hmap -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 -module-name HTTPMediaTypes -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPHeaderValue.o -index-unit-output-path /HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPHeaderValue.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
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
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPHeaderValue.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTPMediaTypes/HTTPMediaType.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPHeaderValue.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPHeaderValue.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPHeaderValue.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPHeaderValue.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPMediaTypes_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/swift-overrides.hmap -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 -module-name HTTPMediaTypes -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPHeaderValue.o -index-unit-output-path /HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/HTTPHeaderValue.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
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
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.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 -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.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-15.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -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 -experimental-emit-module-separately -disable-cmo
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/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/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
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.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 -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.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-15.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -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 -experimental-emit-module-separately -disable-cmo
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.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/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/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
SwiftDriverJobDiscovery normal arm64_32 Compiling HTTPHeaderValue.swift (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
SwiftDriverJobDiscovery normal armv7k Compiling HTTPHeaderValue.swift (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
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
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.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 -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.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-15.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -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 -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
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.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 -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.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-15.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -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 -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling HTTPHeaderValue.swift (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
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
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.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 -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.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-15.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -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 -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/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/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/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
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
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos5.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.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-15.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.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 -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.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 -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 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/armv7k/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
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos5.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.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-15.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.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 -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.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 -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 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64_32/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
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.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 -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.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-15.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -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 -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
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos5.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.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-15.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.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 -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.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 -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 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPMediaTypes.build/Debug-watchos/HTTPMediaTypes.build/Objects-normal/arm64/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-15.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
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
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'HTTPMediaTypes' from project 'HTTPMediaTypes')
** 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.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.