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 Sparse, reference 0.4.1 (7c360c), with Swift 6.1 for watchOS using Xcode 16.3 on 25 Apr 2025 18:58:30 UTC.

Swift 6 data race errors: 123

Build Command

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

               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:36:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let csv = many(line, separator: newline()).thenSkip(ending)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:14:16: warning: static property 'wss' is not concurrency-safe because non-'Sendable' type 'Parser<[Character]>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let wss = whitespaces()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:14:16: note: add '@MainActor' to make static property 'wss' part of global actor 'MainActor'
    static let wss = whitespaces()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:14:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let wss = whitespaces()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:15:16: warning: static property 'wsnl' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let wsnl = whitespaceOrNewline()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:15:16: note: add '@MainActor' to make static property 'wsnl' part of global actor 'MainActor'
    static let wsnl = whitespaceOrNewline()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:15:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let wsnl = whitespaceOrNewline()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:16:16: warning: static property 'wsnls' is not concurrency-safe because non-'Sendable' type 'Parser<[Character]>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let wsnls = whitespacesOrNewlines()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:16:16: note: add '@MainActor' to make static property 'wsnls' part of global actor 'MainActor'
    static let wsnls = whitespacesOrNewlines()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:16:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let wsnls = whitespacesOrNewlines()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:17:16: warning: static property 'wss1nl' is not concurrency-safe because non-'Sendable' type 'Parser<([Character], [Character])>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let wss1nl = wss.then(atMost(1, nl))
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:17:16: note: add '@MainActor' to make static property 'wss1nl' part of global actor 'MainActor'
    static let wss1nl = wss.then(atMost(1, nl))
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:17:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let wss1nl = wss.then(atMost(1, nl))
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:18:16: warning: static property 'nl' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let nl = newline()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:18:16: note: add '@MainActor' to make static property 'nl' part of global actor 'MainActor'
    static let nl = newline()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:18:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let nl = newline()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:19:16: warning: static property 'qm' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let qm = character("\"")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:19:16: note: add '@MainActor' to make static property 'qm' part of global actor 'MainActor'
    static let qm = character("\"")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:19:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let qm = character("\"")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:20:16: warning: static property 'sc' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let sc = character(";")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:20:16: note: add '@MainActor' to make static property 'sc' part of global actor 'MainActor'
    static let sc = character(";")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:20:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let sc = character(";")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:23:16: warning: static property 'escapableCharacter' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let escapableCharacter = characterNot("\\").otherwise(escapedSpecial)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:23:16: note: add '@MainActor' to make static property 'escapableCharacter' part of global actor 'MainActor'
    static let escapableCharacter = characterNot("\\").otherwise(escapedSpecial)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:23:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let escapableCharacter = characterNot("\\").otherwise(escapedSpecial)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:24:16: warning: static property 'escapedSpecial' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let escapedSpecial: Parser<Character> = character("\\").skipThen(oneOf([
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:24:16: note: add '@MainActor' to make static property 'escapedSpecial' part of global actor 'MainActor'
    static let escapedSpecial: Parser<Character> = character("\\").skipThen(oneOf([
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:24:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let escapedSpecial: Parser<Character> = character("\\").skipThen(oneOf([
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:35:16: warning: static property 'ilcStart' is not concurrency-safe because non-'Sendable' type 'Parser<[Character]>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ilcStart = atLeast(2, character("/")).thenSkip(wss)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:35:16: note: add '@MainActor' to make static property 'ilcStart' part of global actor 'MainActor'
    static let ilcStart = atLeast(2, character("/")).thenSkip(wss)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:35:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ilcStart = atLeast(2, character("/")).thenSkip(wss)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:36:16: warning: static property 'ilcStop' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ilcStop = nl
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:36:16: note: add '@MainActor' to make static property 'ilcStop' part of global actor 'MainActor'
    static let ilcStop = nl
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:36:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ilcStop = nl
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:38:16: warning: static property 'mlcStart' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mlcStart = string("/*").thenSkip(many(character("*")))
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:38:16: note: add '@MainActor' to make static property 'mlcStart' part of global actor 'MainActor'
    static let mlcStart = string("/*").thenSkip(many(character("*")))
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:38:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mlcStart = string("/*").thenSkip(many(character("*")))
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:39:16: warning: static property 'mlcStop' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mlcStop = string("*/")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:39:16: note: add '@MainActor' to make static property 'mlcStop' part of global actor 'MainActor'
    static let mlcStop = string("*/")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:39:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mlcStop = string("*/")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:41:16: warning: static property 'mlc' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mlc = many(anyCharacter().butNot(mlcStop), prefix: mlcStart, suffix: mlcStop).asString()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:41:16: note: add '@MainActor' to make static property 'mlc' part of global actor 'MainActor'
    static let mlc = many(anyCharacter().butNot(mlcStop), prefix: mlcStart, suffix: mlcStop).asString()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:41:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mlc = many(anyCharacter().butNot(mlcStop), prefix: mlcStart, suffix: mlcStop).asString()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:42:16: warning: static property 'ilc' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ilc = many(anyCharacter().butNot(ilcStop), prefix: ilcStart, suffix: ilcStop).asString()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:42:16: note: add '@MainActor' to make static property 'ilc' part of global actor 'MainActor'
    static let ilc = many(anyCharacter().butNot(ilcStop), prefix: ilcStart, suffix: ilcStop).asString()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:42:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ilc = many(anyCharacter().butNot(ilcStop), prefix: ilcStart, suffix: ilcStop).asString()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:44:16: warning: static property 'comment' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let comment = mlc.otherwise(ilc).thenSkip(wss1nl).named("comment")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:44:16: note: add '@MainActor' to make static property 'comment' part of global actor 'MainActor'
    static let comment = mlc.otherwise(ilc).thenSkip(wss1nl).named("comment")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:44:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let comment = mlc.otherwise(ilc).thenSkip(wss1nl).named("comment")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:45:16: warning: static property 'comments' is not concurrency-safe because non-'Sendable' type 'Parser<[String]>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let comments = many(comment)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:45:16: note: add '@MainActor' to make static property 'comments' part of global actor 'MainActor'
    static let comments = many(comment)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:45:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let comments = many(comment)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:46:16: warning: static property 'inlineComment' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let inlineComment = ilc.thenSkip(wss1nl).named("in-line comment")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:46:16: note: add '@MainActor' to make static property 'inlineComment' part of global actor 'MainActor'
    static let inlineComment = ilc.thenSkip(wss1nl).named("in-line comment")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:46:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let inlineComment = ilc.thenSkip(wss1nl).named("in-line comment")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:48:16: warning: static property 'orphanedComment' is not concurrency-safe because non-'Sendable' type 'Parser<([String], ([Character], [Character]))>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let orphanedComment = atLeastOne(comment).then(wss1nl)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:48:16: note: add '@MainActor' to make static property 'orphanedComment' part of global actor 'MainActor'
    static let orphanedComment = atLeastOne(comment).then(wss1nl)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:48:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let orphanedComment = atLeastOne(comment).then(wss1nl)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:51:16: warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let text = many(escapableCharacter.butNot(qm), boundedBy: qm).asString().named("text")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:51:16: note: add '@MainActor' to make static property 'text' part of global actor 'MainActor'
    static let text = many(escapableCharacter.butNot(qm), boundedBy: qm).asString().named("text")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:51:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let text = many(escapableCharacter.butNot(qm), boundedBy: qm).asString().named("text")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:52:16: warning: static property 'key' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let key = text.named("key")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:52:16: note: add '@MainActor' to make static property 'key' part of global actor 'MainActor'
    static let key = text.named("key")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:52:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let key = text.named("key")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:53:16: warning: static property 'translation' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let translation = text.named("translation")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:53:16: note: add '@MainActor' to make static property 'translation' part of global actor 'MainActor'
    static let translation = text.named("translation")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:53:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let translation = text.named("translation")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:54:16: warning: static property 'separator' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let separator = wss.skipThen(character("=")).thenSkip(wss).named("separator")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:54:16: note: add '@MainActor' to make static property 'separator' part of global actor 'MainActor'
    static let separator = wss.skipThen(character("=")).thenSkip(wss).named("separator")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:54:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let separator = wss.skipThen(character("=")).thenSkip(wss).named("separator")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:55:16: warning: static property 'kvp' is not concurrency-safe because non-'Sendable' type 'Parser<(String, String)>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let kvp = key.thenSkip(separator).then(translation).thenSkip(sc).named("pair")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:55:16: note: add '@MainActor' to make static property 'kvp' part of global actor 'MainActor'
    static let kvp = key.thenSkip(separator).then(translation).thenSkip(sc).named("pair")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:55:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let kvp = key.thenSkip(separator).then(translation).thenSkip(sc).named("pair")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:58:16: warning: static property 'entryTuple' is not concurrency-safe because non-'Sendable' type 'Parser<([String], (String, String), String?)>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let entryTuple = comments.then(kvp).thenSkip(wss).then(optional(inlineComment)).thenSkip(wsnls).map(flatten)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:58:16: note: add '@MainActor' to make static property 'entryTuple' part of global actor 'MainActor'
    static let entryTuple = comments.then(kvp).thenSkip(wss).then(optional(inlineComment)).thenSkip(wsnls).map(flatten)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:58:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let entryTuple = comments.then(kvp).thenSkip(wss).then(optional(inlineComment)).thenSkip(wsnls).map(flatten)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:59:16: warning: static property 'entryObject' is not concurrency-safe because non-'Sendable' type 'Parser<DotStringsEntry>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let entryObject = entryTuple.map(createEntry).named("entry")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:59:16: note: add '@MainActor' to make static property 'entryObject' part of global actor 'MainActor'
    static let entryObject = entryTuple.map(createEntry).named("entry")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:59:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let entryObject = entryTuple.map(createEntry).named("entry")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:60:16: warning: static property 'entries' is not concurrency-safe because non-'Sendable' type 'Parser<[DotStringsEntry]>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let entries = many(entryObject.otherwiseSkip(orphanedComment)).map { $0.compactMap{$0} }
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:60:16: note: add '@MainActor' to make static property 'entries' part of global actor 'MainActor'
    static let entries = many(entryObject.otherwiseSkip(orphanedComment)).map { $0.compactMap{$0} }
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:60:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let entries = many(entryObject.otherwiseSkip(orphanedComment)).map { $0.compactMap{$0} }
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:63:16: warning: static property 'stringsParser' is not concurrency-safe because non-'Sendable' type 'Parser<[DotStringsEntry]>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let stringsParser = wsnls.skipThen(entries).thenSkip(end())
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:63:16: note: add '@MainActor' to make static property 'stringsParser' part of global actor 'MainActor'
    static let stringsParser = wsnls.skipThen(entries).thenSkip(end())
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:63:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let stringsParser = wsnls.skipThen(entries).thenSkip(end())
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/IgnoreError.swift:12:7: warning: non-final class 'IgnoreError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
class IgnoreError: Error { }
      ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/ParserError.swift:15:9: warning: stored property 'errors' of 'Sendable'-conforming struct 'ParserError' has non-sendable type '[ContextualizedError]'; this is an error in the Swift 6 language mode
    var errors: [ContextualizedError]
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/ContextualizedError.swift:11:15: note: consider making struct 'ContextualizedError' conform to the 'Sendable' protocol
public struct ContextualizedError: CustomStringConvertible {
              ^
                                                          , Sendable
SwiftCompile normal arm64 Compiling\ ContextDescribableError.swift,\ ContextualizedError.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/ContextDescribableError.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/ContextualizedError.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sparse/ContextDescribableError.swift (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal arm64 Emitting module for Sparse (in target 'Sparse' from project 'Sparse')
SwiftDriver\ Compilation\ Requirements Sparse normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Sparse' from project 'Sparse')
    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 Sparse -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Sparse.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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 -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Sparse-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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Sparse.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Sparse_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/Sparse.build/Debug-watchos/Sparse.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Sparse-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64_32 Emitting module for Sparse (in target 'Sparse' from project 'Sparse')
SwiftDriver\ Compilation\ Requirements Sparse normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'Sparse' from project 'Sparse')
    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 Sparse -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Sparse.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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 -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Sparse-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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Sparse.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Sparse_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/Sparse.build/Debug-watchos/Sparse.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Sparse-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Sparse.swiftmodule (in target 'Sparse' from project 'Sparse')
    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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Sparse.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Sparse.swiftmodule (in target 'Sparse' from project 'Sparse')
    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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Sparse.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Sparse.swiftdoc (in target 'Sparse' from project 'Sparse')
    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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Sparse.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Sparse.abi.json (in target 'Sparse' from project 'Sparse')
    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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Sparse.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Sparse.swiftdoc (in target 'Sparse' from project 'Sparse')
    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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Sparse.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Sparse.abi.json (in target 'Sparse' from project 'Sparse')
    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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Sparse.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Sparse.swiftsourceinfo (in target 'Sparse' from project 'Sparse')
    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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Sparse.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Sparse.swiftsourceinfo (in target 'Sparse' from project 'Sparse')
    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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Sparse.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftCompile normal armv7k Compiling\ IgnoreError.swift,\ InfiniteLoopError.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/IgnoreError.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/InfiniteLoopError.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Sparse/IgnoreError.swift (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Sparse/IgnoreError.swift:12:7: warning: non-final class 'IgnoreError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
class IgnoreError: Error { }
      ^
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Sparse/InfiniteLoopError.swift (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

SwiftDriverJobDiscovery normal armv7k Emitting module for Sparse (in target 'Sparse' from project 'Sparse')
SwiftDriver\ Compilation\ Requirements Sparse normal armv7k com.apple.xcode.tools.swift.compiler (in target 'Sparse' from project 'Sparse')
    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 Sparse -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Sparse.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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 -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Sparse-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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Sparse.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Sparse_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/Sparse.build/Debug-watchos/Sparse.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Sparse-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling ContextDescribableError.swift, ContextualizedError.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal armv7k Compiling\ Transforms.swift,\ UnexpectedInputError.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/Transforms.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/UnexpectedInputError.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Sparse/Transforms.swift (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/Sparse-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Sparse-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Sparse-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Sparse-Swift.h (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Sparse-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Sparse-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Sparse-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/Sparse-Swift.h
SwiftDriverJobDiscovery normal armv7k Compiling Parser.swift, ParserError.swift (in target 'Sparse' from project 'Sparse')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Sparse.swiftmodule (in target 'Sparse' from project 'Sparse')
    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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Sparse.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.swiftmodule/armv7k-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Sparse.swiftdoc (in target 'Sparse' from project 'Sparse')
    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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Sparse.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Sparse.abi.json (in target 'Sparse' from project 'Sparse')
    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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Sparse.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Sparse.swiftsourceinfo (in target 'Sparse' from project 'Sparse')
    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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Sparse.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
SwiftCompile normal armv7k Compiling\ DotStringsEntry.swift,\ DotStringsParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsEntry.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsEntry.swift (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:14:16: warning: static property 'wss' is not concurrency-safe because non-'Sendable' type 'Parser<[Character]>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let wss = whitespaces()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:14:16: note: add '@MainActor' to make static property 'wss' part of global actor 'MainActor'
    static let wss = whitespaces()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:14:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let wss = whitespaces()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:15:16: warning: static property 'wsnl' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let wsnl = whitespaceOrNewline()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:15:16: note: add '@MainActor' to make static property 'wsnl' part of global actor 'MainActor'
    static let wsnl = whitespaceOrNewline()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:15:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let wsnl = whitespaceOrNewline()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:16:16: warning: static property 'wsnls' is not concurrency-safe because non-'Sendable' type 'Parser<[Character]>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let wsnls = whitespacesOrNewlines()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:16:16: note: add '@MainActor' to make static property 'wsnls' part of global actor 'MainActor'
    static let wsnls = whitespacesOrNewlines()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:16:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let wsnls = whitespacesOrNewlines()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:17:16: warning: static property 'wss1nl' is not concurrency-safe because non-'Sendable' type 'Parser<([Character], [Character])>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let wss1nl = wss.then(atMost(1, nl))
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:17:16: note: add '@MainActor' to make static property 'wss1nl' part of global actor 'MainActor'
    static let wss1nl = wss.then(atMost(1, nl))
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:17:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let wss1nl = wss.then(atMost(1, nl))
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:18:16: warning: static property 'nl' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let nl = newline()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:18:16: note: add '@MainActor' to make static property 'nl' part of global actor 'MainActor'
    static let nl = newline()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:18:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let nl = newline()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:19:16: warning: static property 'qm' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let qm = character("\"")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:19:16: note: add '@MainActor' to make static property 'qm' part of global actor 'MainActor'
    static let qm = character("\"")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:19:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let qm = character("\"")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:20:16: warning: static property 'sc' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let sc = character(";")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:20:16: note: add '@MainActor' to make static property 'sc' part of global actor 'MainActor'
    static let sc = character(";")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:20:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let sc = character(";")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:23:16: warning: static property 'escapableCharacter' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let escapableCharacter = characterNot("\\").otherwise(escapedSpecial)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:23:16: note: add '@MainActor' to make static property 'escapableCharacter' part of global actor 'MainActor'
    static let escapableCharacter = characterNot("\\").otherwise(escapedSpecial)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:23:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let escapableCharacter = characterNot("\\").otherwise(escapedSpecial)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:24:16: warning: static property 'escapedSpecial' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let escapedSpecial: Parser<Character> = character("\\").skipThen(oneOf([
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:24:16: note: add '@MainActor' to make static property 'escapedSpecial' part of global actor 'MainActor'
    static let escapedSpecial: Parser<Character> = character("\\").skipThen(oneOf([
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:24:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let escapedSpecial: Parser<Character> = character("\\").skipThen(oneOf([
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:35:16: warning: static property 'ilcStart' is not concurrency-safe because non-'Sendable' type 'Parser<[Character]>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ilcStart = atLeast(2, character("/")).thenSkip(wss)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:35:16: note: add '@MainActor' to make static property 'ilcStart' part of global actor 'MainActor'
    static let ilcStart = atLeast(2, character("/")).thenSkip(wss)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:35:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ilcStart = atLeast(2, character("/")).thenSkip(wss)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:36:16: warning: static property 'ilcStop' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ilcStop = nl
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:36:16: note: add '@MainActor' to make static property 'ilcStop' part of global actor 'MainActor'
    static let ilcStop = nl
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:36:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ilcStop = nl
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:38:16: warning: static property 'mlcStart' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mlcStart = string("/*").thenSkip(many(character("*")))
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:38:16: note: add '@MainActor' to make static property 'mlcStart' part of global actor 'MainActor'
    static let mlcStart = string("/*").thenSkip(many(character("*")))
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:38:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mlcStart = string("/*").thenSkip(many(character("*")))
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:39:16: warning: static property 'mlcStop' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mlcStop = string("*/")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:39:16: note: add '@MainActor' to make static property 'mlcStop' part of global actor 'MainActor'
    static let mlcStop = string("*/")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:39:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mlcStop = string("*/")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:41:16: warning: static property 'mlc' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mlc = many(anyCharacter().butNot(mlcStop), prefix: mlcStart, suffix: mlcStop).asString()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:41:16: note: add '@MainActor' to make static property 'mlc' part of global actor 'MainActor'
    static let mlc = many(anyCharacter().butNot(mlcStop), prefix: mlcStart, suffix: mlcStop).asString()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:41:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mlc = many(anyCharacter().butNot(mlcStop), prefix: mlcStart, suffix: mlcStop).asString()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:42:16: warning: static property 'ilc' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ilc = many(anyCharacter().butNot(ilcStop), prefix: ilcStart, suffix: ilcStop).asString()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:42:16: note: add '@MainActor' to make static property 'ilc' part of global actor 'MainActor'
    static let ilc = many(anyCharacter().butNot(ilcStop), prefix: ilcStart, suffix: ilcStop).asString()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:42:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ilc = many(anyCharacter().butNot(ilcStop), prefix: ilcStart, suffix: ilcStop).asString()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:44:16: warning: static property 'comment' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let comment = mlc.otherwise(ilc).thenSkip(wss1nl).named("comment")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:44:16: note: add '@MainActor' to make static property 'comment' part of global actor 'MainActor'
    static let comment = mlc.otherwise(ilc).thenSkip(wss1nl).named("comment")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:44:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let comment = mlc.otherwise(ilc).thenSkip(wss1nl).named("comment")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:45:16: warning: static property 'comments' is not concurrency-safe because non-'Sendable' type 'Parser<[String]>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let comments = many(comment)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:45:16: note: add '@MainActor' to make static property 'comments' part of global actor 'MainActor'
    static let comments = many(comment)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:45:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let comments = many(comment)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:46:16: warning: static property 'inlineComment' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let inlineComment = ilc.thenSkip(wss1nl).named("in-line comment")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:46:16: note: add '@MainActor' to make static property 'inlineComment' part of global actor 'MainActor'
    static let inlineComment = ilc.thenSkip(wss1nl).named("in-line comment")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:46:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let inlineComment = ilc.thenSkip(wss1nl).named("in-line comment")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:48:16: warning: static property 'orphanedComment' is not concurrency-safe because non-'Sendable' type 'Parser<([String], ([Character], [Character]))>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let orphanedComment = atLeastOne(comment).then(wss1nl)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:48:16: note: add '@MainActor' to make static property 'orphanedComment' part of global actor 'MainActor'
    static let orphanedComment = atLeastOne(comment).then(wss1nl)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:48:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let orphanedComment = atLeastOne(comment).then(wss1nl)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:51:16: warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let text = many(escapableCharacter.butNot(qm), boundedBy: qm).asString().named("text")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:51:16: note: add '@MainActor' to make static property 'text' part of global actor 'MainActor'
    static let text = many(escapableCharacter.butNot(qm), boundedBy: qm).asString().named("text")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:51:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let text = many(escapableCharacter.butNot(qm), boundedBy: qm).asString().named("text")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:52:16: warning: static property 'key' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let key = text.named("key")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:52:16: note: add '@MainActor' to make static property 'key' part of global actor 'MainActor'
    static let key = text.named("key")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:52:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let key = text.named("key")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:53:16: warning: static property 'translation' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let translation = text.named("translation")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:53:16: note: add '@MainActor' to make static property 'translation' part of global actor 'MainActor'
    static let translation = text.named("translation")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:53:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let translation = text.named("translation")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:54:16: warning: static property 'separator' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let separator = wss.skipThen(character("=")).thenSkip(wss).named("separator")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:54:16: note: add '@MainActor' to make static property 'separator' part of global actor 'MainActor'
    static let separator = wss.skipThen(character("=")).thenSkip(wss).named("separator")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:54:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let separator = wss.skipThen(character("=")).thenSkip(wss).named("separator")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:55:16: warning: static property 'kvp' is not concurrency-safe because non-'Sendable' type 'Parser<(String, String)>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let kvp = key.thenSkip(separator).then(translation).thenSkip(sc).named("pair")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:55:16: note: add '@MainActor' to make static property 'kvp' part of global actor 'MainActor'
    static let kvp = key.thenSkip(separator).then(translation).thenSkip(sc).named("pair")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:55:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let kvp = key.thenSkip(separator).then(translation).thenSkip(sc).named("pair")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:58:16: warning: static property 'entryTuple' is not concurrency-safe because non-'Sendable' type 'Parser<([String], (String, String), String?)>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let entryTuple = comments.then(kvp).thenSkip(wss).then(optional(inlineComment)).thenSkip(wsnls).map(flatten)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:58:16: note: add '@MainActor' to make static property 'entryTuple' part of global actor 'MainActor'
    static let entryTuple = comments.then(kvp).thenSkip(wss).then(optional(inlineComment)).thenSkip(wsnls).map(flatten)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:58:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let entryTuple = comments.then(kvp).thenSkip(wss).then(optional(inlineComment)).thenSkip(wsnls).map(flatten)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:59:16: warning: static property 'entryObject' is not concurrency-safe because non-'Sendable' type 'Parser<DotStringsEntry>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let entryObject = entryTuple.map(createEntry).named("entry")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:59:16: note: add '@MainActor' to make static property 'entryObject' part of global actor 'MainActor'
    static let entryObject = entryTuple.map(createEntry).named("entry")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:59:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let entryObject = entryTuple.map(createEntry).named("entry")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:60:16: warning: static property 'entries' is not concurrency-safe because non-'Sendable' type 'Parser<[DotStringsEntry]>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let entries = many(entryObject.otherwiseSkip(orphanedComment)).map { $0.compactMap{$0} }
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:60:16: note: add '@MainActor' to make static property 'entries' part of global actor 'MainActor'
    static let entries = many(entryObject.otherwiseSkip(orphanedComment)).map { $0.compactMap{$0} }
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:60:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let entries = many(entryObject.otherwiseSkip(orphanedComment)).map { $0.compactMap{$0} }
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:63:16: warning: static property 'stringsParser' is not concurrency-safe because non-'Sendable' type 'Parser<[DotStringsEntry]>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let stringsParser = wsnls.skipThen(entries).thenSkip(end())
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:63:16: note: add '@MainActor' to make static property 'stringsParser' part of global actor 'MainActor'
    static let stringsParser = wsnls.skipThen(entries).thenSkip(end())
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:63:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let stringsParser = wsnls.skipThen(entries).thenSkip(end())
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Parser_name.swift,\ Parser_run.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser_name.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser_run.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser_name.swift (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal arm64_32 Compiling Parser.swift, ParserError.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal arm64 Compiling\ CSVParser.swift,\ CharacterParsers.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/CharacterParsers.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:13:16: warning: static property 'quote' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let quote = character("\"")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:13:16: note: add '@MainActor' to make static property 'quote' part of global actor 'MainActor'
    static let quote = character("\"")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let quote = character("\"")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:16:16: warning: static property 'unquotedCellCharacter' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let unquotedCellCharacter = characterNot(in: illegalCellCharacters)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:16:16: note: add '@MainActor' to make static property 'unquotedCellCharacter' part of global actor 'MainActor'
    static let unquotedCellCharacter = characterNot(in: illegalCellCharacters)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:16:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let unquotedCellCharacter = characterNot(in: illegalCellCharacters)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:18:16: warning: static property 'unquotedCell' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let unquotedCell = many(unquotedCellCharacter).asString()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:18:16: note: add '@MainActor' to make static property 'unquotedCell' part of global actor 'MainActor'
    static let unquotedCell = many(unquotedCellCharacter).asString()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:18:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let unquotedCell = many(unquotedCellCharacter).asString()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:21:16: warning: static property 'escapedQuote' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let escapedQuote = quote.skipThen(quote)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:21:16: note: add '@MainActor' to make static property 'escapedQuote' part of global actor 'MainActor'
    static let escapedQuote = quote.skipThen(quote)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:21:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let escapedQuote = quote.skipThen(quote)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:23:16: warning: static property 'quotedCellCharacter' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let quotedCellCharacter = characterNot("\"")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:23:16: note: add '@MainActor' to make static property 'quotedCellCharacter' part of global actor 'MainActor'
    static let quotedCellCharacter = characterNot("\"")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:23:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let quotedCellCharacter = characterNot("\"")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:27:16: warning: static property 'quotedCell' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let quotedCell = many(quotedCellCharacter, boundedBy: quote).asString()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:27:16: note: add '@MainActor' to make static property 'quotedCell' part of global actor 'MainActor'
    static let quotedCell = many(quotedCellCharacter, boundedBy: quote).asString()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:27:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let quotedCell = many(quotedCellCharacter, boundedBy: quote).asString()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:29:16: warning: static property 'cell' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let cell = quotedCell.otherwise(unquotedCell)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:29:16: note: add '@MainActor' to make static property 'cell' part of global actor 'MainActor'
    static let cell = quotedCell.otherwise(unquotedCell)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:29:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let cell = quotedCell.otherwise(unquotedCell)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:31:16: warning: static property 'cellSeparator' is not concurrency-safe because non-'Sendable' type 'Parser<(([Character], Character), [Character])>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let cellSeparator = whitespaces().then(character(",")).then(whitespaces())
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:31:16: note: add '@MainActor' to make static property 'cellSeparator' part of global actor 'MainActor'
    static let cellSeparator = whitespaces().then(character(",")).then(whitespaces())
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:31:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let cellSeparator = whitespaces().then(character(",")).then(whitespaces())
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:33:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'Parser<[String]>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let line = many(cell, separator: cellSeparator)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:33:16: note: add '@MainActor' to make static property 'line' part of global actor 'MainActor'
    static let line = many(cell, separator: cellSeparator)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:33:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let line = many(cell, separator: cellSeparator)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:35:16: warning: static property 'ending' is not concurrency-safe because non-'Sendable' type 'Parser<(Character?, Void)>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ending = optional(newline()).then(end())
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:35:16: note: add '@MainActor' to make static property 'ending' part of global actor 'MainActor'
    static let ending = optional(newline()).then(end())
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:35:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ending = optional(newline()).then(end())
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:36:16: warning: static property 'csv' is not concurrency-safe because non-'Sendable' type 'Parser<[[String]]>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let csv = many(line, separator: newline()).thenSkip(ending)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:36:16: note: add '@MainActor' to make static property 'csv' part of global actor 'MainActor'
    static let csv = many(line, separator: newline()).thenSkip(ending)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:36:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let csv = many(line, separator: newline()).thenSkip(ending)
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sparse/CharacterParsers.swift (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling Parser_combinators.swift, Parser_creators.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal armv7k Compiling\ Stream.swift,\ StringParsers.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/Stream.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/StringParsers.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Sparse/Stream.swift (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal armv7k Compiling CSVParser.swift, CharacterParsers.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal armv7k Compiling\ ContextDescribableError.swift,\ ContextualizedError.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/ContextDescribableError.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/ContextualizedError.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Sparse/ContextDescribableError.swift (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal armv7k Compiling IgnoreError.swift, InfiniteLoopError.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal arm64_32 Compiling\ Transforms.swift,\ UnexpectedInputError.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/Transforms.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/UnexpectedInputError.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Sparse/Transforms.swift (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal arm64 Compiling Parser_combinators.swift, Parser_creators.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal armv7k Compiling\ Parser_combinators.swift,\ Parser_creators.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser_combinators.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser_creators.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser_combinators.swift (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal arm64_32 Compiling IgnoreError.swift, InfiniteLoopError.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal arm64 Compiling\ Parser.swift,\ ParserError.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/ParserError.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/Sparse/ParserError.swift:15:9: warning: stored property 'errors' of 'Sendable'-conforming struct 'ParserError' has non-sendable type '[ContextualizedError]'; this is an error in the Swift 6 language mode
    var errors: [ContextualizedError]
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/ContextualizedError.swift:11:15: note: consider making struct 'ContextualizedError' conform to the 'Sendable' protocol
public struct ContextualizedError: CustomStringConvertible {
              ^
                                                          , Sendable
SwiftDriverJobDiscovery normal arm64_32 Compiling DotStringsEntry.swift, DotStringsParser.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal arm64 Compiling\ IgnoreError.swift,\ InfiniteLoopError.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/IgnoreError.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/InfiniteLoopError.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sparse/IgnoreError.swift (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Sparse/IgnoreError.swift:12:7: warning: non-final class 'IgnoreError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
class IgnoreError: Error { }
      ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sparse/InfiniteLoopError.swift (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling ParsingContext.swift, PositionedInput.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal arm64 Compiling\ Transforms.swift,\ UnexpectedInputError.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/Transforms.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/UnexpectedInputError.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sparse/Transforms.swift (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal armv7k Compiling Transforms.swift, UnexpectedInputError.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal armv7k Compiling\ ParsingContext.swift,\ PositionedInput.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/ParsingContext.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/PositionedInput.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Sparse/ParsingContext.swift (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal armv7k Compiling ContextDescribableError.swift, ContextualizedError.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal arm64 Compiling\ DotStringsEntry.swift,\ DotStringsParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsEntry.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsEntry.swift (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:14:16: warning: static property 'wss' is not concurrency-safe because non-'Sendable' type 'Parser<[Character]>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let wss = whitespaces()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:14:16: note: add '@MainActor' to make static property 'wss' part of global actor 'MainActor'
    static let wss = whitespaces()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:14:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let wss = whitespaces()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:15:16: warning: static property 'wsnl' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let wsnl = whitespaceOrNewline()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:15:16: note: add '@MainActor' to make static property 'wsnl' part of global actor 'MainActor'
    static let wsnl = whitespaceOrNewline()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:15:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let wsnl = whitespaceOrNewline()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:16:16: warning: static property 'wsnls' is not concurrency-safe because non-'Sendable' type 'Parser<[Character]>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let wsnls = whitespacesOrNewlines()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:16:16: note: add '@MainActor' to make static property 'wsnls' part of global actor 'MainActor'
    static let wsnls = whitespacesOrNewlines()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:16:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let wsnls = whitespacesOrNewlines()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:17:16: warning: static property 'wss1nl' is not concurrency-safe because non-'Sendable' type 'Parser<([Character], [Character])>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let wss1nl = wss.then(atMost(1, nl))
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:17:16: note: add '@MainActor' to make static property 'wss1nl' part of global actor 'MainActor'
    static let wss1nl = wss.then(atMost(1, nl))
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:17:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let wss1nl = wss.then(atMost(1, nl))
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:18:16: warning: static property 'nl' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let nl = newline()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:18:16: note: add '@MainActor' to make static property 'nl' part of global actor 'MainActor'
    static let nl = newline()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:18:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let nl = newline()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:19:16: warning: static property 'qm' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let qm = character("\"")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:19:16: note: add '@MainActor' to make static property 'qm' part of global actor 'MainActor'
    static let qm = character("\"")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:19:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let qm = character("\"")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:20:16: warning: static property 'sc' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let sc = character(";")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:20:16: note: add '@MainActor' to make static property 'sc' part of global actor 'MainActor'
    static let sc = character(";")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:20:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let sc = character(";")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:23:16: warning: static property 'escapableCharacter' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let escapableCharacter = characterNot("\\").otherwise(escapedSpecial)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:23:16: note: add '@MainActor' to make static property 'escapableCharacter' part of global actor 'MainActor'
    static let escapableCharacter = characterNot("\\").otherwise(escapedSpecial)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:23:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let escapableCharacter = characterNot("\\").otherwise(escapedSpecial)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:24:16: warning: static property 'escapedSpecial' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let escapedSpecial: Parser<Character> = character("\\").skipThen(oneOf([
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:24:16: note: add '@MainActor' to make static property 'escapedSpecial' part of global actor 'MainActor'
    static let escapedSpecial: Parser<Character> = character("\\").skipThen(oneOf([
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:24:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let escapedSpecial: Parser<Character> = character("\\").skipThen(oneOf([
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:35:16: warning: static property 'ilcStart' is not concurrency-safe because non-'Sendable' type 'Parser<[Character]>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ilcStart = atLeast(2, character("/")).thenSkip(wss)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:35:16: note: add '@MainActor' to make static property 'ilcStart' part of global actor 'MainActor'
    static let ilcStart = atLeast(2, character("/")).thenSkip(wss)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:35:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ilcStart = atLeast(2, character("/")).thenSkip(wss)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:36:16: warning: static property 'ilcStop' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ilcStop = nl
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:36:16: note: add '@MainActor' to make static property 'ilcStop' part of global actor 'MainActor'
    static let ilcStop = nl
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:36:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ilcStop = nl
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:38:16: warning: static property 'mlcStart' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mlcStart = string("/*").thenSkip(many(character("*")))
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:38:16: note: add '@MainActor' to make static property 'mlcStart' part of global actor 'MainActor'
    static let mlcStart = string("/*").thenSkip(many(character("*")))
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:38:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mlcStart = string("/*").thenSkip(many(character("*")))
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:39:16: warning: static property 'mlcStop' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mlcStop = string("*/")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:39:16: note: add '@MainActor' to make static property 'mlcStop' part of global actor 'MainActor'
    static let mlcStop = string("*/")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:39:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mlcStop = string("*/")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:41:16: warning: static property 'mlc' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mlc = many(anyCharacter().butNot(mlcStop), prefix: mlcStart, suffix: mlcStop).asString()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:41:16: note: add '@MainActor' to make static property 'mlc' part of global actor 'MainActor'
    static let mlc = many(anyCharacter().butNot(mlcStop), prefix: mlcStart, suffix: mlcStop).asString()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:41:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mlc = many(anyCharacter().butNot(mlcStop), prefix: mlcStart, suffix: mlcStop).asString()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:42:16: warning: static property 'ilc' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ilc = many(anyCharacter().butNot(ilcStop), prefix: ilcStart, suffix: ilcStop).asString()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:42:16: note: add '@MainActor' to make static property 'ilc' part of global actor 'MainActor'
    static let ilc = many(anyCharacter().butNot(ilcStop), prefix: ilcStart, suffix: ilcStop).asString()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:42:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ilc = many(anyCharacter().butNot(ilcStop), prefix: ilcStart, suffix: ilcStop).asString()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:44:16: warning: static property 'comment' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let comment = mlc.otherwise(ilc).thenSkip(wss1nl).named("comment")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:44:16: note: add '@MainActor' to make static property 'comment' part of global actor 'MainActor'
    static let comment = mlc.otherwise(ilc).thenSkip(wss1nl).named("comment")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:44:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let comment = mlc.otherwise(ilc).thenSkip(wss1nl).named("comment")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:45:16: warning: static property 'comments' is not concurrency-safe because non-'Sendable' type 'Parser<[String]>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let comments = many(comment)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:45:16: note: add '@MainActor' to make static property 'comments' part of global actor 'MainActor'
    static let comments = many(comment)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:45:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let comments = many(comment)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:46:16: warning: static property 'inlineComment' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let inlineComment = ilc.thenSkip(wss1nl).named("in-line comment")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:46:16: note: add '@MainActor' to make static property 'inlineComment' part of global actor 'MainActor'
    static let inlineComment = ilc.thenSkip(wss1nl).named("in-line comment")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:46:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let inlineComment = ilc.thenSkip(wss1nl).named("in-line comment")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:48:16: warning: static property 'orphanedComment' is not concurrency-safe because non-'Sendable' type 'Parser<([String], ([Character], [Character]))>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let orphanedComment = atLeastOne(comment).then(wss1nl)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:48:16: note: add '@MainActor' to make static property 'orphanedComment' part of global actor 'MainActor'
    static let orphanedComment = atLeastOne(comment).then(wss1nl)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:48:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let orphanedComment = atLeastOne(comment).then(wss1nl)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:51:16: warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let text = many(escapableCharacter.butNot(qm), boundedBy: qm).asString().named("text")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:51:16: note: add '@MainActor' to make static property 'text' part of global actor 'MainActor'
    static let text = many(escapableCharacter.butNot(qm), boundedBy: qm).asString().named("text")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:51:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let text = many(escapableCharacter.butNot(qm), boundedBy: qm).asString().named("text")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:52:16: warning: static property 'key' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let key = text.named("key")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:52:16: note: add '@MainActor' to make static property 'key' part of global actor 'MainActor'
    static let key = text.named("key")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:52:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let key = text.named("key")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:53:16: warning: static property 'translation' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let translation = text.named("translation")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:53:16: note: add '@MainActor' to make static property 'translation' part of global actor 'MainActor'
    static let translation = text.named("translation")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:53:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let translation = text.named("translation")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:54:16: warning: static property 'separator' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let separator = wss.skipThen(character("=")).thenSkip(wss).named("separator")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:54:16: note: add '@MainActor' to make static property 'separator' part of global actor 'MainActor'
    static let separator = wss.skipThen(character("=")).thenSkip(wss).named("separator")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:54:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let separator = wss.skipThen(character("=")).thenSkip(wss).named("separator")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:55:16: warning: static property 'kvp' is not concurrency-safe because non-'Sendable' type 'Parser<(String, String)>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let kvp = key.thenSkip(separator).then(translation).thenSkip(sc).named("pair")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:55:16: note: add '@MainActor' to make static property 'kvp' part of global actor 'MainActor'
    static let kvp = key.thenSkip(separator).then(translation).thenSkip(sc).named("pair")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:55:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let kvp = key.thenSkip(separator).then(translation).thenSkip(sc).named("pair")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:58:16: warning: static property 'entryTuple' is not concurrency-safe because non-'Sendable' type 'Parser<([String], (String, String), String?)>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let entryTuple = comments.then(kvp).thenSkip(wss).then(optional(inlineComment)).thenSkip(wsnls).map(flatten)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:58:16: note: add '@MainActor' to make static property 'entryTuple' part of global actor 'MainActor'
    static let entryTuple = comments.then(kvp).thenSkip(wss).then(optional(inlineComment)).thenSkip(wsnls).map(flatten)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:58:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let entryTuple = comments.then(kvp).thenSkip(wss).then(optional(inlineComment)).thenSkip(wsnls).map(flatten)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:59:16: warning: static property 'entryObject' is not concurrency-safe because non-'Sendable' type 'Parser<DotStringsEntry>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let entryObject = entryTuple.map(createEntry).named("entry")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:59:16: note: add '@MainActor' to make static property 'entryObject' part of global actor 'MainActor'
    static let entryObject = entryTuple.map(createEntry).named("entry")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:59:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let entryObject = entryTuple.map(createEntry).named("entry")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:60:16: warning: static property 'entries' is not concurrency-safe because non-'Sendable' type 'Parser<[DotStringsEntry]>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let entries = many(entryObject.otherwiseSkip(orphanedComment)).map { $0.compactMap{$0} }
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:60:16: note: add '@MainActor' to make static property 'entries' part of global actor 'MainActor'
    static let entries = many(entryObject.otherwiseSkip(orphanedComment)).map { $0.compactMap{$0} }
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:60:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let entries = many(entryObject.otherwiseSkip(orphanedComment)).map { $0.compactMap{$0} }
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:63:16: warning: static property 'stringsParser' is not concurrency-safe because non-'Sendable' type 'Parser<[DotStringsEntry]>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let stringsParser = wsnls.skipThen(entries).thenSkip(end())
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:63:16: note: add '@MainActor' to make static property 'stringsParser' part of global actor 'MainActor'
    static let stringsParser = wsnls.skipThen(entries).thenSkip(end())
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/DotStringsParser.swift:63:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let stringsParser = wsnls.skipThen(entries).thenSkip(end())
               ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling Parser_name.swift, Parser_run.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal arm64 Compiling\ ParsingContext.swift,\ PositionedInput.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/ParsingContext.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/PositionedInput.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sparse/ParsingContext.swift (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal arm64 Compiling IgnoreError.swift, InfiniteLoopError.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal armv7k Compiling\ Parser_name.swift,\ Parser_run.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser_name.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser_run.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser_name.swift (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal arm64_32 Compiling Transforms.swift, UnexpectedInputError.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal arm64_32 Compiling\ ContextDescribableError.swift,\ ContextualizedError.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/ContextDescribableError.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/ContextualizedError.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Sparse/ContextDescribableError.swift (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal arm64 Compiling Parser.swift, ParserError.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal arm64_32 Compiling\ Stream.swift,\ StringParsers.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/Stream.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/StringParsers.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Sparse/Stream.swift (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal armv7k Compiling Stream.swift, StringParsers.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal arm64_32 Compiling\ CSVParser.swift,\ CharacterParsers.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/CharacterParsers.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:13:16: warning: static property 'quote' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let quote = character("\"")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:13:16: note: add '@MainActor' to make static property 'quote' part of global actor 'MainActor'
    static let quote = character("\"")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let quote = character("\"")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:16:16: warning: static property 'unquotedCellCharacter' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let unquotedCellCharacter = characterNot(in: illegalCellCharacters)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:16:16: note: add '@MainActor' to make static property 'unquotedCellCharacter' part of global actor 'MainActor'
    static let unquotedCellCharacter = characterNot(in: illegalCellCharacters)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:16:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let unquotedCellCharacter = characterNot(in: illegalCellCharacters)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:18:16: warning: static property 'unquotedCell' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let unquotedCell = many(unquotedCellCharacter).asString()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:18:16: note: add '@MainActor' to make static property 'unquotedCell' part of global actor 'MainActor'
    static let unquotedCell = many(unquotedCellCharacter).asString()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:18:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let unquotedCell = many(unquotedCellCharacter).asString()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:21:16: warning: static property 'escapedQuote' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let escapedQuote = quote.skipThen(quote)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:21:16: note: add '@MainActor' to make static property 'escapedQuote' part of global actor 'MainActor'
    static let escapedQuote = quote.skipThen(quote)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:21:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let escapedQuote = quote.skipThen(quote)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:23:16: warning: static property 'quotedCellCharacter' is not concurrency-safe because non-'Sendable' type 'Parser<Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let quotedCellCharacter = characterNot("\"")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:23:16: note: add '@MainActor' to make static property 'quotedCellCharacter' part of global actor 'MainActor'
    static let quotedCellCharacter = characterNot("\"")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:23:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let quotedCellCharacter = characterNot("\"")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:27:16: warning: static property 'quotedCell' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let quotedCell = many(quotedCellCharacter, boundedBy: quote).asString()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:27:16: note: add '@MainActor' to make static property 'quotedCell' part of global actor 'MainActor'
    static let quotedCell = many(quotedCellCharacter, boundedBy: quote).asString()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:27:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let quotedCell = many(quotedCellCharacter, boundedBy: quote).asString()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:29:16: warning: static property 'cell' is not concurrency-safe because non-'Sendable' type 'Parser<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let cell = quotedCell.otherwise(unquotedCell)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:29:16: note: add '@MainActor' to make static property 'cell' part of global actor 'MainActor'
    static let cell = quotedCell.otherwise(unquotedCell)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:29:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let cell = quotedCell.otherwise(unquotedCell)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:31:16: warning: static property 'cellSeparator' is not concurrency-safe because non-'Sendable' type 'Parser<(([Character], Character), [Character])>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let cellSeparator = whitespaces().then(character(",")).then(whitespaces())
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:31:16: note: add '@MainActor' to make static property 'cellSeparator' part of global actor 'MainActor'
    static let cellSeparator = whitespaces().then(character(",")).then(whitespaces())
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:31:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let cellSeparator = whitespaces().then(character(",")).then(whitespaces())
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:33:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'Parser<[String]>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let line = many(cell, separator: cellSeparator)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:33:16: note: add '@MainActor' to make static property 'line' part of global actor 'MainActor'
    static let line = many(cell, separator: cellSeparator)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:33:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let line = many(cell, separator: cellSeparator)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:35:16: warning: static property 'ending' is not concurrency-safe because non-'Sendable' type 'Parser<(Character?, Void)>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ending = optional(newline()).then(end())
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:35:16: note: add '@MainActor' to make static property 'ending' part of global actor 'MainActor'
    static let ending = optional(newline()).then(end())
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:35:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ending = optional(newline()).then(end())
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:36:16: warning: static property 'csv' is not concurrency-safe because non-'Sendable' type 'Parser<[[String]]>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let csv = many(line, separator: newline()).thenSkip(ending)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser.swift:11:15: note: consider making generic struct 'Parser' conform to the 'Sendable' protocol
public struct Parser<Output> {
              ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:36:16: note: add '@MainActor' to make static property 'csv' part of global actor 'MainActor'
    static let csv = many(line, separator: newline()).thenSkip(ending)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sparse/CSVParser.swift:36:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let csv = many(line, separator: newline()).thenSkip(ending)
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Sparse/CharacterParsers.swift (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling CSVParser.swift, CharacterParsers.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal arm64 Compiling\ Stream.swift,\ StringParsers.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/Stream.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/StringParsers.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sparse/Stream.swift (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal armv7k Compiling DotStringsEntry.swift, DotStringsParser.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal arm64_32 Compiling\ Parser_name.swift,\ Parser_run.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser_name.swift /Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser_run.swift (in target 'Sparse' from project 'Sparse')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Sparse/Parser_name.swift (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal armv7k Compiling Parser_combinators.swift, Parser_creators.swift (in target 'Sparse' from project 'Sparse')
SwiftDriverJobDiscovery normal arm64 Compiling Transforms.swift, UnexpectedInputError.swift (in target 'Sparse' from project 'Sparse')
SwiftDriverJobDiscovery normal armv7k Compiling Parser_name.swift, Parser_run.swift (in target 'Sparse' from project 'Sparse')
SwiftDriverJobDiscovery normal arm64_32 Compiling ContextDescribableError.swift, ContextualizedError.swift (in target 'Sparse' from project 'Sparse')
SwiftDriverJobDiscovery normal armv7k Compiling ParsingContext.swift, PositionedInput.swift (in target 'Sparse' from project 'Sparse')
SwiftDriver\ Compilation Sparse normal armv7k com.apple.xcode.tools.swift.compiler (in target 'Sparse' from project 'Sparse')
    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 Sparse -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Sparse.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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 -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Sparse-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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Sparse.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Sparse_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/Sparse.build/Debug-watchos/Sparse.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Sparse-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling ParsingContext.swift, PositionedInput.swift (in target 'Sparse' from project 'Sparse')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Binary/Sparse.o normal armv7k (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Sparse.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Sparse_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Sparse_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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Sparse.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Binary/Sparse.o
SwiftDriverJobDiscovery normal arm64 Compiling DotStringsEntry.swift, DotStringsParser.swift (in target 'Sparse' from project 'Sparse')
SwiftDriverJobDiscovery normal arm64_32 Compiling Stream.swift, StringParsers.swift (in target 'Sparse' from project 'Sparse')
SwiftDriverJobDiscovery normal arm64 Compiling Stream.swift, StringParsers.swift (in target 'Sparse' from project 'Sparse')
SwiftDriver\ Compilation Sparse normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Sparse' from project 'Sparse')
    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 Sparse -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Sparse.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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 -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Sparse-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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Sparse.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Sparse_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/Sparse.build/Debug-watchos/Sparse.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Sparse-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Binary/Sparse.o normal arm64 (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Sparse.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Sparse_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Sparse_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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Sparse.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Binary/Sparse.o
SwiftDriverJobDiscovery normal arm64_32 Compiling Parser_name.swift, Parser_run.swift (in target 'Sparse' from project 'Sparse')
SwiftDriverJobDiscovery normal arm64_32 Compiling CSVParser.swift, CharacterParsers.swift (in target 'Sparse' from project 'Sparse')
SwiftDriver\ Compilation Sparse normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'Sparse' from project 'Sparse')
    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 Sparse -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Sparse.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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 -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Sparse-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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Sparse.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Sparse_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/Sparse.build/Debug-watchos/Sparse.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Sparse-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Binary/Sparse.o normal arm64_32 (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Sparse.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Sparse_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Sparse_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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Sparse.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Binary/Sparse.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.o normal arm64\ armv7k\ arm64_32 (in target 'Sparse' from project 'Sparse')
    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/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Binary/Sparse.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Binary/Sparse.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Binary/Sparse.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.o
ExtractAppIntentsMetadata (in target 'Sparse' from project 'Sparse')
    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 Sparse --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 5.0 --bundle-identifier spi-builder-workspace.Sparse --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.appintents --target-triple arm64-apple-watchos5.0 --target-triple armv7k-apple-watchos5.0 --target-triple arm64_32-apple-watchos5.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Sparse_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Sparse_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Sparse_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Sparse.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Sparse.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Sparse.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Sparse.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Sparse.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64/Sparse.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/armv7k/Sparse.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sparse.build/Debug-watchos/Sparse.build/Objects-normal/arm64_32/Sparse.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-25 11:58:30.023 appintentsmetadataprocessor[871:4716] Starting appintentsmetadataprocessor export
2025-04-25 11:58:30.064 appintentsmetadataprocessor[871:4716] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.o (in target 'Sparse' from project 'Sparse')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Sparse.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
    {
      "identity" : "quick",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.2.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Quick/Quick.git"
    },
    {
      "identity" : "nimble",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "8.0.4",
            "upper_bound" : "9.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Quick/Nimble.git"
    }
  ],
  "manifest_display_name" : "Sparse",
  "name" : "Sparse",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Sparse",
      "targets" : [
        "Sparse"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SparseTests",
      "module_type" : "SwiftTarget",
      "name" : "SparseTests",
      "path" : "Sources/SparseTests",
      "product_dependencies" : [
        "Quick",
        "Nimble"
      ],
      "sources" : [
        "CSV/CSVExample.swift",
        "CSV/CSVPerformance.swift",
        "CSV/CSVTests.swift",
        "Core/CharacterParsersTests.swift",
        "Core/ParserCombinatorsTests.swift",
        "Core/ParserErrorTests.swift",
        "Core/Quick+Throw.swift",
        "DotStrings/DotStringsExample.swift",
        "DotStrings/DotStringsParserPerformance.swift",
        "DotStrings/DotStringsParserTests.swift"
      ],
      "target_dependencies" : [
        "Sparse"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Sparse",
      "module_type" : "SwiftTarget",
      "name" : "Sparse",
      "path" : "Sources/Sparse",
      "product_memberships" : [
        "Sparse"
      ],
      "sources" : [
        "CSVParser.swift",
        "CharacterParsers.swift",
        "ContextDescribableError.swift",
        "ContextualizedError.swift",
        "DotStringsEntry.swift",
        "DotStringsParser.swift",
        "IgnoreError.swift",
        "InfiniteLoopError.swift",
        "Parser.swift",
        "ParserError.swift",
        "Parser_combinators.swift",
        "Parser_creators.swift",
        "Parser_name.swift",
        "Parser_run.swift",
        "ParsingContext.swift",
        "PositionedInput.swift",
        "Stream.swift",
        "StringParsers.swift",
        "Transforms.swift",
        "UnexpectedInputError.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
Done.