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 TOMLKit, reference 0.6.1 (18a7db), with Swift 6.1 for watchOS using Xcode 16.3 on 30 Apr 2025 01:21:04 UTC.

Swift 6 data race errors: 42

Build Command

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

Build Log

extension Int16: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:43:1: note: add '@retroactive' to silence this warning
extension Int16: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:49:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Int32: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:49:1: note: add '@retroactive' to silence this warning
extension Int32: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:55:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Int64: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:55:1: note: add '@retroactive' to silence this warning
extension Int64: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:61:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Int: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:61:1: note: add '@retroactive' to silence this warning
extension Int: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible.swift:173:1: warning: extension declares a conformance of imported type 'Bool' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Bool: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible.swift:173:1: note: add '@retroactive' to silence this warning
extension Bool: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLParseError.swift:57:13: warning: stored property 'source' of 'Sendable'-conforming struct 'TOMLParseError' has non-sendable type 'TOMLSourceRegion'; this is an error in the Swift 6 language mode
        public let source: TOMLSourceRegion
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLParseError.swift:30:15: note: consider making struct 'TOMLSourceRegion' conform to the 'Sendable' protocol
public struct TOMLSourceRegion: Equatable, CustomDebugStringConvertible {
              ^
                                                                       , Sendable
SwiftEmitModule normal arm64 Emitting\ module\ for\ TOMLKit (in target 'TOMLKit' from project 'TOMLKit')
EmitSwiftModule normal arm64 (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:30:20: warning: static property 'quoteDateAndTimes' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let quoteDateAndTimes = Self(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:30:20: note: add '@MainActor' to make static property 'quoteDateAndTimes' part of global actor 'MainActor'
        public static let quoteDateAndTimes = Self(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:30:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let quoteDateAndTimes = Self(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:33:20: warning: static property 'quoteInfinitesAndNaNs' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let quoteInfinitesAndNaNs = Self(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:33:20: note: add '@MainActor' to make static property 'quoteInfinitesAndNaNs' part of global actor 'MainActor'
        public static let quoteInfinitesAndNaNs = Self(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:33:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let quoteInfinitesAndNaNs = Self(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:38:20: warning: static property 'allowLiteralStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowLiteralStrings = Self(rawValue: 1 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:38:20: note: add '@MainActor' to make static property 'allowLiteralStrings' part of global actor 'MainActor'
        public static let allowLiteralStrings = Self(rawValue: 1 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:38:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowLiteralStrings = Self(rawValue: 1 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:43:20: warning: static property 'allowMultilineStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowMultilineStrings = Self(rawValue: 1 << 3)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:43:20: note: add '@MainActor' to make static property 'allowMultilineStrings' part of global actor 'MainActor'
        public static let allowMultilineStrings = Self(rawValue: 1 << 3)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:43:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowMultilineStrings = Self(rawValue: 1 << 3)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:48:20: warning: static property 'allowRealTabsInStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowRealTabsInStrings = Self(rawValue: 1 << 4)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:48:20: note: add '@MainActor' to make static property 'allowRealTabsInStrings' part of global actor 'MainActor'
        public static let allowRealTabsInStrings = Self(rawValue: 1 << 4)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:48:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowRealTabsInStrings = Self(rawValue: 1 << 4)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:53:20: warning: static property 'allowUnicodeStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowUnicodeStrings = Self(rawValue: 1 << 5)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:53:20: note: add '@MainActor' to make static property 'allowUnicodeStrings' part of global actor 'MainActor'
        public static let allowUnicodeStrings = Self(rawValue: 1 << 5)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:53:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowUnicodeStrings = Self(rawValue: 1 << 5)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:58:20: warning: static property 'allowBinaryIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowBinaryIntegers = Self(rawValue: 1 << 6)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:58:20: note: add '@MainActor' to make static property 'allowBinaryIntegers' part of global actor 'MainActor'
        public static let allowBinaryIntegers = Self(rawValue: 1 << 6)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:58:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowBinaryIntegers = Self(rawValue: 1 << 6)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:63:20: warning: static property 'allowOctalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowOctalIntegers = Self(rawValue: 1 << 7)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:63:20: note: add '@MainActor' to make static property 'allowOctalIntegers' part of global actor 'MainActor'
        public static let allowOctalIntegers = Self(rawValue: 1 << 7)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:63:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowOctalIntegers = Self(rawValue: 1 << 7)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:68:20: warning: static property 'allowHexadecimalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowHexadecimalIntegers = Self(rawValue: 1 << 8)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:68:20: note: add '@MainActor' to make static property 'allowHexadecimalIntegers' part of global actor 'MainActor'
        public static let allowHexadecimalIntegers = Self(rawValue: 1 << 8)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:68:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowHexadecimalIntegers = Self(rawValue: 1 << 8)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:73:20: warning: static property 'indentSubTables' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let indentSubTables = Self(rawValue: 1 << 9)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:73:20: note: add '@MainActor' to make static property 'indentSubTables' part of global actor 'MainActor'
        public static let indentSubTables = Self(rawValue: 1 << 9)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:73:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let indentSubTables = Self(rawValue: 1 << 9)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:78:20: warning: static property 'indentArrayElements' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let indentArrayElements = Self(rawValue: 1 << 10)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:78:20: note: add '@MainActor' to make static property 'indentArrayElements' part of global actor 'MainActor'
        public static let indentArrayElements = Self(rawValue: 1 << 10)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:78:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let indentArrayElements = Self(rawValue: 1 << 10)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:83:20: warning: static property 'indentations' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let indentations = Self(rawValue: Self.indentSubTables.rawValue | Self.indentArrayElements.rawValue)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:83:20: note: add '@MainActor' to make static property 'indentations' part of global actor 'MainActor'
        public static let indentations = Self(rawValue: Self.indentSubTables.rawValue | Self.indentArrayElements.rawValue)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:83:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let indentations = Self(rawValue: Self.indentSubTables.rawValue | Self.indentArrayElements.rawValue)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:91:20: warning: static property 'relaxedFloatPrecision' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let relaxedFloatPrecision = Self(rawValue: 1 << 11)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:91:20: note: add '@MainActor' to make static property 'relaxedFloatPrecision' part of global actor 'MainActor'
        public static let relaxedFloatPrecision = Self(rawValue: 1 << 11)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:91:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let relaxedFloatPrecision = Self(rawValue: 1 << 11)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:7:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension UInt8: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:7:1: note: add '@retroactive' to silence this warning
extension UInt8: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:13:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension UInt16: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:13:1: note: add '@retroactive' to silence this warning
extension UInt16: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:19:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension UInt32: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:19:1: note: add '@retroactive' to silence this warning
extension UInt32: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:25:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension UInt64: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:25:1: note: add '@retroactive' to silence this warning
extension UInt64: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:31:1: warning: extension declares a conformance of imported type 'UInt' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension UInt: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:31:1: note: add '@retroactive' to silence this warning
extension UInt: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:37:1: warning: extension declares a conformance of imported type 'Int8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Int8: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:37:1: note: add '@retroactive' to silence this warning
extension Int8: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:43:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Int16: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:43:1: note: add '@retroactive' to silence this warning
extension Int16: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:49:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Int32: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:49:1: note: add '@retroactive' to silence this warning
extension Int32: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:55:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Int64: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:55:1: note: add '@retroactive' to silence this warning
extension Int64: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:61:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Int: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:61:1: note: add '@retroactive' to silence this warning
extension Int: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible.swift:173:1: warning: extension declares a conformance of imported type 'Bool' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Bool: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible.swift:173:1: note: add '@retroactive' to silence this warning
extension Bool: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLParseError.swift:57:13: warning: stored property 'source' of 'Sendable'-conforming struct 'TOMLParseError' has non-sendable type 'TOMLSourceRegion'; this is an error in the Swift 6 language mode
        public let source: TOMLSourceRegion
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLParseError.swift:30:15: note: consider making struct 'TOMLSourceRegion' conform to the 'Sendable' protocol
public struct TOMLSourceRegion: Equatable, CustomDebugStringConvertible {
              ^
                                                                       , Sendable
SwiftCompile normal armv7k Compiling\ TOMLArray+CollectionConformance.swift,\ TOMLArray.swift,\ TOMLArrayIterator.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLArray/TOMLArray+CollectionConformance.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLArray/TOMLArray.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLArray/TOMLArrayIterator.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLArray/TOMLArray+CollectionConformance.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLArray/TOMLArray.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLArray/TOMLArrayIterator.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/CTOML.build/Objects-normal/arm64_32/Binary/CTOML.o normal arm64_32 (in target 'CTOML' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -Xlinker -reproducible -target arm64_32-apple-watchos6.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/CTOML.build/Objects-normal/arm64_32/CTOML.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/CTOML.build/Objects-normal/arm64_32/CTOML_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/CTOML.build/Objects-normal/arm64_32/CTOML_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/CTOML.build/Objects-normal/arm64_32/Binary/CTOML.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/CTOML.build/Objects-normal/armv7k/Binary/CTOML.o normal armv7k (in target 'CTOML' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -Xlinker -reproducible -target armv7k-apple-watchos6.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/CTOML.build/Objects-normal/armv7k/CTOML.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/CTOML.build/Objects-normal/armv7k/CTOML_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/CTOML.build/Objects-normal/armv7k/CTOML_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/CTOML.build/Objects-normal/armv7k/Binary/CTOML.o
SwiftCompile normal armv7k Compiling\ TOMLTable.swift,\ TOMLTableIterator.swift,\ TOMLValueConvertible+Int.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLTable/TOMLTable.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLTable/TOMLTableIterator.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLValueConvertible+Int.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLTable/TOMLTable.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLTable/TOMLTableIterator.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLValueConvertible+Int.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:7:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension UInt8: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:7:1: note: add '@retroactive' to silence this warning
extension UInt8: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:13:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension UInt16: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:13:1: note: add '@retroactive' to silence this warning
extension UInt16: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:19:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension UInt32: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:19:1: note: add '@retroactive' to silence this warning
extension UInt32: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:25:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension UInt64: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:25:1: note: add '@retroactive' to silence this warning
extension UInt64: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:31:1: warning: extension declares a conformance of imported type 'UInt' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension UInt: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:31:1: note: add '@retroactive' to silence this warning
extension UInt: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:37:1: warning: extension declares a conformance of imported type 'Int8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Int8: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:37:1: note: add '@retroactive' to silence this warning
extension Int8: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:43:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Int16: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:43:1: note: add '@retroactive' to silence this warning
extension Int16: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:49:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Int32: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:49:1: note: add '@retroactive' to silence this warning
extension Int32: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:55:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Int64: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:55:1: note: add '@retroactive' to silence this warning
extension Int64: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:61:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Int: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:61:1: note: add '@retroactive' to silence this warning
extension Int: TOMLValueConvertible {
^
SwiftCompile normal arm64_32 Compiling\ InternalTOMLDecoder.swift,\ KeyedDecodingContainerProtocol.swift,\ SingleValueDecodingContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/InternalTOMLDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/KeyedDecodingContainerProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/SingleValueDecodingContainer.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/InternalTOMLDecoder.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/KeyedDecodingContainerProtocol.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/SingleValueDecodingContainer.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ TOMLDate&Time&DateTime.swift,\ TOMLInt.swift,\ TOMLTable+CollectionFunctions.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLDate&Time&DateTime.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLInt.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLTable/TOMLTable+CollectionFunctions.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLDate&Time&DateTime.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLInt.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLTable/TOMLTable+CollectionFunctions.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ TOMLTable.swift,\ TOMLTableIterator.swift,\ TOMLValueConvertible+Int.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLTable/TOMLTable.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLTable/TOMLTableIterator.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLValueConvertible+Int.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLTable/TOMLTable.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLTable/TOMLTableIterator.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLValueConvertible+Int.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:7:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension UInt8: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:7:1: note: add '@retroactive' to silence this warning
extension UInt8: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:13:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension UInt16: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:13:1: note: add '@retroactive' to silence this warning
extension UInt16: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:19:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension UInt32: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:19:1: note: add '@retroactive' to silence this warning
extension UInt32: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:25:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension UInt64: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:25:1: note: add '@retroactive' to silence this warning
extension UInt64: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:31:1: warning: extension declares a conformance of imported type 'UInt' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension UInt: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:31:1: note: add '@retroactive' to silence this warning
extension UInt: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:37:1: warning: extension declares a conformance of imported type 'Int8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Int8: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:37:1: note: add '@retroactive' to silence this warning
extension Int8: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:43:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Int16: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:43:1: note: add '@retroactive' to silence this warning
extension Int16: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:49:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Int32: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:49:1: note: add '@retroactive' to silence this warning
extension Int32: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:55:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Int64: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:55:1: note: add '@retroactive' to silence this warning
extension Int64: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:61:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Int: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:61:1: note: add '@retroactive' to silence this warning
extension Int: TOMLValueConvertible {
^
SwiftCompile normal arm64_32 Compiling\ UnkeyedEncodingContainer.swift,\ FormatOptions.swift,\ Operators&Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/UnkeyedEncodingContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Operators&Extensions.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/UnkeyedEncodingContainer.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:30:20: warning: static property 'quoteDateAndTimes' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let quoteDateAndTimes = Self(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:30:20: note: add '@MainActor' to make static property 'quoteDateAndTimes' part of global actor 'MainActor'
        public static let quoteDateAndTimes = Self(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:30:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let quoteDateAndTimes = Self(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:33:20: warning: static property 'quoteInfinitesAndNaNs' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let quoteInfinitesAndNaNs = Self(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:33:20: note: add '@MainActor' to make static property 'quoteInfinitesAndNaNs' part of global actor 'MainActor'
        public static let quoteInfinitesAndNaNs = Self(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:33:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let quoteInfinitesAndNaNs = Self(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:38:20: warning: static property 'allowLiteralStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowLiteralStrings = Self(rawValue: 1 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:38:20: note: add '@MainActor' to make static property 'allowLiteralStrings' part of global actor 'MainActor'
        public static let allowLiteralStrings = Self(rawValue: 1 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:38:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowLiteralStrings = Self(rawValue: 1 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:43:20: warning: static property 'allowMultilineStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowMultilineStrings = Self(rawValue: 1 << 3)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:43:20: note: add '@MainActor' to make static property 'allowMultilineStrings' part of global actor 'MainActor'
        public static let allowMultilineStrings = Self(rawValue: 1 << 3)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:43:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowMultilineStrings = Self(rawValue: 1 << 3)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:48:20: warning: static property 'allowRealTabsInStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowRealTabsInStrings = Self(rawValue: 1 << 4)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:48:20: note: add '@MainActor' to make static property 'allowRealTabsInStrings' part of global actor 'MainActor'
        public static let allowRealTabsInStrings = Self(rawValue: 1 << 4)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:48:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowRealTabsInStrings = Self(rawValue: 1 << 4)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:53:20: warning: static property 'allowUnicodeStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowUnicodeStrings = Self(rawValue: 1 << 5)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:53:20: note: add '@MainActor' to make static property 'allowUnicodeStrings' part of global actor 'MainActor'
        public static let allowUnicodeStrings = Self(rawValue: 1 << 5)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:53:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowUnicodeStrings = Self(rawValue: 1 << 5)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:58:20: warning: static property 'allowBinaryIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowBinaryIntegers = Self(rawValue: 1 << 6)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:58:20: note: add '@MainActor' to make static property 'allowBinaryIntegers' part of global actor 'MainActor'
        public static let allowBinaryIntegers = Self(rawValue: 1 << 6)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:58:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowBinaryIntegers = Self(rawValue: 1 << 6)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:63:20: warning: static property 'allowOctalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowOctalIntegers = Self(rawValue: 1 << 7)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:63:20: note: add '@MainActor' to make static property 'allowOctalIntegers' part of global actor 'MainActor'
        public static let allowOctalIntegers = Self(rawValue: 1 << 7)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:63:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowOctalIntegers = Self(rawValue: 1 << 7)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:68:20: warning: static property 'allowHexadecimalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowHexadecimalIntegers = Self(rawValue: 1 << 8)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:68:20: note: add '@MainActor' to make static property 'allowHexadecimalIntegers' part of global actor 'MainActor'
        public static let allowHexadecimalIntegers = Self(rawValue: 1 << 8)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:68:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowHexadecimalIntegers = Self(rawValue: 1 << 8)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:73:20: warning: static property 'indentSubTables' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let indentSubTables = Self(rawValue: 1 << 9)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:73:20: note: add '@MainActor' to make static property 'indentSubTables' part of global actor 'MainActor'
        public static let indentSubTables = Self(rawValue: 1 << 9)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:73:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let indentSubTables = Self(rawValue: 1 << 9)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:78:20: warning: static property 'indentArrayElements' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let indentArrayElements = Self(rawValue: 1 << 10)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:78:20: note: add '@MainActor' to make static property 'indentArrayElements' part of global actor 'MainActor'
        public static let indentArrayElements = Self(rawValue: 1 << 10)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:78:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let indentArrayElements = Self(rawValue: 1 << 10)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:83:20: warning: static property 'indentations' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let indentations = Self(rawValue: Self.indentSubTables.rawValue | Self.indentArrayElements.rawValue)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:83:20: note: add '@MainActor' to make static property 'indentations' part of global actor 'MainActor'
        public static let indentations = Self(rawValue: Self.indentSubTables.rawValue | Self.indentArrayElements.rawValue)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:83:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let indentations = Self(rawValue: Self.indentSubTables.rawValue | Self.indentArrayElements.rawValue)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:91:20: warning: static property 'relaxedFloatPrecision' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let relaxedFloatPrecision = Self(rawValue: 1 << 11)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:91:20: note: add '@MainActor' to make static property 'relaxedFloatPrecision' part of global actor 'MainActor'
        public static let relaxedFloatPrecision = Self(rawValue: 1 << 11)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:91:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let relaxedFloatPrecision = Self(rawValue: 1 << 11)
                          ^
        nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Operators&Extensions.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ TOMLType.swift,\ TOMLValue+Initializers.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLType.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLValue/TOMLValue+Initializers.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLType.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLValue/TOMLValue+Initializers.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/CTOML.build/Objects-normal/arm64/Binary/CTOML.o normal arm64 (in target 'CTOML' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -Xlinker -reproducible -target arm64-apple-watchos6.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/CTOML.build/Objects-normal/arm64/CTOML.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/CTOML.build/Objects-normal/arm64/CTOML_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/CTOML.build/Objects-normal/arm64/CTOML_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/CTOML.build/Objects-normal/arm64/Binary/CTOML.o
SwiftDriverJobDiscovery normal armv7k Emitting module for TOMLKit (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal armv7k Compiling\ TOMLType.swift,\ TOMLValue+Initializers.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLType.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLValue/TOMLValue+Initializers.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLType.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLValue/TOMLValue+Initializers.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ TOMLTable.swift,\ TOMLTableIterator.swift,\ TOMLValueConvertible+Int.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLTable/TOMLTable.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLTable/TOMLTableIterator.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLValueConvertible+Int.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLTable/TOMLTable.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLTable/TOMLTableIterator.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLValueConvertible+Int.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:7:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension UInt8: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:7:1: note: add '@retroactive' to silence this warning
extension UInt8: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:13:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension UInt16: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:13:1: note: add '@retroactive' to silence this warning
extension UInt16: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:19:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension UInt32: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:19:1: note: add '@retroactive' to silence this warning
extension UInt32: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:25:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension UInt64: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:25:1: note: add '@retroactive' to silence this warning
extension UInt64: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:31:1: warning: extension declares a conformance of imported type 'UInt' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension UInt: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:31:1: note: add '@retroactive' to silence this warning
extension UInt: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:37:1: warning: extension declares a conformance of imported type 'Int8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Int8: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:37:1: note: add '@retroactive' to silence this warning
extension Int8: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:43:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Int16: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:43:1: note: add '@retroactive' to silence this warning
extension Int16: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:49:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Int32: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:49:1: note: add '@retroactive' to silence this warning
extension Int32: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:55:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Int64: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:55:1: note: add '@retroactive' to silence this warning
extension Int64: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:61:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Int: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:61:1: note: add '@retroactive' to silence this warning
extension Int: TOMLValueConvertible {
^
SwiftDriverJobDiscovery normal arm64_32 Emitting module for TOMLKit (in target 'TOMLKit' from project 'TOMLKit')
SwiftDriverJobDiscovery normal arm64 Emitting module for TOMLKit (in target 'TOMLKit' from project 'TOMLKit')
SwiftDriver\ Compilation\ Requirements TOMLKit normal armv7k com.apple.xcode.tools.swift.compiler (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name TOMLKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/TOMLKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/CTOML.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/TOMLKit-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/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/TOMLKit.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/TOMLKit.build/Debug-watchos/TOMLKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/TOMLKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CTOML/include -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/TOMLKit.build/Debug-watchos/TOMLKit.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.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/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/TOMLKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation\ Requirements TOMLKit normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name TOMLKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/TOMLKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/CTOML.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/TOMLKit-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/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/TOMLKit.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/TOMLKit.build/Debug-watchos/TOMLKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/TOMLKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CTOML/include -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/TOMLKit.build/Debug-watchos/TOMLKit.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.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/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/TOMLKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation\ Requirements TOMLKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name TOMLKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/TOMLKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/CTOML.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/TOMLKit-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/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/TOMLKit.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/TOMLKit.build/Debug-watchos/TOMLKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/TOMLKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CTOML/include -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/TOMLKit.build/Debug-watchos/TOMLKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.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/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/TOMLKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/TOMLKit.swiftmodule (in target 'TOMLKit' from project 'TOMLKit')
    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/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/TOMLKit.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.swiftmodule/armv7k-apple-watchos.swiftmodule
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/TOMLKit-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/TOMLKit-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/TOMLKit-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/TOMLKit-Swift.h (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/TOMLKit-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/TOMLKit-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/TOMLKit-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/TOMLKit-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/TOMLKit.swiftdoc (in target 'TOMLKit' from project 'TOMLKit')
    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/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/TOMLKit.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/TOMLKit.abi.json (in target 'TOMLKit' from project 'TOMLKit')
    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/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/TOMLKit.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/TOMLKit.swiftmodule (in target 'TOMLKit' from project 'TOMLKit')
    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/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/TOMLKit.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/TOMLKit.swiftdoc (in target 'TOMLKit' from project 'TOMLKit')
    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/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/TOMLKit.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/TOMLKit.abi.json (in target 'TOMLKit' from project 'TOMLKit')
    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/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/TOMLKit.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/TOMLKit.swiftmodule (in target 'TOMLKit' from project 'TOMLKit')
    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/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/TOMLKit.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/TOMLKit.swiftdoc (in target 'TOMLKit' from project 'TOMLKit')
    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/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/TOMLKit.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/TOMLKit.abi.json (in target 'TOMLKit' from project 'TOMLKit')
    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/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/TOMLKit.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/TOMLKit.swiftsourceinfo (in target 'TOMLKit' from project 'TOMLKit')
    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/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/TOMLKit.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/TOMLKit.swiftsourceinfo (in target 'TOMLKit' from project 'TOMLKit')
    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/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/TOMLKit.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/TOMLKit.swiftsourceinfo (in target 'TOMLKit' from project 'TOMLKit')
    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/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/TOMLKit.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CTOML.o normal arm64\ armv7k\ arm64_32 (in target 'CTOML' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/CTOML.build/Objects-normal/arm64/Binary/CTOML.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/CTOML.build/Objects-normal/armv7k/Binary/CTOML.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/CTOML.build/Objects-normal/arm64_32/Binary/CTOML.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CTOML.o
SwiftCompile normal arm64 Compiling\ TOMLValue.swift,\ ValueOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLValue/TOMLValue.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/ValueOptions.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLValue/TOMLValue.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/ValueOptions.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ TOMLDate&Time&DateTime.swift,\ TOMLInt.swift,\ TOMLTable+CollectionFunctions.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLDate&Time&DateTime.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLInt.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLTable/TOMLTable+CollectionFunctions.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLDate&Time&DateTime.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLInt.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLTable/TOMLTable+CollectionFunctions.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling TOMLValue.swift, ValueOptions.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64_32 Compiling\ TOMLValue.swift,\ ValueOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLValue/TOMLValue.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/ValueOptions.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLValue/TOMLValue.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/ValueOptions.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ TOMLType.swift,\ TOMLValue+Initializers.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLType.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLValue/TOMLValue+Initializers.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLType.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLValue/TOMLValue+Initializers.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ KeyedEncodingContainer.swift,\ SingleValueEncodingContainer.swift,\ TOMLEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/KeyedEncodingContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/SingleValueEncodingContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/TOMLEncoder.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/KeyedEncodingContainer.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/SingleValueEncodingContainer.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/TOMLEncoder.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling TOMLTable.swift, TOMLTableIterator.swift, TOMLValueConvertible+Int.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64_32 Compiling\ TOMLValueConvertible.swift,\ TOMLCodingKey.swift,\ TOMLParseError.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLValueConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLCodingKey.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLParseError.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLValueConvertible.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible.swift:173:1: warning: extension declares a conformance of imported type 'Bool' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Bool: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible.swift:173:1: note: add '@retroactive' to silence this warning
extension Bool: TOMLValueConvertible {
^
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLCodingKey.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLParseError.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLParseError.swift:57:13: warning: stored property 'source' of 'Sendable'-conforming struct 'TOMLParseError' has non-sendable type 'TOMLSourceRegion'; this is an error in the Swift 6 language mode
        public let source: TOMLSourceRegion
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLParseError.swift:30:15: note: consider making struct 'TOMLSourceRegion' conform to the 'Sendable' protocol
public struct TOMLSourceRegion: Equatable, CustomDebugStringConvertible {
              ^
                                                                       , Sendable
SwiftDriverJobDiscovery normal armv7k Compiling TOMLType.swift, TOMLValue+Initializers.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftDriverJobDiscovery normal arm64 Compiling TOMLType.swift, TOMLValue+Initializers.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftDriverJobDiscovery normal armv7k Compiling TOMLTable.swift, TOMLTableIterator.swift, TOMLValueConvertible+Int.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64_32 Compiling\ KeyedEncodingContainer.swift,\ SingleValueEncodingContainer.swift,\ TOMLEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/KeyedEncodingContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/SingleValueEncodingContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/TOMLEncoder.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/KeyedEncodingContainer.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/SingleValueEncodingContainer.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/TOMLEncoder.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ UnkeyedEncodingContainer.swift,\ FormatOptions.swift,\ Operators&Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/UnkeyedEncodingContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Operators&Extensions.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/UnkeyedEncodingContainer.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:30:20: warning: static property 'quoteDateAndTimes' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let quoteDateAndTimes = Self(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:30:20: note: add '@MainActor' to make static property 'quoteDateAndTimes' part of global actor 'MainActor'
        public static let quoteDateAndTimes = Self(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:30:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let quoteDateAndTimes = Self(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:33:20: warning: static property 'quoteInfinitesAndNaNs' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let quoteInfinitesAndNaNs = Self(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:33:20: note: add '@MainActor' to make static property 'quoteInfinitesAndNaNs' part of global actor 'MainActor'
        public static let quoteInfinitesAndNaNs = Self(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:33:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let quoteInfinitesAndNaNs = Self(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:38:20: warning: static property 'allowLiteralStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowLiteralStrings = Self(rawValue: 1 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:38:20: note: add '@MainActor' to make static property 'allowLiteralStrings' part of global actor 'MainActor'
        public static let allowLiteralStrings = Self(rawValue: 1 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:38:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowLiteralStrings = Self(rawValue: 1 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:43:20: warning: static property 'allowMultilineStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowMultilineStrings = Self(rawValue: 1 << 3)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:43:20: note: add '@MainActor' to make static property 'allowMultilineStrings' part of global actor 'MainActor'
        public static let allowMultilineStrings = Self(rawValue: 1 << 3)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:43:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowMultilineStrings = Self(rawValue: 1 << 3)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:48:20: warning: static property 'allowRealTabsInStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowRealTabsInStrings = Self(rawValue: 1 << 4)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:48:20: note: add '@MainActor' to make static property 'allowRealTabsInStrings' part of global actor 'MainActor'
        public static let allowRealTabsInStrings = Self(rawValue: 1 << 4)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:48:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowRealTabsInStrings = Self(rawValue: 1 << 4)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:53:20: warning: static property 'allowUnicodeStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowUnicodeStrings = Self(rawValue: 1 << 5)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:53:20: note: add '@MainActor' to make static property 'allowUnicodeStrings' part of global actor 'MainActor'
        public static let allowUnicodeStrings = Self(rawValue: 1 << 5)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:53:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowUnicodeStrings = Self(rawValue: 1 << 5)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:58:20: warning: static property 'allowBinaryIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowBinaryIntegers = Self(rawValue: 1 << 6)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:58:20: note: add '@MainActor' to make static property 'allowBinaryIntegers' part of global actor 'MainActor'
        public static let allowBinaryIntegers = Self(rawValue: 1 << 6)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:58:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowBinaryIntegers = Self(rawValue: 1 << 6)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:63:20: warning: static property 'allowOctalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowOctalIntegers = Self(rawValue: 1 << 7)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:63:20: note: add '@MainActor' to make static property 'allowOctalIntegers' part of global actor 'MainActor'
        public static let allowOctalIntegers = Self(rawValue: 1 << 7)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:63:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowOctalIntegers = Self(rawValue: 1 << 7)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:68:20: warning: static property 'allowHexadecimalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowHexadecimalIntegers = Self(rawValue: 1 << 8)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:68:20: note: add '@MainActor' to make static property 'allowHexadecimalIntegers' part of global actor 'MainActor'
        public static let allowHexadecimalIntegers = Self(rawValue: 1 << 8)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:68:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowHexadecimalIntegers = Self(rawValue: 1 << 8)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:73:20: warning: static property 'indentSubTables' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let indentSubTables = Self(rawValue: 1 << 9)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:73:20: note: add '@MainActor' to make static property 'indentSubTables' part of global actor 'MainActor'
        public static let indentSubTables = Self(rawValue: 1 << 9)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:73:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let indentSubTables = Self(rawValue: 1 << 9)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:78:20: warning: static property 'indentArrayElements' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let indentArrayElements = Self(rawValue: 1 << 10)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:78:20: note: add '@MainActor' to make static property 'indentArrayElements' part of global actor 'MainActor'
        public static let indentArrayElements = Self(rawValue: 1 << 10)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:78:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let indentArrayElements = Self(rawValue: 1 << 10)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:83:20: warning: static property 'indentations' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let indentations = Self(rawValue: Self.indentSubTables.rawValue | Self.indentArrayElements.rawValue)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:83:20: note: add '@MainActor' to make static property 'indentations' part of global actor 'MainActor'
        public static let indentations = Self(rawValue: Self.indentSubTables.rawValue | Self.indentArrayElements.rawValue)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:83:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let indentations = Self(rawValue: Self.indentSubTables.rawValue | Self.indentArrayElements.rawValue)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:91:20: warning: static property 'relaxedFloatPrecision' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let relaxedFloatPrecision = Self(rawValue: 1 << 11)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:91:20: note: add '@MainActor' to make static property 'relaxedFloatPrecision' part of global actor 'MainActor'
        public static let relaxedFloatPrecision = Self(rawValue: 1 << 11)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:91:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let relaxedFloatPrecision = Self(rawValue: 1 << 11)
                          ^
        nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Operators&Extensions.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling TOMLArray+CollectionConformance.swift, TOMLArray.swift, TOMLArrayIterator.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftDriverJobDiscovery normal arm64_32 Compiling TOMLTable.swift, TOMLTableIterator.swift, TOMLValueConvertible+Int.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64 Compiling\ TOMLArray+CollectionConformance.swift,\ TOMLArray.swift,\ TOMLArrayIterator.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLArray/TOMLArray+CollectionConformance.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLArray/TOMLArray.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLArray/TOMLArrayIterator.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLArray/TOMLArray+CollectionConformance.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLArray/TOMLArray.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLArray/TOMLArrayIterator.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling TOMLType.swift, TOMLValue+Initializers.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal armv7k Compiling\ TOMLValueConvertible.swift,\ TOMLCodingKey.swift,\ TOMLParseError.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLValueConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLCodingKey.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLParseError.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLValueConvertible.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible.swift:173:1: warning: extension declares a conformance of imported type 'Bool' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Bool: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible.swift:173:1: note: add '@retroactive' to silence this warning
extension Bool: TOMLValueConvertible {
^
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLCodingKey.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLParseError.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLParseError.swift:57:13: warning: stored property 'source' of 'Sendable'-conforming struct 'TOMLParseError' has non-sendable type 'TOMLSourceRegion'; this is an error in the Swift 6 language mode
        public let source: TOMLSourceRegion
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLParseError.swift:30:15: note: consider making struct 'TOMLSourceRegion' conform to the 'Sendable' protocol
public struct TOMLSourceRegion: Equatable, CustomDebugStringConvertible {
              ^
                                                                       , Sendable
SwiftDriverJobDiscovery normal arm64_32 Compiling TOMLValue.swift, ValueOptions.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64_32 Compiling\ TOMLArray+CollectionConformance.swift,\ TOMLArray.swift,\ TOMLArrayIterator.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLArray/TOMLArray+CollectionConformance.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLArray/TOMLArray.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLArray/TOMLArrayIterator.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLArray/TOMLArray+CollectionConformance.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLArray/TOMLArray.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLArray/TOMLArrayIterator.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling UnkeyedEncodingContainer.swift, FormatOptions.swift, Operators&Extensions.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64 Compiling\ TOMLDate&Time&DateTime.swift,\ TOMLInt.swift,\ TOMLTable+CollectionFunctions.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLDate&Time&DateTime.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLInt.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLTable/TOMLTable+CollectionFunctions.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLDate&Time&DateTime.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLInt.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLTable/TOMLTable+CollectionFunctions.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling InternalTOMLDecoder.swift, KeyedDecodingContainerProtocol.swift, SingleValueDecodingContainer.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64 Compiling\ UnkeyedEncodingContainer.swift,\ FormatOptions.swift,\ Operators&Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/UnkeyedEncodingContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Operators&Extensions.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/UnkeyedEncodingContainer.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:30:20: warning: static property 'quoteDateAndTimes' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let quoteDateAndTimes = Self(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:30:20: note: add '@MainActor' to make static property 'quoteDateAndTimes' part of global actor 'MainActor'
        public static let quoteDateAndTimes = Self(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:30:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let quoteDateAndTimes = Self(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:33:20: warning: static property 'quoteInfinitesAndNaNs' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let quoteInfinitesAndNaNs = Self(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:33:20: note: add '@MainActor' to make static property 'quoteInfinitesAndNaNs' part of global actor 'MainActor'
        public static let quoteInfinitesAndNaNs = Self(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:33:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let quoteInfinitesAndNaNs = Self(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:38:20: warning: static property 'allowLiteralStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowLiteralStrings = Self(rawValue: 1 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:38:20: note: add '@MainActor' to make static property 'allowLiteralStrings' part of global actor 'MainActor'
        public static let allowLiteralStrings = Self(rawValue: 1 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:38:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowLiteralStrings = Self(rawValue: 1 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:43:20: warning: static property 'allowMultilineStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowMultilineStrings = Self(rawValue: 1 << 3)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:43:20: note: add '@MainActor' to make static property 'allowMultilineStrings' part of global actor 'MainActor'
        public static let allowMultilineStrings = Self(rawValue: 1 << 3)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:43:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowMultilineStrings = Self(rawValue: 1 << 3)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:48:20: warning: static property 'allowRealTabsInStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowRealTabsInStrings = Self(rawValue: 1 << 4)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:48:20: note: add '@MainActor' to make static property 'allowRealTabsInStrings' part of global actor 'MainActor'
        public static let allowRealTabsInStrings = Self(rawValue: 1 << 4)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:48:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowRealTabsInStrings = Self(rawValue: 1 << 4)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:53:20: warning: static property 'allowUnicodeStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowUnicodeStrings = Self(rawValue: 1 << 5)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:53:20: note: add '@MainActor' to make static property 'allowUnicodeStrings' part of global actor 'MainActor'
        public static let allowUnicodeStrings = Self(rawValue: 1 << 5)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:53:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowUnicodeStrings = Self(rawValue: 1 << 5)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:58:20: warning: static property 'allowBinaryIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowBinaryIntegers = Self(rawValue: 1 << 6)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:58:20: note: add '@MainActor' to make static property 'allowBinaryIntegers' part of global actor 'MainActor'
        public static let allowBinaryIntegers = Self(rawValue: 1 << 6)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:58:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowBinaryIntegers = Self(rawValue: 1 << 6)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:63:20: warning: static property 'allowOctalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowOctalIntegers = Self(rawValue: 1 << 7)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:63:20: note: add '@MainActor' to make static property 'allowOctalIntegers' part of global actor 'MainActor'
        public static let allowOctalIntegers = Self(rawValue: 1 << 7)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:63:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowOctalIntegers = Self(rawValue: 1 << 7)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:68:20: warning: static property 'allowHexadecimalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let allowHexadecimalIntegers = Self(rawValue: 1 << 8)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:68:20: note: add '@MainActor' to make static property 'allowHexadecimalIntegers' part of global actor 'MainActor'
        public static let allowHexadecimalIntegers = Self(rawValue: 1 << 8)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:68:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let allowHexadecimalIntegers = Self(rawValue: 1 << 8)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:73:20: warning: static property 'indentSubTables' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let indentSubTables = Self(rawValue: 1 << 9)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:73:20: note: add '@MainActor' to make static property 'indentSubTables' part of global actor 'MainActor'
        public static let indentSubTables = Self(rawValue: 1 << 9)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:73:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let indentSubTables = Self(rawValue: 1 << 9)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:78:20: warning: static property 'indentArrayElements' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let indentArrayElements = Self(rawValue: 1 << 10)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:78:20: note: add '@MainActor' to make static property 'indentArrayElements' part of global actor 'MainActor'
        public static let indentArrayElements = Self(rawValue: 1 << 10)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:78:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let indentArrayElements = Self(rawValue: 1 << 10)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:83:20: warning: static property 'indentations' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let indentations = Self(rawValue: Self.indentSubTables.rawValue | Self.indentArrayElements.rawValue)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:83:20: note: add '@MainActor' to make static property 'indentations' part of global actor 'MainActor'
        public static let indentations = Self(rawValue: Self.indentSubTables.rawValue | Self.indentArrayElements.rawValue)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:83:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let indentations = Self(rawValue: Self.indentSubTables.rawValue | Self.indentArrayElements.rawValue)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:91:20: warning: static property 'relaxedFloatPrecision' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let relaxedFloatPrecision = Self(rawValue: 1 << 11)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:20:15: note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
public struct FormatOptions: OptionSet {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:91:20: note: add '@MainActor' to make static property 'relaxedFloatPrecision' part of global actor 'MainActor'
        public static let relaxedFloatPrecision = Self(rawValue: 1 << 11)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:91:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let relaxedFloatPrecision = Self(rawValue: 1 << 11)
                          ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Operators&Extensions.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling TOMLDate&Time&DateTime.swift, TOMLInt.swift, TOMLTable+CollectionFunctions.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64_32 Compiling\ TOMLDecoder.swift,\ UnkeyedDecodingContainer.swift,\ InternalTOMLEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/TOMLDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/UnkeyedDecodingContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/InternalTOMLEncoder.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/TOMLDecoder.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/UnkeyedDecodingContainer.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/InternalTOMLEncoder.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling KeyedEncodingContainer.swift, SingleValueEncodingContainer.swift, TOMLEncoder.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64 Compiling\ TOMLValueConvertible.swift,\ TOMLCodingKey.swift,\ TOMLParseError.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLValueConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLCodingKey.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLParseError.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML\ Data\ Types/TOMLValueConvertible.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible.swift:173:1: warning: extension declares a conformance of imported type 'Bool' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Bool: TOMLValueConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible.swift:173:1: note: add '@retroactive' to silence this warning
extension Bool: TOMLValueConvertible {
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLCodingKey.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLParseError.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLParseError.swift:57:13: warning: stored property 'source' of 'Sendable'-conforming struct 'TOMLParseError' has non-sendable type 'TOMLSourceRegion'; this is an error in the Swift 6 language mode
        public let source: TOMLSourceRegion
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLParseError.swift:30:15: note: consider making struct 'TOMLSourceRegion' conform to the 'Sendable' protocol
public struct TOMLSourceRegion: Equatable, CustomDebugStringConvertible {
              ^
                                                                       , Sendable
SwiftDriverJobDiscovery normal arm64 Compiling TOMLArray+CollectionConformance.swift, TOMLArray.swift, TOMLArrayIterator.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal armv7k Compiling\ InternalTOMLDecoder.swift,\ KeyedDecodingContainerProtocol.swift,\ SingleValueDecodingContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/InternalTOMLDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/KeyedDecodingContainerProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/SingleValueDecodingContainer.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/InternalTOMLDecoder.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/KeyedDecodingContainerProtocol.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/SingleValueDecodingContainer.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling TOMLValueConvertible.swift, TOMLCodingKey.swift, TOMLParseError.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal armv7k Compiling\ TOMLValue.swift,\ ValueOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLValue/TOMLValue.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/ValueOptions.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLValue/TOMLValue.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/ValueOptions.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling TOMLArray+CollectionConformance.swift, TOMLArray.swift, TOMLArrayIterator.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64 Compiling\ KeyedEncodingContainer.swift,\ SingleValueEncodingContainer.swift,\ TOMLEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/KeyedEncodingContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/SingleValueEncodingContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/TOMLEncoder.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/KeyedEncodingContainer.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/SingleValueEncodingContainer.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/TOMLEncoder.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling TOMLDecoder.swift, UnkeyedDecodingContainer.swift, InternalTOMLEncoder.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftDriver\ Compilation TOMLKit normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name TOMLKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/TOMLKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/CTOML.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/TOMLKit-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/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/TOMLKit.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/TOMLKit.build/Debug-watchos/TOMLKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/TOMLKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CTOML/include -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/TOMLKit.build/Debug-watchos/TOMLKit.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.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/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/TOMLKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal armv7k Compiling KeyedEncodingContainer.swift, SingleValueEncodingContainer.swift, TOMLEncoder.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64 Compiling\ InternalTOMLDecoder.swift,\ KeyedDecodingContainerProtocol.swift,\ SingleValueDecodingContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/InternalTOMLDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/KeyedDecodingContainerProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/SingleValueDecodingContainer.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/InternalTOMLDecoder.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/KeyedDecodingContainerProtocol.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/SingleValueDecodingContainer.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ TOMLDecoder.swift,\ UnkeyedDecodingContainer.swift,\ InternalTOMLEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/TOMLDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/UnkeyedDecodingContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/InternalTOMLEncoder.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/TOMLDecoder.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/UnkeyedDecodingContainer.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/InternalTOMLEncoder.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling UnkeyedEncodingContainer.swift, FormatOptions.swift, Operators&Extensions.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64 Compiling\ TOMLDecoder.swift,\ UnkeyedDecodingContainer.swift,\ InternalTOMLEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/TOMLDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/UnkeyedDecodingContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/InternalTOMLEncoder.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/TOMLDecoder.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Decoder/UnkeyedDecodingContainer.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/Encoder/InternalTOMLEncoder.swift (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling TOMLDate&Time&DateTime.swift, TOMLInt.swift, TOMLTable+CollectionFunctions.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftDriverJobDiscovery normal armv7k Compiling TOMLValueConvertible.swift, TOMLCodingKey.swift, TOMLParseError.swift (in target 'TOMLKit' from project 'TOMLKit')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CTOML.o (in target 'CTOML' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CTOML.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/Binary/TOMLKit.o normal arm64_32 (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos6.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/TOMLKit.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/TOMLKit_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/TOMLKit_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/TOMLKit.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/Binary/TOMLKit.o
SwiftDriverJobDiscovery normal armv7k Compiling TOMLValue.swift, ValueOptions.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftDriverJobDiscovery normal armv7k Compiling InternalTOMLDecoder.swift, KeyedDecodingContainerProtocol.swift, SingleValueDecodingContainer.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftDriverJobDiscovery normal arm64 Compiling TOMLValueConvertible.swift, TOMLCodingKey.swift, TOMLParseError.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftDriverJobDiscovery normal arm64 Compiling UnkeyedEncodingContainer.swift, FormatOptions.swift, Operators&Extensions.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftDriverJobDiscovery normal arm64 Compiling TOMLDate&Time&DateTime.swift, TOMLInt.swift, TOMLTable+CollectionFunctions.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftDriverJobDiscovery normal arm64 Compiling TOMLDecoder.swift, UnkeyedDecodingContainer.swift, InternalTOMLEncoder.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftDriverJobDiscovery normal armv7k Compiling TOMLDecoder.swift, UnkeyedDecodingContainer.swift, InternalTOMLEncoder.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftDriver\ Compilation TOMLKit normal armv7k com.apple.xcode.tools.swift.compiler (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name TOMLKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/TOMLKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/CTOML.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/TOMLKit-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/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/TOMLKit.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/TOMLKit.build/Debug-watchos/TOMLKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/TOMLKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CTOML/include -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/TOMLKit.build/Debug-watchos/TOMLKit.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.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/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/TOMLKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/Binary/TOMLKit.o normal armv7k (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos6.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/TOMLKit.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/TOMLKit_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/TOMLKit_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/TOMLKit.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/Binary/TOMLKit.o
SwiftDriverJobDiscovery normal arm64 Compiling InternalTOMLDecoder.swift, KeyedDecodingContainerProtocol.swift, SingleValueDecodingContainer.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftDriverJobDiscovery normal arm64 Compiling KeyedEncodingContainer.swift, SingleValueEncodingContainer.swift, TOMLEncoder.swift (in target 'TOMLKit' from project 'TOMLKit')
SwiftDriver\ Compilation TOMLKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name TOMLKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/TOMLKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/CTOML.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/TOMLKit-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/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/TOMLKit.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/TOMLKit.build/Debug-watchos/TOMLKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/TOMLKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CTOML/include -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/TOMLKit.build/Debug-watchos/TOMLKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.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/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/TOMLKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/Binary/TOMLKit.o normal arm64 (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos6.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/TOMLKit.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/TOMLKit_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/TOMLKit_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/TOMLKit.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/Binary/TOMLKit.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.o normal arm64\ armv7k\ arm64_32 (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/Binary/TOMLKit.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/Binary/TOMLKit.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/Binary/TOMLKit.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.o
ExtractAppIntentsMetadata (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name TOMLKit --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 6.0 --bundle-identifier spi-builder-workspace.TOMLKit --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.appintents --target-triple arm64-apple-watchos6.0 --target-triple armv7k-apple-watchos6.0 --target-triple arm64_32-apple-watchos6.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/TOMLKit_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/TOMLKit_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/TOMLKit_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/TOMLKit.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/TOMLKit.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/TOMLKit.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/TOMLKit.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/TOMLKit.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64/TOMLKit.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/armv7k/TOMLKit.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TOMLKit.build/Debug-watchos/TOMLKit.build/Objects-normal/arm64_32/TOMLKit.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-29 18:21:03.192 appintentsmetadataprocessor[1153:6428] Starting appintentsmetadataprocessor export
2025-04-29 18:21:03.239 appintentsmetadataprocessor[1153:6428] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.o (in target 'TOMLKit' from project 'TOMLKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/TOMLKit.o
** BUILD SUCCEEDED **
Build complete.
{
  "c_language_standard" : "c99",
  "cxx_language_standard" : "c++17",
  "dependencies" : [
    {
      "identity" : "swift-checkit",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.0.2",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/karwa/swift-checkit.git"
    },
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    }
  ],
  "manifest_display_name" : "TOMLKit",
  "name" : "TOMLKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "TOMLKit",
      "targets" : [
        "TOMLKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "TOMLKitTests",
      "module_type" : "SwiftTarget",
      "name" : "TOMLKitTests",
      "path" : "Tests/TOMLKitTests",
      "product_dependencies" : [
        "Checkit"
      ],
      "sources" : [
        "TOMLKitTests.swift"
      ],
      "target_dependencies" : [
        "TOMLKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "TOMLKit",
      "module_type" : "SwiftTarget",
      "name" : "TOMLKit",
      "path" : "Sources/TOMLKit",
      "product_memberships" : [
        "TOMLKit"
      ],
      "sources" : [
        "Decoder/InternalTOMLDecoder.swift",
        "Decoder/KeyedDecodingContainerProtocol.swift",
        "Decoder/SingleValueDecodingContainer.swift",
        "Decoder/TOMLDecoder.swift",
        "Decoder/UnkeyedDecodingContainer.swift",
        "Encoder/InternalTOMLEncoder.swift",
        "Encoder/KeyedEncodingContainer.swift",
        "Encoder/SingleValueEncodingContainer.swift",
        "Encoder/TOMLEncoder.swift",
        "Encoder/UnkeyedEncodingContainer.swift",
        "FormatOptions.swift",
        "Operators&Extensions.swift",
        "TOML Data Types/TOMLArray/TOMLArray+CollectionConformance.swift",
        "TOML Data Types/TOMLArray/TOMLArray.swift",
        "TOML Data Types/TOMLArray/TOMLArrayIterator.swift",
        "TOML Data Types/TOMLDate&Time&DateTime.swift",
        "TOML Data Types/TOMLInt.swift",
        "TOML Data Types/TOMLTable/TOMLTable+CollectionFunctions.swift",
        "TOML Data Types/TOMLTable/TOMLTable.swift",
        "TOML Data Types/TOMLTable/TOMLTableIterator.swift",
        "TOML Data Types/TOMLValueConvertible+Int.swift",
        "TOML Data Types/TOMLValueConvertible.swift",
        "TOMLCodingKey.swift",
        "TOMLParseError.swift",
        "TOMLType.swift",
        "TOMLValue/TOMLValue+Initializers.swift",
        "TOMLValue/TOMLValue.swift",
        "ValueOptions.swift"
      ],
      "target_dependencies" : [
        "CTOML"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CTOML",
      "module_type" : "ClangTarget",
      "name" : "CTOML",
      "path" : "Sources/CTOML",
      "product_memberships" : [
        "TOMLKit"
      ],
      "sources" : [
        "Sources/Array.cpp",
        "Sources/Conversion.cpp",
        "Sources/Date&Time&DateTime.cpp",
        "Sources/Node.cpp",
        "Sources/Table.cpp"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.