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

The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of CSV with Swift 6.0 for visionOS using Xcode 16.0.

Swift 6 data race errors: 2

Build Command

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

Build Log

/Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift:9:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CSVCodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | /// The options used for encoding/decoding certin types in the `CSVEncoder` and `CSVDecoder`.
  2 | public final class CSVCodingOptions {
    |                    `- note: class 'CSVCodingOptions' does not conform to the 'Sendable' protocol
  3 |
  4 |     /// The default coding options.
    :
  7 |     /// the `NilCodingStrategy`. This means `Bool` will be represented the value's textual name
  8 |     /// and `nil` will be an empty cell.
  9 |     public static let `default` = CSVCodingOptions(boolCodingStrategy: .string, nilCodingStrategy: .blank)
    |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CSVCodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 |     /// The bool encoding/decoding strategy used for the encoder/decoder the option set is passed to.
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:17:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Config' may have shared mutable state; this is an error in the Swift 6 language mode
 5 | /// to allow for separators other than comma or string delimiters
 6 | /// like quotation marks
 7 | public struct Config {
   |               `- note: consider making struct 'Config' conform to the 'Sendable' protocol
 8 |
 9 |     /// The character that separates one cell from another.
   :
15 |     /// The deault `Config` instance that uses commas for cell separators and double quotes
16 |     /// for cell delimiters.
17 |     public static let `default`: Config = Config(cellSeparator: 44, cellDelimiter: 34)
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Config' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     /// Creates a new `Config` instance
SwiftCompile normal arm64 Compiling\ Seralizer.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Seralizer.swift (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CSVCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncKeyedDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncSingleValueDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncKeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncSingleValueEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncUnkeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Parser.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Seralizer.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Seralizer.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Seralizer.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Seralizer.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Seralizer.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CSV -frontend-parseable-output -disable-clang-spi -target-sdk-version 1.1 -target-sdk-name xros1.1 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Seralizer.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Seralizer.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CSV/Seralizer.swift (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CSVCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncKeyedDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncSingleValueDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncKeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncSingleValueEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncUnkeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Parser.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Seralizer.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Seralizer.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Seralizer.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Seralizer.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Seralizer.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CSV -frontend-parseable-output -disable-clang-spi -target-sdk-version 1.1 -target-sdk-name xros1.1 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Seralizer.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Seralizer.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:17:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Config' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default`: Config = Config(cellSeparator: 44, cellDelimiter: 34)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:7:15: note: consider making struct 'Config' conform to the 'Sendable' protocol
public struct Config {
              ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:17:23: note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    public static let `default`: Config = Config(cellSeparator: 44, cellDelimiter: 34)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default`: Config = Config(cellSeparator: 44, cellDelimiter: 34)
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ AsyncEncoder.swift,\ AsyncKeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncKeyedEncoder.swift (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CSVCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncKeyedDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncSingleValueDecoder.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncEncoder.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncKeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncSingleValueEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncUnkeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Seralizer.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncEncoder.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncEncoder.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncEncoder.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncEncoder.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedEncoder.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedEncoder.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedEncoder.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedEncoder.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CSV -frontend-parseable-output -disable-clang-spi -target-sdk-version 1.1 -target-sdk-name xros1.1 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncEncoder.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedEncoder.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncEncoder.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedEncoder.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncEncoder.swift (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CSVCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncKeyedDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncSingleValueDecoder.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncEncoder.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncKeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncSingleValueEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncUnkeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Seralizer.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncEncoder.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncEncoder.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncEncoder.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncEncoder.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedEncoder.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedEncoder.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedEncoder.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedEncoder.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CSV -frontend-parseable-output -disable-clang-spi -target-sdk-version 1.1 -target-sdk-name xros1.1 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncEncoder.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedEncoder.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncEncoder.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedEncoder.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:17:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Config' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default`: Config = Config(cellSeparator: 44, cellDelimiter: 34)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:7:15: note: consider making struct 'Config' conform to the 'Sendable' protocol
public struct Config {
              ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:17:23: note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    public static let `default`: Config = Config(cellSeparator: 44, cellDelimiter: 34)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default`: Config = Config(cellSeparator: 44, cellDelimiter: 34)
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncKeyedEncoder.swift (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CSVCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncKeyedDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncSingleValueDecoder.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncEncoder.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncKeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncSingleValueEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncUnkeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Seralizer.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncEncoder.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncEncoder.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncEncoder.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncEncoder.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedEncoder.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedEncoder.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedEncoder.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedEncoder.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CSV -frontend-parseable-output -disable-clang-spi -target-sdk-version 1.1 -target-sdk-name xros1.1 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncEncoder.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedEncoder.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncEncoder.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedEncoder.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ Utilities.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Utilities.swift (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CSVCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncKeyedDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncSingleValueDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncKeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncSingleValueEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncUnkeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Seralizer.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Utilities.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Utilities.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Utilities.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Utilities.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CSV -frontend-parseable-output -disable-clang-spi -target-sdk-version 1.1 -target-sdk-name xros1.1 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Utilities.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Utilities.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CSV/Utilities.swift (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CSVCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncKeyedDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncSingleValueDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncKeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncSingleValueEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncUnkeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Seralizer.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Utilities.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Utilities.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Utilities.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Utilities.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CSV -frontend-parseable-output -disable-clang-spi -target-sdk-version 1.1 -target-sdk-name xros1.1 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Utilities.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Utilities.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ Config.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CSVCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncKeyedDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncSingleValueDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncKeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncSingleValueEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncUnkeyedEncoder.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Seralizer.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Config.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Config.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Config.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Config.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CSV -frontend-parseable-output -disable-clang-spi -target-sdk-version 1.1 -target-sdk-name xros1.1 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Config.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Config.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CSVCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncKeyedDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncSingleValueDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncKeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncSingleValueEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncUnkeyedEncoder.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Seralizer.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Config.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Config.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Config.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Config.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CSV -frontend-parseable-output -disable-clang-spi -target-sdk-version 1.1 -target-sdk-name xros1.1 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Config.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Config.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:17:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Config' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default`: Config = Config(cellSeparator: 44, cellDelimiter: 34)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:7:15: note: consider making struct 'Config' conform to the 'Sendable' protocol
public struct Config {
              ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:17:23: note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    public static let `default`: Config = Config(cellSeparator: 44, cellDelimiter: 34)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default`: Config = Config(cellSeparator: 44, cellDelimiter: 34)
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ AsyncUnkeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncUnkeyedEncoder.swift (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CSVCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncKeyedDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncSingleValueDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncKeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncSingleValueEncoder.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncUnkeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Seralizer.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncUnkeyedEncoder.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncUnkeyedEncoder.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncUnkeyedEncoder.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncUnkeyedEncoder.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CSV -frontend-parseable-output -disable-clang-spi -target-sdk-version 1.1 -target-sdk-name xros1.1 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncUnkeyedEncoder.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncUnkeyedEncoder.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncUnkeyedEncoder.swift (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CSVCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncKeyedDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncSingleValueDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncKeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncSingleValueEncoder.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncUnkeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Seralizer.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncUnkeyedEncoder.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncUnkeyedEncoder.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncUnkeyedEncoder.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncUnkeyedEncoder.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CSV -frontend-parseable-output -disable-clang-spi -target-sdk-version 1.1 -target-sdk-name xros1.1 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncUnkeyedEncoder.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncUnkeyedEncoder.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ AsyncSingleValueEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncSingleValueEncoder.swift (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CSVCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncKeyedDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncSingleValueDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncKeyedEncoder.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncSingleValueEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncUnkeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Seralizer.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueEncoder.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueEncoder.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueEncoder.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueEncoder.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CSV -frontend-parseable-output -disable-clang-spi -target-sdk-version 1.1 -target-sdk-name xros1.1 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueEncoder.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueEncoder.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncSingleValueEncoder.swift (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CSVCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncKeyedDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncSingleValueDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncKeyedEncoder.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncSingleValueEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncUnkeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Seralizer.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueEncoder.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueEncoder.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueEncoder.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueEncoder.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CSV -frontend-parseable-output -disable-clang-spi -target-sdk-version 1.1 -target-sdk-name xros1.1 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueEncoder.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueEncoder.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ AsyncKeyedDecoder.swift,\ AsyncSingleValueDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncKeyedDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncSingleValueDecoder.swift (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CSVCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncDecoder.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncKeyedDecoder.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncSingleValueDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncKeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncSingleValueEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncUnkeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Seralizer.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedDecoder.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedDecoder.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedDecoder.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedDecoder.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueDecoder.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueDecoder.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueDecoder.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueDecoder.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CSV -frontend-parseable-output -disable-clang-spi -target-sdk-version 1.1 -target-sdk-name xros1.1 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedDecoder.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueDecoder.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedDecoder.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueDecoder.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncKeyedDecoder.swift (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CSVCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncDecoder.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncKeyedDecoder.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncSingleValueDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncKeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncSingleValueEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncUnkeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Seralizer.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedDecoder.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedDecoder.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedDecoder.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedDecoder.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueDecoder.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueDecoder.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueDecoder.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueDecoder.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CSV -frontend-parseable-output -disable-clang-spi -target-sdk-version 1.1 -target-sdk-name xros1.1 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedDecoder.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueDecoder.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedDecoder.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueDecoder.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:17:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Config' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default`: Config = Config(cellSeparator: 44, cellDelimiter: 34)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:7:15: note: consider making struct 'Config' conform to the 'Sendable' protocol
public struct Config {
              ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:17:23: note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    public static let `default`: Config = Config(cellSeparator: 44, cellDelimiter: 34)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default`: Config = Config(cellSeparator: 44, cellDelimiter: 34)
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncSingleValueDecoder.swift (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CSVCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncDecoder.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncKeyedDecoder.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncSingleValueDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncKeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncSingleValueEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncUnkeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Seralizer.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedDecoder.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedDecoder.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedDecoder.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedDecoder.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueDecoder.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueDecoder.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueDecoder.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueDecoder.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CSV -frontend-parseable-output -disable-clang-spi -target-sdk-version 1.1 -target-sdk-name xros1.1 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedDecoder.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueDecoder.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncKeyedDecoder.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncSingleValueDecoder.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ Data+Number.swift,\ AsyncDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncDecoder.swift (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CSVCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncKeyedDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncSingleValueDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncKeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncSingleValueEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncUnkeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Seralizer.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Data+Number.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Data+Number.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Data+Number.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Data+Number.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncDecoder.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncDecoder.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncDecoder.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncDecoder.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CSV -frontend-parseable-output -disable-clang-spi -target-sdk-version 1.1 -target-sdk-name xros1.1 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Data+Number.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncDecoder.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Data+Number.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncDecoder.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CSVCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncKeyedDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncSingleValueDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncKeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncSingleValueEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncUnkeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Seralizer.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Data+Number.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Data+Number.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Data+Number.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Data+Number.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncDecoder.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncDecoder.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncDecoder.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncDecoder.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CSV -frontend-parseable-output -disable-clang-spi -target-sdk-version 1.1 -target-sdk-name xros1.1 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Data+Number.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncDecoder.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Data+Number.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncDecoder.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncDecoder.swift (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CSVCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncKeyedDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncSingleValueDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncKeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncSingleValueEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncUnkeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Seralizer.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Data+Number.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Data+Number.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Data+Number.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Data+Number.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncDecoder.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncDecoder.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncDecoder.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncDecoder.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CSV -frontend-parseable-output -disable-clang-spi -target-sdk-version 1.1 -target-sdk-name xros1.1 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Data+Number.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncDecoder.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Data+Number.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/AsyncDecoder.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:17:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Config' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default`: Config = Config(cellSeparator: 44, cellDelimiter: 34)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:7:15: note: consider making struct 'Config' conform to the 'Sendable' protocol
public struct Config {
              ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:17:23: note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    public static let `default`: Config = Config(cellSeparator: 44, cellDelimiter: 34)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default`: Config = Config(cellSeparator: 44, cellDelimiter: 34)
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ CSVCoder.swift,\ CodingOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CSVCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CSVCoder.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncKeyedDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncSingleValueDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncKeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncSingleValueEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncUnkeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Seralizer.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSVCoder.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSVCoder.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSVCoder.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSVCoder.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CodingOptions.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CodingOptions.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CodingOptions.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CodingOptions.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CSV -frontend-parseable-output -disable-clang-spi -target-sdk-version 1.1 -target-sdk-name xros1.1 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSVCoder.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CodingOptions.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSVCoder.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CodingOptions.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CSVCoder.swift (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CSVCoder.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncKeyedDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncSingleValueDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncKeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncSingleValueEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncUnkeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Seralizer.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSVCoder.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSVCoder.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSVCoder.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSVCoder.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CodingOptions.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CodingOptions.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CodingOptions.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CodingOptions.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CSV -frontend-parseable-output -disable-clang-spi -target-sdk-version 1.1 -target-sdk-name xros1.1 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSVCoder.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CodingOptions.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSVCoder.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CodingOptions.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:17:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Config' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default`: Config = Config(cellSeparator: 44, cellDelimiter: 34)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:7:15: note: consider making struct 'Config' conform to the 'Sendable' protocol
public struct Config {
              ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:17:23: note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    public static let `default`: Config = Config(cellSeparator: 44, cellDelimiter: 34)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default`: Config = Config(cellSeparator: 44, cellDelimiter: 34)
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CSVCoder.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncKeyedDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncSingleValueDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncKeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncSingleValueEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncUnkeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Seralizer.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSVCoder.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSVCoder.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSVCoder.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSVCoder.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CodingOptions.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CodingOptions.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CodingOptions.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CodingOptions.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CSV -frontend-parseable-output -disable-clang-spi -target-sdk-version 1.1 -target-sdk-name xros1.1 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSVCoder.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CodingOptions.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSVCoder.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CodingOptions.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift:9:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CSVCodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default` = CSVCodingOptions(boolCodingStrategy: .string, nilCodingStrategy: .blank)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift:2:20: note: class 'CSVCodingOptions' does not conform to the 'Sendable' protocol
public final class CSVCodingOptions {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift:9:23: note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    public static let `default` = CSVCodingOptions(boolCodingStrategy: .string, nilCodingStrategy: .blank)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift:9:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default` = CSVCodingOptions(boolCodingStrategy: .string, nilCodingStrategy: .blank)
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Emitting module for CSV (in target 'CSV' from project 'CSV')
SwiftCompile normal arm64 Compiling\ Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Parser.swift (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CSVCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncKeyedDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncSingleValueDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncKeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncSingleValueEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncUnkeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Seralizer.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Parser.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Parser.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Parser.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Parser.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CSV -frontend-parseable-output -disable-clang-spi -target-sdk-version 1.1 -target-sdk-name xros1.1 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Parser.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Parser.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CSV/Parser.swift (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CSVCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/CodingOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncKeyedDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Decoder/AsyncSingleValueDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncKeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncSingleValueEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Coder/Encoder/AsyncUnkeyedEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CSV/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Seralizer.swift /Users/admin/builder/spi-builder-workspace/Sources/CSV/Utilities.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Parser.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Parser.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Parser.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Parser.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CSV -frontend-parseable-output -disable-clang-spi -target-sdk-version 1.1 -target-sdk-name xros1.1 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Parser.o -index-unit-output-path /CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/Parser.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:17:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Config' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default`: Config = Config(cellSeparator: 44, cellDelimiter: 34)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:7:15: note: consider making struct 'Config' conform to the 'Sendable' protocol
public struct Config {
              ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:17:23: note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    public static let `default`: Config = Config(cellSeparator: 44, cellDelimiter: 34)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CSV/Config.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default`: Config = Config(cellSeparator: 44, cellDelimiter: 34)
                      ^
    nonisolated(unsafe)
SwiftDriver\ Compilation\ Requirements CSV normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name CSV -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk -target arm64-apple-xros1.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-xros -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV-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/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV.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/CSV.build/Debug-xros/CSV.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.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/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Config.swift (in target 'CSV' from project 'CSV')
SwiftDriverJobDiscovery normal arm64 Compiling AsyncKeyedDecoder.swift, AsyncSingleValueDecoder.swift (in target 'CSV' from project 'CSV')
SwiftDriverJobDiscovery normal arm64 Compiling Seralizer.swift (in target 'CSV' from project 'CSV')
SwiftDriverJobDiscovery normal arm64 Compiling Utilities.swift (in target 'CSV' from project 'CSV')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/CSV-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV-Swift.h (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/CSV-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/CSV.swiftmodule/arm64-apple-xros.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV.swiftdoc (in target 'CSV' from project 'CSV')
    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/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/CSV.swiftmodule/arm64-apple-xros.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/CSV.swiftmodule/arm64-apple-xros.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV.swiftmodule (in target 'CSV' from project 'CSV')
    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/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/CSV.swiftmodule/arm64-apple-xros.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/CSV.swiftmodule/arm64-apple-xros.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV.abi.json (in target 'CSV' from project 'CSV')
    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/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/CSV.swiftmodule/arm64-apple-xros.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/CSV.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV.swiftsourceinfo (in target 'CSV' from project 'CSV')
    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/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/CSV.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling Parser.swift (in target 'CSV' from project 'CSV')
SwiftDriverJobDiscovery normal arm64 Compiling AsyncSingleValueEncoder.swift (in target 'CSV' from project 'CSV')
SwiftDriverJobDiscovery normal arm64 Compiling Data+Number.swift, AsyncDecoder.swift (in target 'CSV' from project 'CSV')
SwiftDriverJobDiscovery normal arm64 Compiling AsyncEncoder.swift, AsyncKeyedEncoder.swift (in target 'CSV' from project 'CSV')
SwiftDriverJobDiscovery normal arm64 Compiling AsyncUnkeyedEncoder.swift (in target 'CSV' from project 'CSV')
SwiftDriverJobDiscovery normal arm64 Compiling CSVCoder.swift, CodingOptions.swift (in target 'CSV' from project 'CSV')
SwiftDriver\ Compilation CSV normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name CSV -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk -target arm64-apple-xros1.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-xros -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV-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/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV.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/CSV.build/Debug-xros/CSV.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.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/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/CSV.o normal (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-xros1.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS1.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CSV.build/Debug-xros/CSV.build/Objects-normal/arm64/CSV_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/CSV.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/CSV.o (in target 'CSV' from project 'CSV')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/CSV.o
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'CSV' from project 'CSV')
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "CSV",
  "name" : "CSV",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "CSV",
      "targets" : [
        "CSV"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CSVTests",
      "module_type" : "SwiftTarget",
      "name" : "CSVTests",
      "path" : "Tests/CSVTests",
      "sources" : [
        "Data.swift",
        "DecoderTests.swift",
        "EncoderTests.swift",
        "ParserTests.swift",
        "SerializerTests.swift",
        "StressTests.swift",
        "UtilityTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "CSV"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CSV",
      "module_type" : "SwiftTarget",
      "name" : "CSV",
      "path" : "Sources/CSV",
      "product_memberships" : [
        "CSV"
      ],
      "sources" : [
        "Coder/CSVCoder.swift",
        "Coder/CodingOptions.swift",
        "Coder/Data+Number.swift",
        "Coder/Decoder/AsyncDecoder.swift",
        "Coder/Decoder/AsyncKeyedDecoder.swift",
        "Coder/Decoder/AsyncSingleValueDecoder.swift",
        "Coder/Encoder/AsyncEncoder.swift",
        "Coder/Encoder/AsyncKeyedEncoder.swift",
        "Coder/Encoder/AsyncSingleValueEncoder.swift",
        "Coder/Encoder/AsyncUnkeyedEncoder.swift",
        "Config.swift",
        "Parser.swift",
        "Seralizer.swift",
        "Utilities.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.