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 swift-parsing, reference 0.14.1 (3432cb), with Swift 6.1 for watchOS using Xcode 16.3 on 30 Apr 2025 08:38:58 UTC.

Swift 6 data race errors: 15

Build Command

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

Build Log

public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/PrefixUpTo.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/PrefixUpTo.swift:6:5: note: add '@MainActor' to make let 'prefixUpToSuite' part of global actor 'MainActor'
let prefixUpToSuite = BenchmarkSuite(name: "PrefixUpTo") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/PrefixUpTo.swift:6:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let prefixUpToSuite = BenchmarkSuite(name: "PrefixUpTo") { suite in
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift:8:5: warning: let 'raceSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let raceSuite = BenchmarkSuite(name: "Race") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift:8:5: note: add '@MainActor' to make let 'raceSuite' part of global actor 'MainActor'
let raceSuite = BenchmarkSuite(name: "Race") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift:8:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let raceSuite = BenchmarkSuite(name: "Race") { suite in
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift:6:5: warning: let 'readmeExampleSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let readmeExampleSuite = BenchmarkSuite(name: "README Example") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift:6:5: note: add '@MainActor' to make let 'readmeExampleSuite' part of global actor 'MainActor'
let readmeExampleSuite = BenchmarkSuite(name: "README Example") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift:6:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let readmeExampleSuite = BenchmarkSuite(name: "README Example") { suite in
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift:15:5: warning: let 'stringAbstractionsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let stringAbstractionsSuite = BenchmarkSuite(name: "String Abstractions") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift:15:5: note: add '@MainActor' to make let 'stringAbstractionsSuite' part of global actor 'MainActor'
let stringAbstractionsSuite = BenchmarkSuite(name: "String Abstractions") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift:15:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let stringAbstractionsSuite = BenchmarkSuite(name: "String Abstractions") { suite in
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift:6:5: warning: let 'uuidSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let uuidSuite = BenchmarkSuite(name: "UUID") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift:6:5: note: add '@MainActor' to make let 'uuidSuite' part of global actor 'MainActor'
let uuidSuite = BenchmarkSuite(name: "UUID") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift:6:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let uuidSuite = BenchmarkSuite(name: "UUID") { suite in
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/XCTestLogs.swift:7:5: warning: let 'xcodeLogsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let xcodeLogsSuite = BenchmarkSuite(name: "Xcode Logs") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/XCTestLogs.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/XCTestLogs.swift:7:5: note: add '@MainActor' to make let 'xcodeLogsSuite' part of global actor 'MainActor'
let xcodeLogsSuite = BenchmarkSuite(name: "Xcode Logs") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/XCTestLogs.swift:7:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let xcodeLogsSuite = BenchmarkSuite(name: "Xcode Logs") { suite in
    ^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling ReplaceError.swift, Rest.swift, Skip.swift, StartsWith.swift, UUID.swift, Whitespace.swift, AnyParser.swift (in target 'Parsing' from project 'swift-parsing')
SwiftEmitModule normal arm64 Emitting\ module\ for\ swift_parsing_benchmark (in target 'swift-parsing-benchmark' from project 'swift-parsing')
EmitSwiftModule normal arm64 (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift:6:5: warning: let 'arithmeticSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let arithmeticSuite = BenchmarkSuite(name: "Arithmetic") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift:6:5: note: add '@MainActor' to make let 'arithmeticSuite' part of global actor 'MainActor'
let arithmeticSuite = BenchmarkSuite(name: "Arithmetic") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift:6:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let arithmeticSuite = BenchmarkSuite(name: "Arithmetic") { suite in
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift:26:5: warning: let 'binaryDataSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let binaryDataSuite = BenchmarkSuite(name: "BinaryData") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift:26:5: note: add '@MainActor' to make let 'binaryDataSuite' part of global actor 'MainActor'
let binaryDataSuite = BenchmarkSuite(name: "BinaryData") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift:26:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let binaryDataSuite = BenchmarkSuite(name: "BinaryData") { suite in
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Bool.swift:9:5: warning: let 'boolSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let boolSuite = BenchmarkSuite(name: "Bool") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Bool.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Bool.swift:9:5: note: add '@MainActor' to make let 'boolSuite' part of global actor 'MainActor'
let boolSuite = BenchmarkSuite(name: "Bool") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Bool.swift:9:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let boolSuite = BenchmarkSuite(name: "Bool") { suite in
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/CSV.swift:7:5: warning: let 'csvSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let csvSuite = BenchmarkSuite(name: "CSV") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/CSV.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/CSV.swift:7:5: note: add '@MainActor' to make let 'csvSuite' part of global actor 'MainActor'
let csvSuite = BenchmarkSuite(name: "CSV") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/CSV.swift:7:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let csvSuite = BenchmarkSuite(name: "CSV") { suite in
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Color.swift:7:5: warning: let 'colorSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let colorSuite = BenchmarkSuite(name: "Color") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Color.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Color.swift:7:5: note: add '@MainActor' to make let 'colorSuite' part of global actor 'MainActor'
let colorSuite = BenchmarkSuite(name: "Color") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Color.swift:7:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let colorSuite = BenchmarkSuite(name: "Color") { suite in
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Date.swift:81:5: warning: let 'dateSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let dateSuite = BenchmarkSuite(name: "Date") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Date.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Date.swift:81:5: note: add '@MainActor' to make let 'dateSuite' part of global actor 'MainActor'
let dateSuite = BenchmarkSuite(name: "Date") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Date.swift:81:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let dateSuite = BenchmarkSuite(name: "Date") { suite in
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift:9:5: warning: let 'httpSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let httpSuite = BenchmarkSuite(name: "HTTP") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift:9:5: note: add '@MainActor' to make let 'httpSuite' part of global actor 'MainActor'
let httpSuite = BenchmarkSuite(name: "HTTP") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift:9:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let httpSuite = BenchmarkSuite(name: "HTTP") { suite in
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift:9:5: warning: let 'jsonSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let jsonSuite = BenchmarkSuite(name: "JSON") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift:9:5: note: add '@MainActor' to make let 'jsonSuite' part of global actor 'MainActor'
let jsonSuite = BenchmarkSuite(name: "JSON") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift:9:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let jsonSuite = BenchmarkSuite(name: "JSON") { suite in
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Numerics.swift:7:5: warning: let 'numericsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let numericsSuite = BenchmarkSuite(name: "Numerics") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Numerics.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Numerics.swift:7:5: note: add '@MainActor' to make let 'numericsSuite' part of global actor 'MainActor'
let numericsSuite = BenchmarkSuite(name: "Numerics") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Numerics.swift:7:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let numericsSuite = BenchmarkSuite(name: "Numerics") { suite in
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/PrefixUpTo.swift:6:5: warning: let 'prefixUpToSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let prefixUpToSuite = BenchmarkSuite(name: "PrefixUpTo") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/PrefixUpTo.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/PrefixUpTo.swift:6:5: note: add '@MainActor' to make let 'prefixUpToSuite' part of global actor 'MainActor'
let prefixUpToSuite = BenchmarkSuite(name: "PrefixUpTo") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/PrefixUpTo.swift:6:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let prefixUpToSuite = BenchmarkSuite(name: "PrefixUpTo") { suite in
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift:8:5: warning: let 'raceSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let raceSuite = BenchmarkSuite(name: "Race") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift:8:5: note: add '@MainActor' to make let 'raceSuite' part of global actor 'MainActor'
let raceSuite = BenchmarkSuite(name: "Race") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift:8:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let raceSuite = BenchmarkSuite(name: "Race") { suite in
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift:6:5: warning: let 'readmeExampleSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let readmeExampleSuite = BenchmarkSuite(name: "README Example") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift:6:5: note: add '@MainActor' to make let 'readmeExampleSuite' part of global actor 'MainActor'
let readmeExampleSuite = BenchmarkSuite(name: "README Example") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift:6:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let readmeExampleSuite = BenchmarkSuite(name: "README Example") { suite in
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift:15:5: warning: let 'stringAbstractionsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let stringAbstractionsSuite = BenchmarkSuite(name: "String Abstractions") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift:15:5: note: add '@MainActor' to make let 'stringAbstractionsSuite' part of global actor 'MainActor'
let stringAbstractionsSuite = BenchmarkSuite(name: "String Abstractions") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift:15:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let stringAbstractionsSuite = BenchmarkSuite(name: "String Abstractions") { suite in
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift:6:5: warning: let 'uuidSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let uuidSuite = BenchmarkSuite(name: "UUID") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift:6:5: note: add '@MainActor' to make let 'uuidSuite' part of global actor 'MainActor'
let uuidSuite = BenchmarkSuite(name: "UUID") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift:6:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let uuidSuite = BenchmarkSuite(name: "UUID") { suite in
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/XCTestLogs.swift:7:5: warning: let 'xcodeLogsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let xcodeLogsSuite = BenchmarkSuite(name: "Xcode Logs") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/XCTestLogs.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/XCTestLogs.swift:7:5: note: add '@MainActor' to make let 'xcodeLogsSuite' part of global actor 'MainActor'
let xcodeLogsSuite = BenchmarkSuite(name: "Xcode Logs") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/XCTestLogs.swift:7:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let xcodeLogsSuite = BenchmarkSuite(name: "Xcode Logs") { suite in
    ^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling Peek.swift, Pipe.swift, Prefix.swift, PrefixThrough.swift, PrefixUpTo.swift, Printing.swift, Pullback.swift (in target 'Parsing' from project 'swift-parsing')
SwiftCompile normal arm64 Compiling\ Color.swift,\ Benchmarking.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Common/Benchmarking.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Color.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Color.swift:7:5: warning: let 'colorSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let colorSuite = BenchmarkSuite(name: "Color") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Color.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Color.swift:7:5: note: add '@MainActor' to make let 'colorSuite' part of global actor 'MainActor'
let colorSuite = BenchmarkSuite(name: "Color") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Color.swift:7:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let colorSuite = BenchmarkSuite(name: "Color") { suite in
    ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Common/Benchmarking.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling String.swift, Substring.swift, UTF8View.swift, ConvertingError.swift, CountingRange.swift, EmptyInitializable.swift, AnyEquatable.swift, Deprecations.swift (in target 'Parsing' from project 'swift-parsing')
SwiftCompile normal arm64 Compiling\ Bool.swift,\ CSV.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Bool.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/CSV.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Bool.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Bool.swift:9:5: warning: let 'boolSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let boolSuite = BenchmarkSuite(name: "Bool") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Bool.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Bool.swift:9:5: note: add '@MainActor' to make let 'boolSuite' part of global actor 'MainActor'
let boolSuite = BenchmarkSuite(name: "Bool") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Bool.swift:9:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let boolSuite = BenchmarkSuite(name: "Bool") { suite in
    ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/CSV.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/CSV.swift:7:5: warning: let 'csvSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let csvSuite = BenchmarkSuite(name: "CSV") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/CSV.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/CSV.swift:7:5: note: add '@MainActor' to make let 'csvSuite' part of global actor 'MainActor'
let csvSuite = BenchmarkSuite(name: "CSV") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/CSV.swift:7:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let csvSuite = BenchmarkSuite(name: "CSV") { suite in
    ^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling CSVSample.swift, XCTestLogsSample.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64_32 Compiling\ HTTP.swift,\ JSON.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift:9:5: warning: let 'httpSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let httpSuite = BenchmarkSuite(name: "HTTP") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift:9:5: note: add '@MainActor' to make let 'httpSuite' part of global actor 'MainActor'
let httpSuite = BenchmarkSuite(name: "HTTP") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift:9:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let httpSuite = BenchmarkSuite(name: "HTTP") { suite in
    ^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift:9:5: warning: let 'jsonSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let jsonSuite = BenchmarkSuite(name: "JSON") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift:9:5: note: add '@MainActor' to make let 'jsonSuite' part of global actor 'MainActor'
let jsonSuite = BenchmarkSuite(name: "JSON") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift:9:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let jsonSuite = BenchmarkSuite(name: "JSON") { suite in
    ^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling Color.swift, Benchmarking.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64_32 Compiling\ Color.swift,\ Benchmarking.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Common/Benchmarking.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Color.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Color.swift:7:5: warning: let 'colorSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let colorSuite = BenchmarkSuite(name: "Color") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Color.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Color.swift:7:5: note: add '@MainActor' to make let 'colorSuite' part of global actor 'MainActor'
let colorSuite = BenchmarkSuite(name: "Color") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Color.swift:7:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let colorSuite = BenchmarkSuite(name: "Color") { suite in
    ^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Common/Benchmarking.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling Conditional.swift, Consumed.swift, Digits.swift, End.swift, Fail.swift, Filter.swift, First.swift, Float.swift (in target 'Parsing' from project 'swift-parsing')
SwiftCompile normal arm64 Compiling\ ParsingError.swift,\ Date.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Common/ParsingError.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Date.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Common/ParsingError.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Date.swift:81:5: warning: let 'dateSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let dateSuite = BenchmarkSuite(name: "Date") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Date.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Date.swift:81:5: note: add '@MainActor' to make let 'dateSuite' part of global actor 'MainActor'
let dateSuite = BenchmarkSuite(name: "Date") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Date.swift:81:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let dateSuite = BenchmarkSuite(name: "Date") { suite in
    ^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling Bool.swift, CSV.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64_32 Compiling\ Numerics.swift,\ PrefixUpTo.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Numerics.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/PrefixUpTo.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Numerics.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Numerics.swift:7:5: warning: let 'numericsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let numericsSuite = BenchmarkSuite(name: "Numerics") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Numerics.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Numerics.swift:7:5: note: add '@MainActor' to make let 'numericsSuite' part of global actor 'MainActor'
let numericsSuite = BenchmarkSuite(name: "Numerics") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Numerics.swift:7:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let numericsSuite = BenchmarkSuite(name: "Numerics") { suite in
    ^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/PrefixUpTo.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/PrefixUpTo.swift:6:5: warning: let 'prefixUpToSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let prefixUpToSuite = BenchmarkSuite(name: "PrefixUpTo") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/PrefixUpTo.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/PrefixUpTo.swift:6:5: note: add '@MainActor' to make let 'prefixUpToSuite' part of global actor 'MainActor'
let prefixUpToSuite = BenchmarkSuite(name: "PrefixUpTo") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/PrefixUpTo.swift:6:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let prefixUpToSuite = BenchmarkSuite(name: "PrefixUpTo") { suite in
    ^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling Color.swift, Benchmarking.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64 Compiling\ Race.swift,\ ReadmeExample.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift:8:5: warning: let 'raceSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let raceSuite = BenchmarkSuite(name: "Race") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift:8:5: note: add '@MainActor' to make let 'raceSuite' part of global actor 'MainActor'
let raceSuite = BenchmarkSuite(name: "Race") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift:8:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let raceSuite = BenchmarkSuite(name: "Race") { suite in
    ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift:6:5: warning: let 'readmeExampleSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let readmeExampleSuite = BenchmarkSuite(name: "README Example") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift:6:5: note: add '@MainActor' to make let 'readmeExampleSuite' part of global actor 'MainActor'
let readmeExampleSuite = BenchmarkSuite(name: "README Example") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift:6:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let readmeExampleSuite = BenchmarkSuite(name: "README Example") { suite in
    ^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling Bool.swift, CSV.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64_32 Compiling\ XCTestLogs.swift,\ main.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/XCTestLogs.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/main.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/XCTestLogs.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/XCTestLogs.swift:7:5: warning: let 'xcodeLogsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let xcodeLogsSuite = BenchmarkSuite(name: "Xcode Logs") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/XCTestLogs.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/XCTestLogs.swift:7:5: note: add '@MainActor' to make let 'xcodeLogsSuite' part of global actor 'MainActor'
let xcodeLogsSuite = BenchmarkSuite(name: "Xcode Logs") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/XCTestLogs.swift:7:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let xcodeLogsSuite = BenchmarkSuite(name: "Xcode Logs") { suite in
    ^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/main.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling Numerics.swift, PrefixUpTo.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64 Compiling\ XCTestLogs.swift,\ main.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/XCTestLogs.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/main.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/XCTestLogs.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/XCTestLogs.swift:7:5: warning: let 'xcodeLogsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let xcodeLogsSuite = BenchmarkSuite(name: "Xcode Logs") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/XCTestLogs.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/XCTestLogs.swift:7:5: note: add '@MainActor' to make let 'xcodeLogsSuite' part of global actor 'MainActor'
let xcodeLogsSuite = BenchmarkSuite(name: "Xcode Logs") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/XCTestLogs.swift:7:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let xcodeLogsSuite = BenchmarkSuite(name: "Xcode Logs") { suite in
    ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/main.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling Color.swift, Benchmarking.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64_32 Compiling\ StringAbstractions.swift,\ UUID.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift:15:5: warning: let 'stringAbstractionsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let stringAbstractionsSuite = BenchmarkSuite(name: "String Abstractions") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift:15:5: note: add '@MainActor' to make let 'stringAbstractionsSuite' part of global actor 'MainActor'
let stringAbstractionsSuite = BenchmarkSuite(name: "String Abstractions") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift:15:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let stringAbstractionsSuite = BenchmarkSuite(name: "String Abstractions") { suite in
    ^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift:6:5: warning: let 'uuidSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let uuidSuite = BenchmarkSuite(name: "UUID") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift:6:5: note: add '@MainActor' to make let 'uuidSuite' part of global actor 'MainActor'
let uuidSuite = BenchmarkSuite(name: "UUID") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift:6:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let uuidSuite = BenchmarkSuite(name: "UUID") { suite in
    ^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Emitting module for swift_parsing_benchmark (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftDriver\ Compilation\ Requirements swift-parsing-benchmark normal armv7k com.apple.xcode.tools.swift.compiler (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name swift_parsing_benchmark -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/armv7k/swift-parsing-benchmark.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/CasePathsMacros\#CasePathsMacros -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/armv7k/swift-parsing-benchmark-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/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/armv7k/swift_parsing_benchmark.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/armv7k/swift-parsing-benchmark_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64_32 Emitting module for swift_parsing_benchmark (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftDriver\ Compilation\ Requirements swift-parsing-benchmark normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name swift_parsing_benchmark -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64_32/swift-parsing-benchmark.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/CasePathsMacros\#CasePathsMacros -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64_32/swift-parsing-benchmark-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/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64_32/swift_parsing_benchmark.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64_32/swift-parsing-benchmark_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift_parsing_benchmark.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/armv7k/swift_parsing_benchmark.swiftmodule (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    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/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/armv7k/swift_parsing_benchmark.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift_parsing_benchmark.swiftmodule/armv7k-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift_parsing_benchmark.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/armv7k/swift_parsing_benchmark.swiftdoc (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    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/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/armv7k/swift_parsing_benchmark.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift_parsing_benchmark.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift_parsing_benchmark.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/armv7k/swift_parsing_benchmark.abi.json (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    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/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/armv7k/swift_parsing_benchmark.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift_parsing_benchmark.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift_parsing_benchmark.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64_32/swift_parsing_benchmark.swiftmodule (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    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/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64_32/swift_parsing_benchmark.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift_parsing_benchmark.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift_parsing_benchmark.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64_32/swift_parsing_benchmark.swiftdoc (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    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/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64_32/swift_parsing_benchmark.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift_parsing_benchmark.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift_parsing_benchmark.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64_32/swift_parsing_benchmark.abi.json (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    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/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64_32/swift_parsing_benchmark.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift_parsing_benchmark.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift_parsing_benchmark.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/armv7k/swift_parsing_benchmark.swiftsourceinfo (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    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/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/armv7k/swift_parsing_benchmark.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift_parsing_benchmark.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift_parsing_benchmark.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64_32/swift_parsing_benchmark.swiftsourceinfo (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    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/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64_32/swift_parsing_benchmark.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift_parsing_benchmark.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Emitting module for swift_parsing_benchmark (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftDriver\ Compilation\ Requirements swift-parsing-benchmark normal arm64 com.apple.xcode.tools.swift.compiler (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name swift_parsing_benchmark -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64/swift-parsing-benchmark.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/CasePathsMacros\#CasePathsMacros -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64/swift-parsing-benchmark-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/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64/swift_parsing_benchmark.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64/swift-parsing-benchmark_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal armv7k Compiling\ HTTP.swift,\ JSON.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift:9:5: warning: let 'httpSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let httpSuite = BenchmarkSuite(name: "HTTP") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift:9:5: note: add '@MainActor' to make let 'httpSuite' part of global actor 'MainActor'
let httpSuite = BenchmarkSuite(name: "HTTP") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift:9:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let httpSuite = BenchmarkSuite(name: "HTTP") { suite in
    ^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift:9:5: warning: let 'jsonSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let jsonSuite = BenchmarkSuite(name: "JSON") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift:9:5: note: add '@MainActor' to make let 'jsonSuite' part of global actor 'MainActor'
let jsonSuite = BenchmarkSuite(name: "JSON") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift:9:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let jsonSuite = BenchmarkSuite(name: "JSON") { suite in
    ^
nonisolated(unsafe)
SwiftCompile normal armv7k Compiling\ ParsingError.swift,\ Date.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Common/ParsingError.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Date.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Common/ParsingError.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Date.swift:81:5: warning: let 'dateSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let dateSuite = BenchmarkSuite(name: "Date") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Date.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Date.swift:81:5: note: add '@MainActor' to make let 'dateSuite' part of global actor 'MainActor'
let dateSuite = BenchmarkSuite(name: "Date") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Date.swift:81:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let dateSuite = BenchmarkSuite(name: "Date") { suite in
    ^
nonisolated(unsafe)
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift_parsing_benchmark.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64/swift_parsing_benchmark.swiftmodule (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    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/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64/swift_parsing_benchmark.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift_parsing_benchmark.swiftmodule/arm64-apple-watchos.swiftmodule
SwiftDriverJobDiscovery normal arm64_32 Compiling Numerics.swift, PrefixUpTo.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift_parsing_benchmark.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64/swift_parsing_benchmark.swiftdoc (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    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/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64/swift_parsing_benchmark.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift_parsing_benchmark.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift_parsing_benchmark.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64/swift_parsing_benchmark.abi.json (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    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/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64/swift_parsing_benchmark.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift_parsing_benchmark.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift_parsing_benchmark.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64/swift_parsing_benchmark.swiftsourceinfo (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    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/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64/swift_parsing_benchmark.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift_parsing_benchmark.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ CSVSample.swift,\ XCTestLogsSample.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Samples/CSVSample.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Samples/XCTestLogsSample.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Samples/CSVSample.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Samples/XCTestLogsSample.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Arithmetic.swift,\ BinaryData.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift:6:5: warning: let 'arithmeticSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let arithmeticSuite = BenchmarkSuite(name: "Arithmetic") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift:6:5: note: add '@MainActor' to make let 'arithmeticSuite' part of global actor 'MainActor'
let arithmeticSuite = BenchmarkSuite(name: "Arithmetic") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift:6:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let arithmeticSuite = BenchmarkSuite(name: "Arithmetic") { suite in
    ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift:26:5: warning: let 'binaryDataSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let binaryDataSuite = BenchmarkSuite(name: "BinaryData") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift:26:5: note: add '@MainActor' to make let 'binaryDataSuite' part of global actor 'MainActor'
let binaryDataSuite = BenchmarkSuite(name: "BinaryData") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift:26:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let binaryDataSuite = BenchmarkSuite(name: "BinaryData") { suite in
    ^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling XCTestLogs.swift, main.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal armv7k Compiling\ Race.swift,\ ReadmeExample.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift:8:5: warning: let 'raceSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let raceSuite = BenchmarkSuite(name: "Race") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift:8:5: note: add '@MainActor' to make let 'raceSuite' part of global actor 'MainActor'
let raceSuite = BenchmarkSuite(name: "Race") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift:8:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let raceSuite = BenchmarkSuite(name: "Race") { suite in
    ^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift:6:5: warning: let 'readmeExampleSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let readmeExampleSuite = BenchmarkSuite(name: "README Example") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift:6:5: note: add '@MainActor' to make let 'readmeExampleSuite' part of global actor 'MainActor'
let readmeExampleSuite = BenchmarkSuite(name: "README Example") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift:6:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let readmeExampleSuite = BenchmarkSuite(name: "README Example") { suite in
    ^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling ParsingError.swift, Date.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal armv7k Compiling\ StringAbstractions.swift,\ UUID.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift:15:5: warning: let 'stringAbstractionsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let stringAbstractionsSuite = BenchmarkSuite(name: "String Abstractions") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift:15:5: note: add '@MainActor' to make let 'stringAbstractionsSuite' part of global actor 'MainActor'
let stringAbstractionsSuite = BenchmarkSuite(name: "String Abstractions") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift:15:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let stringAbstractionsSuite = BenchmarkSuite(name: "String Abstractions") { suite in
    ^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift:6:5: warning: let 'uuidSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let uuidSuite = BenchmarkSuite(name: "UUID") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift:6:5: note: add '@MainActor' to make let 'uuidSuite' part of global actor 'MainActor'
let uuidSuite = BenchmarkSuite(name: "UUID") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift:6:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let uuidSuite = BenchmarkSuite(name: "UUID") { suite in
    ^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling StringAbstractions.swift, UUID.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64 Compiling\ Numerics.swift,\ PrefixUpTo.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Numerics.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/PrefixUpTo.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Numerics.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Numerics.swift:7:5: warning: let 'numericsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let numericsSuite = BenchmarkSuite(name: "Numerics") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Numerics.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Numerics.swift:7:5: note: add '@MainActor' to make let 'numericsSuite' part of global actor 'MainActor'
let numericsSuite = BenchmarkSuite(name: "Numerics") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Numerics.swift:7:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let numericsSuite = BenchmarkSuite(name: "Numerics") { suite in
    ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/PrefixUpTo.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/PrefixUpTo.swift:6:5: warning: let 'prefixUpToSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let prefixUpToSuite = BenchmarkSuite(name: "PrefixUpTo") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/PrefixUpTo.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/PrefixUpTo.swift:6:5: note: add '@MainActor' to make let 'prefixUpToSuite' part of global actor 'MainActor'
let prefixUpToSuite = BenchmarkSuite(name: "PrefixUpTo") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/PrefixUpTo.swift:6:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let prefixUpToSuite = BenchmarkSuite(name: "PrefixUpTo") { suite in
    ^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling CSVSample.swift, XCTestLogsSample.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64_32 Compiling\ Arithmetic.swift,\ BinaryData.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift:6:5: warning: let 'arithmeticSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let arithmeticSuite = BenchmarkSuite(name: "Arithmetic") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift:6:5: note: add '@MainActor' to make let 'arithmeticSuite' part of global actor 'MainActor'
let arithmeticSuite = BenchmarkSuite(name: "Arithmetic") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift:6:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let arithmeticSuite = BenchmarkSuite(name: "Arithmetic") { suite in
    ^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift:26:5: warning: let 'binaryDataSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let binaryDataSuite = BenchmarkSuite(name: "BinaryData") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift:26:5: note: add '@MainActor' to make let 'binaryDataSuite' part of global actor 'MainActor'
let binaryDataSuite = BenchmarkSuite(name: "BinaryData") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift:26:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let binaryDataSuite = BenchmarkSuite(name: "BinaryData") { suite in
    ^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling Race.swift, ReadmeExample.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64_32 Compiling\ ParsingError.swift,\ Date.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Common/ParsingError.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Date.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Common/ParsingError.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Date.swift:81:5: warning: let 'dateSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let dateSuite = BenchmarkSuite(name: "Date") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Date.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Date.swift:81:5: note: add '@MainActor' to make let 'dateSuite' part of global actor 'MainActor'
let dateSuite = BenchmarkSuite(name: "Date") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Date.swift:81:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let dateSuite = BenchmarkSuite(name: "Date") { suite in
    ^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling StringAbstractions.swift, UUID.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64_32 Compiling\ CSVSample.swift,\ XCTestLogsSample.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Samples/CSVSample.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Samples/XCTestLogsSample.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Samples/CSVSample.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Samples/XCTestLogsSample.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling XCTestLogs.swift, main.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal armv7k Compiling\ Arithmetic.swift,\ BinaryData.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift:6:5: warning: let 'arithmeticSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let arithmeticSuite = BenchmarkSuite(name: "Arithmetic") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift:6:5: note: add '@MainActor' to make let 'arithmeticSuite' part of global actor 'MainActor'
let arithmeticSuite = BenchmarkSuite(name: "Arithmetic") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift:6:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let arithmeticSuite = BenchmarkSuite(name: "Arithmetic") { suite in
    ^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift:26:5: warning: let 'binaryDataSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let binaryDataSuite = BenchmarkSuite(name: "BinaryData") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift:26:5: note: add '@MainActor' to make let 'binaryDataSuite' part of global actor 'MainActor'
let binaryDataSuite = BenchmarkSuite(name: "BinaryData") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift:26:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let binaryDataSuite = BenchmarkSuite(name: "BinaryData") { suite in
    ^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling XCTestLogs.swift, main.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64 Compiling\ StringAbstractions.swift,\ UUID.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift:15:5: warning: let 'stringAbstractionsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let stringAbstractionsSuite = BenchmarkSuite(name: "String Abstractions") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift:15:5: note: add '@MainActor' to make let 'stringAbstractionsSuite' part of global actor 'MainActor'
let stringAbstractionsSuite = BenchmarkSuite(name: "String Abstractions") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift:15:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let stringAbstractionsSuite = BenchmarkSuite(name: "String Abstractions") { suite in
    ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift:6:5: warning: let 'uuidSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let uuidSuite = BenchmarkSuite(name: "UUID") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift:6:5: note: add '@MainActor' to make let 'uuidSuite' part of global actor 'MainActor'
let uuidSuite = BenchmarkSuite(name: "UUID") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift:6:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let uuidSuite = BenchmarkSuite(name: "UUID") { suite in
    ^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling Arithmetic.swift, BinaryData.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64 Compiling\ HTTP.swift,\ JSON.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift:9:5: warning: let 'httpSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let httpSuite = BenchmarkSuite(name: "HTTP") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift:9:5: note: add '@MainActor' to make let 'httpSuite' part of global actor 'MainActor'
let httpSuite = BenchmarkSuite(name: "HTTP") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift:9:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let httpSuite = BenchmarkSuite(name: "HTTP") { suite in
    ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift:9:5: warning: let 'jsonSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let jsonSuite = BenchmarkSuite(name: "JSON") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift:9:5: note: add '@MainActor' to make let 'jsonSuite' part of global actor 'MainActor'
let jsonSuite = BenchmarkSuite(name: "JSON") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift:9:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let jsonSuite = BenchmarkSuite(name: "JSON") { suite in
    ^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling ParsingError.swift, Date.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64_32 Compiling\ Bool.swift,\ CSV.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Bool.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/CSV.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Bool.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Bool.swift:9:5: warning: let 'boolSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let boolSuite = BenchmarkSuite(name: "Bool") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Bool.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Bool.swift:9:5: note: add '@MainActor' to make let 'boolSuite' part of global actor 'MainActor'
let boolSuite = BenchmarkSuite(name: "Bool") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Bool.swift:9:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let boolSuite = BenchmarkSuite(name: "Bool") { suite in
    ^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/CSV.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/CSV.swift:7:5: warning: let 'csvSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let csvSuite = BenchmarkSuite(name: "CSV") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/CSV.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/CSV.swift:7:5: note: add '@MainActor' to make let 'csvSuite' part of global actor 'MainActor'
let csvSuite = BenchmarkSuite(name: "CSV") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/CSV.swift:7:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let csvSuite = BenchmarkSuite(name: "CSV") { suite in
    ^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling CSVSample.swift, XCTestLogsSample.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64_32 Compiling\ Race.swift,\ ReadmeExample.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift:8:5: warning: let 'raceSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let raceSuite = BenchmarkSuite(name: "Race") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift:8:5: note: add '@MainActor' to make let 'raceSuite' part of global actor 'MainActor'
let raceSuite = BenchmarkSuite(name: "Race") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift:8:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let raceSuite = BenchmarkSuite(name: "Race") { suite in
    ^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift:6:5: warning: let 'readmeExampleSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
let readmeExampleSuite = BenchmarkSuite(name: "README Example") { suite in
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
public class BenchmarkSuite {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
import Benchmark
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift:6:5: note: add '@MainActor' to make let 'readmeExampleSuite' part of global actor 'MainActor'
let readmeExampleSuite = BenchmarkSuite(name: "README Example") { suite in
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift:6:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let readmeExampleSuite = BenchmarkSuite(name: "README Example") { suite in
    ^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling Numerics.swift, PrefixUpTo.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftDriver\ Compilation Parsing normal armv7k com.apple.xcode.tools.swift.compiler (in target 'Parsing' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Parsing -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/armv7k/Parsing.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/CasePathsMacros\#CasePathsMacros -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/armv7k/Parsing-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/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/armv7k/Parsing.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/armv7k/Parsing_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.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/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/armv7k/Parsing-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling StringAbstractions.swift, UUID.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftDriver\ Compilation Parsing normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'Parsing' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Parsing -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64_32/Parsing.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/CasePathsMacros\#CasePathsMacros -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64_32/Parsing-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/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64_32/Parsing.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64_32/Parsing_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.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/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64_32/Parsing-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64_32 Compiling Arithmetic.swift, BinaryData.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftDriverJobDiscovery normal armv7k Compiling Race.swift, ReadmeExample.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CasePaths.o (in target 'CasePaths' from project 'swift-case-paths')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-case-paths
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CasePaths.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/armv7k/Binary/Parsing.o normal armv7k (in target 'Parsing' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos6.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/armv7k/Parsing.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/armv7k/Parsing_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/armv7k/Parsing_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/armv7k/Parsing.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/armv7k/Binary/Parsing.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64_32/Binary/Parsing.o normal arm64_32 (in target 'Parsing' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos6.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64_32/Parsing.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64_32/Parsing_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64_32/Parsing_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64_32/Parsing.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64_32/Binary/Parsing.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64/Binary/Parsing.o normal arm64 (in target 'Parsing' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos6.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64/Parsing.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64/Parsing_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64/Parsing_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64/Parsing.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64/Binary/Parsing.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Parsing.o normal arm64\ armv7k\ arm64_32 (in target 'Parsing' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64/Binary/Parsing.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/armv7k/Binary/Parsing.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64_32/Binary/Parsing.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Parsing.o
ExtractAppIntentsMetadata (in target 'Parsing' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name Parsing --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 6.0 --bundle-identifier spi-builder-workspace.Parsing --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Parsing.appintents --target-triple arm64-apple-watchos6.0 --target-triple armv7k-apple-watchos6.0 --target-triple arm64_32-apple-watchos6.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Parsing.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64/Parsing_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/armv7k/Parsing_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64_32/Parsing_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64/Parsing.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/armv7k/Parsing.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64_32/Parsing.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Parsing.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Parsing.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64/Parsing.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/armv7k/Parsing.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64_32/Parsing.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-30 01:38:55.915 appintentsmetadataprocessor[1849:10261] Starting appintentsmetadataprocessor export
2025-04-30 01:38:55.956 appintentsmetadataprocessor[1849:10261] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Parsing.o (in target 'Parsing' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Parsing.o
SwiftDriverJobDiscovery normal arm64_32 Compiling Bool.swift, CSV.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftDriverJobDiscovery normal armv7k Compiling Arithmetic.swift, BinaryData.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftDriverJobDiscovery normal arm64_32 Compiling ParsingError.swift, Date.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftDriverJobDiscovery normal arm64_32 Compiling Race.swift, ReadmeExample.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftDriverJobDiscovery normal arm64_32 Compiling HTTP.swift, JSON.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftDriver\ Compilation swift-parsing-benchmark normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name swift_parsing_benchmark -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64_32/swift-parsing-benchmark.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/CasePathsMacros\#CasePathsMacros -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64_32/swift-parsing-benchmark-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/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64_32/swift_parsing_benchmark.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64_32/swift-parsing-benchmark_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64_32/Binary/swift-parsing-benchmark normal arm64_32 (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos6.0 -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64_32/swift-parsing-benchmark.LinkFileList -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -Xlinker -rpath -Xlinker @executable_path/../lib -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64_32/swift-parsing-benchmark_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64_32/swift-parsing-benchmark_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64_32/swift_parsing_benchmark.swiftmodule -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64_32/Binary/swift-parsing-benchmark -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-case-paths.build/Debug-watchos/CasePaths.build/Objects-normal/arm64_32/CasePaths.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/xctest-dynamic-overlay.build/Debug-watchos/IssueReporting.build/Objects-normal/arm64_32/IssueReporting.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/xctest-dynamic-overlay.build/Debug-watchos/XCTestDynamicOverlay.build/Objects-normal/arm64_32/XCTestDynamicOverlay.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64_32/Parsing.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-watchos/Benchmark.build/Objects-normal/arm64_32/Benchmark.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64_32/ArgumentParser.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParserToolInfo.build/Objects-normal/arm64_32/ArgumentParserToolInfo.swiftmodule
SwiftDriverJobDiscovery normal armv7k Compiling HTTP.swift, JSON.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftDriver\ Compilation swift-parsing-benchmark normal armv7k com.apple.xcode.tools.swift.compiler (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name swift_parsing_benchmark -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/armv7k/swift-parsing-benchmark.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/CasePathsMacros\#CasePathsMacros -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/armv7k/swift-parsing-benchmark-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/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/armv7k/swift_parsing_benchmark.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/armv7k/swift-parsing-benchmark_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/armv7k/Binary/swift-parsing-benchmark normal armv7k (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos6.0 -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/armv7k/swift-parsing-benchmark.LinkFileList -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -Xlinker -rpath -Xlinker @executable_path/../lib -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/armv7k/swift-parsing-benchmark_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/armv7k/swift-parsing-benchmark_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/armv7k/swift_parsing_benchmark.swiftmodule -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/armv7k/Binary/swift-parsing-benchmark -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-case-paths.build/Debug-watchos/CasePaths.build/Objects-normal/armv7k/CasePaths.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/xctest-dynamic-overlay.build/Debug-watchos/IssueReporting.build/Objects-normal/armv7k/IssueReporting.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/xctest-dynamic-overlay.build/Debug-watchos/XCTestDynamicOverlay.build/Objects-normal/armv7k/XCTestDynamicOverlay.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/armv7k/Parsing.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-watchos/Benchmark.build/Objects-normal/armv7k/Benchmark.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/armv7k/ArgumentParser.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParserToolInfo.build/Objects-normal/armv7k/ArgumentParserToolInfo.swiftmodule
SwiftDriverJobDiscovery normal arm64 Compiling HTTP.swift, JSON.swift (in target 'swift-parsing-benchmark' from project 'swift-parsing')
SwiftDriver\ Compilation swift-parsing-benchmark normal arm64 com.apple.xcode.tools.swift.compiler (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name swift_parsing_benchmark -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64/swift-parsing-benchmark.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/CasePathsMacros\#CasePathsMacros -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64/swift-parsing-benchmark-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/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64/swift_parsing_benchmark.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64/swift-parsing-benchmark_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64/Binary/swift-parsing-benchmark normal arm64 (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos6.0 -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64/swift-parsing-benchmark.LinkFileList -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -Xlinker -rpath -Xlinker @executable_path/../lib -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64/swift-parsing-benchmark_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64/swift-parsing-benchmark_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64/swift_parsing_benchmark.swiftmodule -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64/Binary/swift-parsing-benchmark -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-case-paths.build/Debug-watchos/CasePaths.build/Objects-normal/arm64/CasePaths.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/xctest-dynamic-overlay.build/Debug-watchos/IssueReporting.build/Objects-normal/arm64/IssueReporting.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/xctest-dynamic-overlay.build/Debug-watchos/XCTestDynamicOverlay.build/Objects-normal/arm64/XCTestDynamicOverlay.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/Parsing.build/Objects-normal/arm64/Parsing.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Benchmark.build/Debug-watchos/Benchmark.build/Objects-normal/arm64/Benchmark.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug-watchos/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftmodule
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift-parsing-benchmark normal arm64\ armv7k\ arm64_32 (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64/Binary/swift-parsing-benchmark /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/armv7k/Binary/swift-parsing-benchmark /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug-watchos/swift-parsing-benchmark.build/Objects-normal/arm64_32/Binary/swift-parsing-benchmark -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift-parsing-benchmark
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift-parsing-benchmark (in target 'swift-parsing-benchmark' from project 'swift-parsing')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/swift-parsing-benchmark
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    },
    {
      "identity" : "swift-case-paths",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-case-paths"
    },
    {
      "identity" : "swift-benchmark",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.1.1",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/google/swift-benchmark"
    }
  ],
  "manifest_display_name" : "swift-parsing",
  "name" : "swift-parsing",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "Parsing",
      "targets" : [
        "Parsing"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "swift-parsing-benchmark",
      "targets" : [
        "swift-parsing-benchmark"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "swift_parsing_benchmark",
      "module_type" : "SwiftTarget",
      "name" : "swift-parsing-benchmark",
      "path" : "Sources/swift-parsing-benchmark",
      "product_dependencies" : [
        "Benchmark"
      ],
      "product_memberships" : [
        "swift-parsing-benchmark"
      ],
      "sources" : [
        "Arithmetic.swift",
        "BinaryData.swift",
        "Bool.swift",
        "CSV.swift",
        "Color.swift",
        "Common/Benchmarking.swift",
        "Common/ParsingError.swift",
        "Date.swift",
        "HTTP.swift",
        "JSON.swift",
        "Numerics.swift",
        "PrefixUpTo.swift",
        "Race.swift",
        "ReadmeExample.swift",
        "Samples/CSVSample.swift",
        "Samples/XCTestLogsSample.swift",
        "StringAbstractions.swift",
        "UUID.swift",
        "XCTestLogs.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "Parsing"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "ParsingTests",
      "module_type" : "SwiftTarget",
      "name" : "ParsingTests",
      "path" : "Tests/ParsingTests",
      "sources" : [
        "AlwaysTests.swift",
        "AnyParserTests.swift",
        "BacktrackTests.swift",
        "BoolTests.swift",
        "CaseIterableRawRepresentableTests.swift",
        "CaseIterableTests.swift",
        "CharacterSetTests.swift",
        "CompactMapTests.swift",
        "ConditionalTests.swift",
        "ConsumedTests.swift",
        "DigitsTests.swift",
        "DoubleTests.swift",
        "EndTests.swift",
        "FailTests.swift",
        "FilterTests.swift",
        "FirstTests.swift",
        "FlatMapTests.swift",
        "FromSubstringTests.swift",
        "IntTests.swift",
        "LazyTests.swift",
        "ManyTests.swift",
        "MapTests.swift",
        "NotTests.swift",
        "OneOfBuilderTests.swift",
        "OneOfTests.swift",
        "OptionallyTests.swift",
        "ParseableFormatTests.swift",
        "ParserBuilderTests.swift",
        "ParserTests.swift",
        "ParsingErrorTests.swift",
        "PeekTests.swift",
        "PipeEndTests.swift",
        "PipeTests.swift",
        "PrefixTests.swift",
        "PrefixThroughTests.swift",
        "PrefixUpToTests.swift",
        "RegressionTests.swift",
        "ReplaceErrorTests.swift",
        "RestTests.swift",
        "SkipTests.swift",
        "StartsWithTests.swift",
        "StreamTests.swift",
        "UTF8Tests.swift",
        "UUIDTests.swift",
        "VariadicTests.swift",
        "WhitespaceTests.swift"
      ],
      "target_dependencies" : [
        "Parsing"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Parsing",
      "module_type" : "SwiftTarget",
      "name" : "Parsing",
      "path" : "Sources/Parsing",
      "product_dependencies" : [
        "CasePaths"
      ],
      "product_memberships" : [
        "Parsing",
        "swift-parsing-benchmark"
      ],
      "sources" : [
        "Builders/OneOfBuilder.swift",
        "Builders/ParserBuilder.swift",
        "Conversion.swift",
        "Conversions/AnyConversion.swift",
        "Conversions/BinaryFloatingPoint.swift",
        "Conversions/ConversionMap.swift",
        "Conversions/Conversions.swift",
        "Conversions/Data.swift",
        "Conversions/Enum.swift",
        "Conversions/FixedWidthInteger.swift",
        "Conversions/Identity.swift",
        "Conversions/JSON.swift",
        "Conversions/LosslessStringConvertible.swift",
        "Conversions/Memberwise.swift",
        "Conversions/ParseableFormatStyleConversion.swift",
        "Conversions/RawRepresentable.swift",
        "Conversions/String.swift",
        "Conversions/Substring.swift",
        "Conversions/UTF8View.swift",
        "ConvertingError.swift",
        "CountingRange.swift",
        "EmptyInitializable.swift",
        "Internal/AnyEquatable.swift",
        "Internal/Deprecations.swift",
        "Parser.swift",
        "ParserPrinter.swift",
        "ParserPrinters/Always.swift",
        "ParserPrinters/AnyParserPrinter.swift",
        "ParserPrinters/Backtracking.swift",
        "ParserPrinters/Bool.swift",
        "ParserPrinters/CaseIterableRawRepresentable.swift",
        "ParserPrinters/CharacterSet.swift",
        "ParserPrinters/Conditional.swift",
        "ParserPrinters/Consumed.swift",
        "ParserPrinters/Digits.swift",
        "ParserPrinters/End.swift",
        "ParserPrinters/Fail.swift",
        "ParserPrinters/Filter.swift",
        "ParserPrinters/First.swift",
        "ParserPrinters/Float.swift",
        "ParserPrinters/From.swift",
        "ParserPrinters/Int.swift",
        "ParserPrinters/Lazy.swift",
        "ParserPrinters/Literal.swift",
        "ParserPrinters/Many.swift",
        "ParserPrinters/Map.swift",
        "ParserPrinters/Newline.swift",
        "ParserPrinters/Not.swift",
        "ParserPrinters/OneOf.swift",
        "ParserPrinters/OneOfMany.swift",
        "ParserPrinters/Optional.swift",
        "ParserPrinters/Optionally.swift",
        "ParserPrinters/Parse.swift",
        "ParserPrinters/ParseableFormatStyle.swift",
        "ParserPrinters/Peek.swift",
        "ParserPrinters/Pipe.swift",
        "ParserPrinters/Prefix.swift",
        "ParserPrinters/PrefixThrough.swift",
        "ParserPrinters/PrefixUpTo.swift",
        "ParserPrinters/Printing.swift",
        "ParserPrinters/Pullback.swift",
        "ParserPrinters/ReplaceError.swift",
        "ParserPrinters/Rest.swift",
        "ParserPrinters/Skip.swift",
        "ParserPrinters/StartsWith.swift",
        "ParserPrinters/UUID.swift",
        "ParserPrinters/Whitespace.swift",
        "Parsers/AnyParser.swift",
        "Parsers/CompactMap.swift",
        "Parsers/FlatMap.swift",
        "Parsers/Parsers.swift",
        "Parsers/Stream.swift",
        "ParsingError.swift",
        "PrependableCollection.swift",
        "PrintingError.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.