The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of Sextant, reference main (74b947), with Swift 6.1 for macOS (Xcode) using Xcode 16.3 on 2 May 2025 18:17:57 UTC.

Swift 6 data race errors: 48

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Sextant-Package -destination platform=macOS,arch=arm64 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

let kLogicalOperatorOR = Hitch("||")
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/LogicalOperator.swift:5:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let kLogicalOperatorOR = Hitch("||")
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/LogicalOperator.swift:6:5: warning: let 'kLogicalOperatorNOT' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
let kLogicalOperatorNOT = Hitch("!")
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/LogicalOperator.swift:6:5: note: add '@MainActor' to make let 'kLogicalOperatorNOT' part of global actor 'MainActor'
let kLogicalOperatorNOT = Hitch("!")
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/LogicalOperator.swift:6:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let kLogicalOperatorNOT = Hitch("!")
    ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/PatternFlags.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/PredicateContext.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalExpressionNode.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:4:13: warning: let 'relationalOperatorGTE' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorGTE = Hitch(">=")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Hitch'
import Hitch
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:4:13: note: add '@MainActor' to make let 'relationalOperatorGTE' part of global actor 'MainActor'
private let relationalOperatorGTE = Hitch(">=")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:4:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorGTE = Hitch(">=")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:5:13: warning: let 'relationalOperatorLTE' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorLTE = Hitch("<=")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:5:13: note: add '@MainActor' to make let 'relationalOperatorLTE' part of global actor 'MainActor'
private let relationalOperatorLTE = Hitch("<=")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:5:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorLTE = Hitch("<=")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:6:13: warning: let 'relationalOperatorEQ' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorEQ = Hitch("==")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:6:13: note: add '@MainActor' to make let 'relationalOperatorEQ' part of global actor 'MainActor'
private let relationalOperatorEQ = Hitch("==")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:6:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorEQ = Hitch("==")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:8:13: warning: let 'relationalOperatorTSEQ' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorTSEQ = Hitch("===")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:8:13: note: add '@MainActor' to make let 'relationalOperatorTSEQ' part of global actor 'MainActor'
private let relationalOperatorTSEQ = Hitch("===")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:8:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorTSEQ = Hitch("===")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:9:13: warning: let 'relationalOperatorNE' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorNE = Hitch("!=")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:9:13: note: add '@MainActor' to make let 'relationalOperatorNE' part of global actor 'MainActor'
private let relationalOperatorNE = Hitch("!=")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:9:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorNE = Hitch("!=")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:11:13: warning: let 'relationalOperatorTSNE' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorTSNE = Hitch("!==")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:11:13: note: add '@MainActor' to make let 'relationalOperatorTSNE' part of global actor 'MainActor'
private let relationalOperatorTSNE = Hitch("!==")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:11:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorTSNE = Hitch("!==")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:12:13: warning: let 'relationalOperatorLT' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorLT = Hitch("<")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:12:13: note: add '@MainActor' to make let 'relationalOperatorLT' part of global actor 'MainActor'
private let relationalOperatorLT = Hitch("<")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:12:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorLT = Hitch("<")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:13:13: warning: let 'relationalOperatorGT' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorGT = Hitch(">")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:13:13: note: add '@MainActor' to make let 'relationalOperatorGT' part of global actor 'MainActor'
private let relationalOperatorGT = Hitch(">")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:13:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorGT = Hitch(">")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:14:13: warning: let 'relationalOperatorREGEX' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorREGEX = Hitch("=~")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:14:13: note: add '@MainActor' to make let 'relationalOperatorREGEX' part of global actor 'MainActor'
private let relationalOperatorREGEX = Hitch("=~")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:14:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorREGEX = Hitch("=~")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:15:13: warning: let 'relationalOperatorNIN' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorNIN = Hitch("NIN")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:15:13: note: add '@MainActor' to make let 'relationalOperatorNIN' part of global actor 'MainActor'
private let relationalOperatorNIN = Hitch("NIN")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:15:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorNIN = Hitch("NIN")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:16:13: warning: let 'relationalOperatorIN' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorIN = Hitch("IN")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:16:13: note: add '@MainActor' to make let 'relationalOperatorIN' part of global actor 'MainActor'
private let relationalOperatorIN = Hitch("IN")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:16:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorIN = Hitch("IN")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:17:13: warning: let 'relationalOperatorCONTAINS' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorCONTAINS = Hitch("CONTAINS")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:17:13: note: add '@MainActor' to make let 'relationalOperatorCONTAINS' part of global actor 'MainActor'
private let relationalOperatorCONTAINS = Hitch("CONTAINS")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:17:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorCONTAINS = Hitch("CONTAINS")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:18:13: warning: let 'relationalOperatorALL' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorALL = Hitch("ALL")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:18:13: note: add '@MainActor' to make let 'relationalOperatorALL' part of global actor 'MainActor'
private let relationalOperatorALL = Hitch("ALL")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:18:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorALL = Hitch("ALL")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:19:13: warning: let 'relationalOperatorSIZE' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorSIZE = Hitch("SIZE")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:19:13: note: add '@MainActor' to make let 'relationalOperatorSIZE' part of global actor 'MainActor'
private let relationalOperatorSIZE = Hitch("SIZE")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:19:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorSIZE = Hitch("SIZE")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:20:13: warning: let 'relationalOperatorEXISTS' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorEXISTS = Hitch("EXISTS")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:20:13: note: add '@MainActor' to make let 'relationalOperatorEXISTS' part of global actor 'MainActor'
private let relationalOperatorEXISTS = Hitch("EXISTS")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:20:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorEXISTS = Hitch("EXISTS")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:21:13: warning: let 'relationalOperatorTYPE' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorTYPE = Hitch("TYPE")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:21:13: note: add '@MainActor' to make let 'relationalOperatorTYPE' part of global actor 'MainActor'
private let relationalOperatorTYPE = Hitch("TYPE")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:21:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorTYPE = Hitch("TYPE")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:23:13: warning: let 'relationalOperatorEMPTY' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorEMPTY = Hitch("EMPTY")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:23:13: note: add '@MainActor' to make let 'relationalOperatorEMPTY' part of global actor 'MainActor'
private let relationalOperatorEMPTY = Hitch("EMPTY")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:23:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorEMPTY = Hitch("EMPTY")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:24:13: warning: let 'relationalOperatorSUBSETOF' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorSUBSETOF = Hitch("SUBSETOF")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:24:13: note: add '@MainActor' to make let 'relationalOperatorSUBSETOF' part of global actor 'MainActor'
private let relationalOperatorSUBSETOF = Hitch("SUBSETOF")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:24:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorSUBSETOF = Hitch("SUBSETOF")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:25:13: warning: let 'relationalOperatorANYOF' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorANYOF = Hitch("ANYOF")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:25:13: note: add '@MainActor' to make let 'relationalOperatorANYOF' part of global actor 'MainActor'
private let relationalOperatorANYOF = Hitch("ANYOF")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:25:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorANYOF = Hitch("ANYOF")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:26:13: warning: let 'relationalOperatorNONEOF' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorNONEOF = Hitch("NONEOF")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:26:13: note: add '@MainActor' to make let 'relationalOperatorNONEOF' part of global actor 'MainActor'
private let relationalOperatorNONEOF = Hitch("NONEOF")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:26:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorNONEOF = Hitch("NONEOF")
            ^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ PatternNode.swift,\ StringNode.swift,\ ValueNode.swift,\ ArrayIndexOperation.swift,\ ArraySliceOperation.swift,\ Parameter.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/PatternNode.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/StringNode.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Operation/ArrayIndexOperation.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Operation/ArraySliceOperation.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Parameter.swift (in target 'Sextant' from project 'Sextant')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/PatternNode.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/StringNode.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:4:13: warning: let 'boolHitch' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let boolHitch = Hitch("bool")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Hitch'
import Hitch
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:4:13: note: add '@MainActor' to make let 'boolHitch' part of global actor 'MainActor'
private let boolHitch = Hitch("bool")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:4:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let boolHitch = Hitch("bool")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:5:13: warning: let 'jsonHitch' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let jsonHitch = Hitch("json")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:5:13: note: add '@MainActor' to make let 'jsonHitch' part of global actor 'MainActor'
private let jsonHitch = Hitch("json")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:5:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let jsonHitch = Hitch("json")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:6:13: warning: let 'numberHitch' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let numberHitch = Hitch("number")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:6:13: note: add '@MainActor' to make let 'numberHitch' part of global actor 'MainActor'
private let numberHitch = Hitch("number")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:6:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let numberHitch = Hitch("number")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:7:13: warning: let 'pathHitch' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let pathHitch = Hitch("path")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:7:13: note: add '@MainActor' to make let 'pathHitch' part of global actor 'MainActor'
private let pathHitch = Hitch("path")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:7:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let pathHitch = Hitch("path")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:8:13: warning: let 'patternHitch' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let patternHitch = Hitch("pattern")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:8:13: note: add '@MainActor' to make let 'patternHitch' part of global actor 'MainActor'
private let patternHitch = Hitch("pattern")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:8:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let patternHitch = Hitch("pattern")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:9:13: warning: let 'stringHitch' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let stringHitch = Hitch("string")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:9:13: note: add '@MainActor' to make let 'stringHitch' part of global actor 'MainActor'
private let stringHitch = Hitch("string")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:9:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let stringHitch = Hitch("string")
            ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Operation/ArrayIndexOperation.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Operation/ArraySliceOperation.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal arm64 Compiling\ BooleanNode.swift,\ ExpressionNode.swift,\ JsonNode.swift,\ NullNode.swift,\ NumberNode.swift,\ PathNode.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/BooleanNode.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ExpressionNode.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/JsonNode.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/NullNode.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/NumberNode.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/PathNode.swift (in target 'Sextant' from project 'Sextant')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/BooleanNode.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ExpressionNode.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/JsonNode.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/NullNode.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/NumberNode.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/PathNode.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ CharacterIndex.swift,\ EvaluationContext.swift,\ CompiledFilter.swift,\ Evaluator.swift,\ Filter.swift,\ FilterCompiler.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/CharacterIndex.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/EvaluationContext.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/CompiledFilter.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/Evaluator.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/Filter.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/FilterCompiler.swift (in target 'Sextant' from project 'Sextant')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/CharacterIndex.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/CompiledFilter.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/Evaluator.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/FilterCompiler.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ FilterPathTokenPredicate.swift,\ PredicatePathToken.swift,\ PropertyPathTokenPredicate.swift,\ ScanPredicate.swift,\ WildcardPathTokenPredicate.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/ScanPredicate/FilterPathTokenPredicate.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/ScanPredicate/PredicatePathToken.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/ScanPredicate/PropertyPathTokenPredicate.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/ScanPredicate/ScanPredicate.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/ScanPredicate/WildcardPathTokenPredicate.swift (in target 'Sextant' from project 'Sextant')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/ScanPredicate/FilterPathTokenPredicate.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/ScanPredicate/PredicatePathToken.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/ScanPredicate/PropertyPathTokenPredicate.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/ScanPredicate/WildcardPathTokenPredicate.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal arm64 Emitting\ module\ for\ Sextant (in target 'Sextant' from project 'Sextant')
EmitSwiftModule normal arm64 (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/LogicalOperator.swift:4:5: warning: let 'kLogicalOperatorAND' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
let kLogicalOperatorAND = Hitch("&&")
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/LogicalOperator.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Hitch'
import Hitch
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/LogicalOperator.swift:4:5: note: add '@MainActor' to make let 'kLogicalOperatorAND' part of global actor 'MainActor'
let kLogicalOperatorAND = Hitch("&&")
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/LogicalOperator.swift:4:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let kLogicalOperatorAND = Hitch("&&")
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/LogicalOperator.swift:5:5: warning: let 'kLogicalOperatorOR' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
let kLogicalOperatorOR = Hitch("||")
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/LogicalOperator.swift:5:5: note: add '@MainActor' to make let 'kLogicalOperatorOR' part of global actor 'MainActor'
let kLogicalOperatorOR = Hitch("||")
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/LogicalOperator.swift:5:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let kLogicalOperatorOR = Hitch("||")
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/LogicalOperator.swift:6:5: warning: let 'kLogicalOperatorNOT' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
let kLogicalOperatorNOT = Hitch("!")
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/LogicalOperator.swift:6:5: note: add '@MainActor' to make let 'kLogicalOperatorNOT' part of global actor 'MainActor'
let kLogicalOperatorNOT = Hitch("!")
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/LogicalOperator.swift:6:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let kLogicalOperatorNOT = Hitch("!")
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:4:13: warning: let 'relationalOperatorGTE' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorGTE = Hitch(">=")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Hitch'
import Hitch
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:4:13: note: add '@MainActor' to make let 'relationalOperatorGTE' part of global actor 'MainActor'
private let relationalOperatorGTE = Hitch(">=")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:4:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorGTE = Hitch(">=")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:5:13: warning: let 'relationalOperatorLTE' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorLTE = Hitch("<=")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:5:13: note: add '@MainActor' to make let 'relationalOperatorLTE' part of global actor 'MainActor'
private let relationalOperatorLTE = Hitch("<=")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:5:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorLTE = Hitch("<=")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:6:13: warning: let 'relationalOperatorEQ' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorEQ = Hitch("==")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:6:13: note: add '@MainActor' to make let 'relationalOperatorEQ' part of global actor 'MainActor'
private let relationalOperatorEQ = Hitch("==")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:6:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorEQ = Hitch("==")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:8:13: warning: let 'relationalOperatorTSEQ' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorTSEQ = Hitch("===")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:8:13: note: add '@MainActor' to make let 'relationalOperatorTSEQ' part of global actor 'MainActor'
private let relationalOperatorTSEQ = Hitch("===")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:8:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorTSEQ = Hitch("===")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:9:13: warning: let 'relationalOperatorNE' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorNE = Hitch("!=")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:9:13: note: add '@MainActor' to make let 'relationalOperatorNE' part of global actor 'MainActor'
private let relationalOperatorNE = Hitch("!=")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:9:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorNE = Hitch("!=")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:11:13: warning: let 'relationalOperatorTSNE' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorTSNE = Hitch("!==")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:11:13: note: add '@MainActor' to make let 'relationalOperatorTSNE' part of global actor 'MainActor'
private let relationalOperatorTSNE = Hitch("!==")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:11:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorTSNE = Hitch("!==")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:12:13: warning: let 'relationalOperatorLT' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorLT = Hitch("<")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:12:13: note: add '@MainActor' to make let 'relationalOperatorLT' part of global actor 'MainActor'
private let relationalOperatorLT = Hitch("<")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:12:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorLT = Hitch("<")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:13:13: warning: let 'relationalOperatorGT' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorGT = Hitch(">")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:13:13: note: add '@MainActor' to make let 'relationalOperatorGT' part of global actor 'MainActor'
private let relationalOperatorGT = Hitch(">")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:13:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorGT = Hitch(">")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:14:13: warning: let 'relationalOperatorREGEX' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorREGEX = Hitch("=~")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:14:13: note: add '@MainActor' to make let 'relationalOperatorREGEX' part of global actor 'MainActor'
private let relationalOperatorREGEX = Hitch("=~")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:14:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorREGEX = Hitch("=~")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:15:13: warning: let 'relationalOperatorNIN' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorNIN = Hitch("NIN")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:15:13: note: add '@MainActor' to make let 'relationalOperatorNIN' part of global actor 'MainActor'
private let relationalOperatorNIN = Hitch("NIN")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:15:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorNIN = Hitch("NIN")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:16:13: warning: let 'relationalOperatorIN' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorIN = Hitch("IN")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:16:13: note: add '@MainActor' to make let 'relationalOperatorIN' part of global actor 'MainActor'
private let relationalOperatorIN = Hitch("IN")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:16:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorIN = Hitch("IN")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:17:13: warning: let 'relationalOperatorCONTAINS' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorCONTAINS = Hitch("CONTAINS")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:17:13: note: add '@MainActor' to make let 'relationalOperatorCONTAINS' part of global actor 'MainActor'
private let relationalOperatorCONTAINS = Hitch("CONTAINS")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:17:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorCONTAINS = Hitch("CONTAINS")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:18:13: warning: let 'relationalOperatorALL' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorALL = Hitch("ALL")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:18:13: note: add '@MainActor' to make let 'relationalOperatorALL' part of global actor 'MainActor'
private let relationalOperatorALL = Hitch("ALL")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:18:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorALL = Hitch("ALL")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:19:13: warning: let 'relationalOperatorSIZE' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorSIZE = Hitch("SIZE")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:19:13: note: add '@MainActor' to make let 'relationalOperatorSIZE' part of global actor 'MainActor'
private let relationalOperatorSIZE = Hitch("SIZE")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:19:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorSIZE = Hitch("SIZE")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:20:13: warning: let 'relationalOperatorEXISTS' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorEXISTS = Hitch("EXISTS")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:20:13: note: add '@MainActor' to make let 'relationalOperatorEXISTS' part of global actor 'MainActor'
private let relationalOperatorEXISTS = Hitch("EXISTS")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:20:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorEXISTS = Hitch("EXISTS")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:21:13: warning: let 'relationalOperatorTYPE' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorTYPE = Hitch("TYPE")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:21:13: note: add '@MainActor' to make let 'relationalOperatorTYPE' part of global actor 'MainActor'
private let relationalOperatorTYPE = Hitch("TYPE")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:21:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorTYPE = Hitch("TYPE")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:23:13: warning: let 'relationalOperatorEMPTY' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorEMPTY = Hitch("EMPTY")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:23:13: note: add '@MainActor' to make let 'relationalOperatorEMPTY' part of global actor 'MainActor'
private let relationalOperatorEMPTY = Hitch("EMPTY")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:23:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorEMPTY = Hitch("EMPTY")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:24:13: warning: let 'relationalOperatorSUBSETOF' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorSUBSETOF = Hitch("SUBSETOF")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:24:13: note: add '@MainActor' to make let 'relationalOperatorSUBSETOF' part of global actor 'MainActor'
private let relationalOperatorSUBSETOF = Hitch("SUBSETOF")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:24:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorSUBSETOF = Hitch("SUBSETOF")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:25:13: warning: let 'relationalOperatorANYOF' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorANYOF = Hitch("ANYOF")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:25:13: note: add '@MainActor' to make let 'relationalOperatorANYOF' part of global actor 'MainActor'
private let relationalOperatorANYOF = Hitch("ANYOF")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:25:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorANYOF = Hitch("ANYOF")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:26:13: warning: let 'relationalOperatorNONEOF' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let relationalOperatorNONEOF = Hitch("NONEOF")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:26:13: note: add '@MainActor' to make let 'relationalOperatorNONEOF' part of global actor 'MainActor'
private let relationalOperatorNONEOF = Hitch("NONEOF")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/RelationalOperator.swift:26:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let relationalOperatorNONEOF = Hitch("NONEOF")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:4:13: warning: let 'boolHitch' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let boolHitch = Hitch("bool")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Hitch'
import Hitch
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:4:13: note: add '@MainActor' to make let 'boolHitch' part of global actor 'MainActor'
private let boolHitch = Hitch("bool")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:4:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let boolHitch = Hitch("bool")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:5:13: warning: let 'jsonHitch' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let jsonHitch = Hitch("json")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:5:13: note: add '@MainActor' to make let 'jsonHitch' part of global actor 'MainActor'
private let jsonHitch = Hitch("json")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:5:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let jsonHitch = Hitch("json")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:6:13: warning: let 'numberHitch' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let numberHitch = Hitch("number")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:6:13: note: add '@MainActor' to make let 'numberHitch' part of global actor 'MainActor'
private let numberHitch = Hitch("number")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:6:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let numberHitch = Hitch("number")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:7:13: warning: let 'pathHitch' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let pathHitch = Hitch("path")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:7:13: note: add '@MainActor' to make let 'pathHitch' part of global actor 'MainActor'
private let pathHitch = Hitch("path")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:7:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let pathHitch = Hitch("path")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:8:13: warning: let 'patternHitch' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let patternHitch = Hitch("pattern")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:8:13: note: add '@MainActor' to make let 'patternHitch' part of global actor 'MainActor'
private let patternHitch = Hitch("pattern")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:8:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let patternHitch = Hitch("pattern")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:9:13: warning: let 'stringHitch' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let stringHitch = Hitch("string")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:9:13: note: add '@MainActor' to make let 'stringHitch' part of global actor 'MainActor'
private let stringHitch = Hitch("string")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Filter/ValueNode/ValueNode.swift:9:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let stringHitch = Hitch("string")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Path/NullPath.swift:20:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NullPath' may have shared mutable state; this is an error in the Swift 6 language mode
    static let shared = NullPath()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Path/NullPath.swift:6:8: note: consider making struct 'NullPath' conform to the 'Sendable' protocol
struct NullPath: Path {
       ^
                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Path/NullPath.swift:20:16: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    static let shared = NullPath()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/Path/NullPath.swift:20:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let shared = NullPath()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/FunctionPathToken.swift:5:13: warning: let 'hitchDot' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let hitchDot = Hitch(".")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/FunctionPathToken.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Hitch'
import Hitch
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/FunctionPathToken.swift:5:13: note: add '@MainActor' to make let 'hitchDot' part of global actor 'MainActor'
private let hitchDot = Hitch(".")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/FunctionPathToken.swift:5:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let hitchDot = Hitch(".")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:7:13: warning: let 'functionAVG' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let functionAVG = Hitch("avg")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Hitch'
import Hitch
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:7:13: note: add '@MainActor' to make let 'functionAVG' part of global actor 'MainActor'
private let functionAVG = Hitch("avg")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:7:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let functionAVG = Hitch("avg")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:8:13: warning: let 'functionSTDDEV' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let functionSTDDEV = Hitch("stddev")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:8:13: note: add '@MainActor' to make let 'functionSTDDEV' part of global actor 'MainActor'
private let functionSTDDEV = Hitch("stddev")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:8:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let functionSTDDEV = Hitch("stddev")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:9:13: warning: let 'functionSUM' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let functionSUM = Hitch("sum")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:9:13: note: add '@MainActor' to make let 'functionSUM' part of global actor 'MainActor'
private let functionSUM = Hitch("sum")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:9:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let functionSUM = Hitch("sum")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:10:13: warning: let 'functionMIN' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let functionMIN = Hitch("min")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:10:13: note: add '@MainActor' to make let 'functionMIN' part of global actor 'MainActor'
private let functionMIN = Hitch("min")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:10:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let functionMIN = Hitch("min")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:11:13: warning: let 'functionMAX' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let functionMAX = Hitch("max")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:11:13: note: add '@MainActor' to make let 'functionMAX' part of global actor 'MainActor'
private let functionMAX = Hitch("max")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:11:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let functionMAX = Hitch("max")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:12:13: warning: let 'functionCONCAT' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let functionCONCAT = Hitch("concat")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:12:13: note: add '@MainActor' to make let 'functionCONCAT' part of global actor 'MainActor'
private let functionCONCAT = Hitch("concat")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:12:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let functionCONCAT = Hitch("concat")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:13:13: warning: let 'functionLENGTH' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let functionLENGTH = Hitch("length")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:13:13: note: add '@MainActor' to make let 'functionLENGTH' part of global actor 'MainActor'
private let functionLENGTH = Hitch("length")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:13:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let functionLENGTH = Hitch("length")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:14:13: warning: let 'functionSIZE' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let functionSIZE = Hitch("size")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:14:13: note: add '@MainActor' to make let 'functionSIZE' part of global actor 'MainActor'
private let functionSIZE = Hitch("size")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:14:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let functionSIZE = Hitch("size")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:15:13: warning: let 'functionAPPEND' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let functionAPPEND = Hitch("append")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:15:13: note: add '@MainActor' to make let 'functionAPPEND' part of global actor 'MainActor'
private let functionAPPEND = Hitch("append")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:15:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let functionAPPEND = Hitch("append")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:11:5: warning: let 'nullHitch' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
let nullHitch = Hitch("null")
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Hitch'
import Hitch
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:11:5: note: add '@MainActor' to make let 'nullHitch' part of global actor 'MainActor'
let nullHitch = Hitch("null")
    ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:11:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let nullHitch = Hitch("null")
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:14:5: warning: let 'trueHitch' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
let trueHitch = Hitch("true")
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:14:5: note: add '@MainActor' to make let 'trueHitch' part of global actor 'MainActor'
let trueHitch = Hitch("true")
    ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:14:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let trueHitch = Hitch("true")
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:17:5: warning: let 'falseHitch' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
let falseHitch = Hitch("false")
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:17:5: note: add '@MainActor' to make let 'falseHitch' part of global actor 'MainActor'
let falseHitch = Hitch("false")
    ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:17:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let falseHitch = Hitch("false")
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:135:23: warning: static property 'exportPaths' is not concurrency-safe because non-'Sendable' type 'EvaluationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let exportPaths = EvaluationOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:128:8: note: consider making struct 'EvaluationOptions' conform to the 'Sendable' protocol
struct EvaluationOptions: OptionSet {
       ^
                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:135:23: note: add '@MainActor' to make static property 'exportPaths' part of global actor 'MainActor'
    public static let exportPaths = EvaluationOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:135:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let exportPaths = EvaluationOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:136:23: warning: static property 'exportValues' is not concurrency-safe because non-'Sendable' type 'EvaluationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let exportValues = EvaluationOptions(rawValue: 1 << 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:128:8: note: consider making struct 'EvaluationOptions' conform to the 'Sendable' protocol
struct EvaluationOptions: OptionSet {
       ^
                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:136:23: note: add '@MainActor' to make static property 'exportValues' part of global actor 'MainActor'
    public static let exportValues = EvaluationOptions(rawValue: 1 << 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:136:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let exportValues = EvaluationOptions(rawValue: 1 << 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:137:23: warning: static property 'updateOperation' is not concurrency-safe because non-'Sendable' type 'EvaluationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let updateOperation = EvaluationOptions(rawValue: 1 << 2)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:128:8: note: consider making struct 'EvaluationOptions' conform to the 'Sendable' protocol
struct EvaluationOptions: OptionSet {
       ^
                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:137:23: note: add '@MainActor' to make static property 'updateOperation' part of global actor 'MainActor'
    public static let updateOperation = EvaluationOptions(rawValue: 1 << 2)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:137:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let updateOperation = EvaluationOptions(rawValue: 1 << 2)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:139:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'EvaluationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default`: EvaluationOptions = [.exportValues]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:128:8: note: consider making struct 'EvaluationOptions' conform to the 'Sendable' protocol
struct EvaluationOptions: OptionSet {
       ^
                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:139:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    public static let `default`: EvaluationOptions = [.exportValues]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:139:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default`: EvaluationOptions = [.exportValues]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:191:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Sextant' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let shared = Sextant()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:190:20: note: class 'Sextant' does not conform to the 'Sendable' protocol
public final class Sextant {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:191:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    public static let shared = Sextant()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:191:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let shared = Sextant()
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Sextant+Internal.swift,\ Sextant+Many.swift,\ Sextant+Single.swift,\ Sextant+Update.swift,\ Sextant.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant+Internal.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant+Many.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant+Single.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant+Update.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift (in target 'Sextant' from project 'Sextant')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant+Internal.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

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

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

/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:11:5: warning: let 'nullHitch' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
let nullHitch = Hitch("null")
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Hitch'
import Hitch
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:11:5: note: add '@MainActor' to make let 'nullHitch' part of global actor 'MainActor'
let nullHitch = Hitch("null")
    ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:11:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let nullHitch = Hitch("null")
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:14:5: warning: let 'trueHitch' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
let trueHitch = Hitch("true")
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:14:5: note: add '@MainActor' to make let 'trueHitch' part of global actor 'MainActor'
let trueHitch = Hitch("true")
    ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:14:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let trueHitch = Hitch("true")
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:17:5: warning: let 'falseHitch' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
let falseHitch = Hitch("false")
    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:17:5: note: add '@MainActor' to make let 'falseHitch' part of global actor 'MainActor'
let falseHitch = Hitch("false")
    ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:17:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let falseHitch = Hitch("false")
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:135:23: warning: static property 'exportPaths' is not concurrency-safe because non-'Sendable' type 'EvaluationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let exportPaths = EvaluationOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:128:8: note: consider making struct 'EvaluationOptions' conform to the 'Sendable' protocol
struct EvaluationOptions: OptionSet {
       ^
                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:135:23: note: add '@MainActor' to make static property 'exportPaths' part of global actor 'MainActor'
    public static let exportPaths = EvaluationOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:135:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let exportPaths = EvaluationOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:136:23: warning: static property 'exportValues' is not concurrency-safe because non-'Sendable' type 'EvaluationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let exportValues = EvaluationOptions(rawValue: 1 << 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:128:8: note: consider making struct 'EvaluationOptions' conform to the 'Sendable' protocol
struct EvaluationOptions: OptionSet {
       ^
                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:136:23: note: add '@MainActor' to make static property 'exportValues' part of global actor 'MainActor'
    public static let exportValues = EvaluationOptions(rawValue: 1 << 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:136:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let exportValues = EvaluationOptions(rawValue: 1 << 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:137:23: warning: static property 'updateOperation' is not concurrency-safe because non-'Sendable' type 'EvaluationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let updateOperation = EvaluationOptions(rawValue: 1 << 2)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:128:8: note: consider making struct 'EvaluationOptions' conform to the 'Sendable' protocol
struct EvaluationOptions: OptionSet {
       ^
                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:137:23: note: add '@MainActor' to make static property 'updateOperation' part of global actor 'MainActor'
    public static let updateOperation = EvaluationOptions(rawValue: 1 << 2)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:137:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let updateOperation = EvaluationOptions(rawValue: 1 << 2)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:139:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'EvaluationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default`: EvaluationOptions = [.exportValues]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:128:8: note: consider making struct 'EvaluationOptions' conform to the 'Sendable' protocol
struct EvaluationOptions: OptionSet {
       ^
                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:139:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    public static let `default`: EvaluationOptions = [.exportValues]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:139:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default`: EvaluationOptions = [.exportValues]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:191:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Sextant' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let shared = Sextant()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:190:20: note: class 'Sextant' does not conform to the 'Sendable' protocol
public final class Sextant {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:191:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    public static let shared = Sextant()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Sextant.swift:191:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let shared = Sextant()
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling Spanker.swift (in target 'Spanker' from project 'Spanker')
SwiftDriver\ Compilation Spanker normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Spanker' from project 'Spanker')
    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 Spanker -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Spanker.build/Debug/Spanker.build/Objects-normal/arm64/Spanker.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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -suppress-warnings -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 -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Spanker.build/Debug/Spanker.build/Objects-normal/arm64/Spanker-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/Spanker.build/Debug/Spanker.build/Objects-normal/arm64/Spanker.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/Spanker.build/Debug/Spanker.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Spanker.build/Debug/Spanker.build/Objects-normal/arm64/Spanker_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Spanker.build/Debug/Spanker.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Spanker.build/Debug/Spanker.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Spanker.build/Debug/Spanker.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/Spanker.build/Debug/Spanker.build/Objects-normal/arm64/Spanker-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling FilterPathTokenPredicate.swift, PredicatePathToken.swift, PropertyPathTokenPredicate.swift, ScanPredicate.swift, WildcardPathTokenPredicate.swift (in target 'Sextant' from project 'Sextant')
SwiftCompile normal arm64 Compiling\ PathFunction.swift,\ PathToken+Spanker.swift,\ PathToken.swift,\ PropertyPathToken.swift,\ RootPathToken.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathToken+Spanker.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathToken.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PropertyPathToken.swift /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/RootPathToken.swift (in target 'Sextant' from project 'Sextant')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:7:13: warning: let 'functionAVG' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let functionAVG = Hitch("avg")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Hitch'
import Hitch
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:7:13: note: add '@MainActor' to make let 'functionAVG' part of global actor 'MainActor'
private let functionAVG = Hitch("avg")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:7:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let functionAVG = Hitch("avg")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:8:13: warning: let 'functionSTDDEV' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let functionSTDDEV = Hitch("stddev")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:8:13: note: add '@MainActor' to make let 'functionSTDDEV' part of global actor 'MainActor'
private let functionSTDDEV = Hitch("stddev")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:8:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let functionSTDDEV = Hitch("stddev")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:9:13: warning: let 'functionSUM' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let functionSUM = Hitch("sum")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:9:13: note: add '@MainActor' to make let 'functionSUM' part of global actor 'MainActor'
private let functionSUM = Hitch("sum")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:9:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let functionSUM = Hitch("sum")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:10:13: warning: let 'functionMIN' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let functionMIN = Hitch("min")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:10:13: note: add '@MainActor' to make let 'functionMIN' part of global actor 'MainActor'
private let functionMIN = Hitch("min")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:10:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let functionMIN = Hitch("min")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:11:13: warning: let 'functionMAX' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let functionMAX = Hitch("max")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:11:13: note: add '@MainActor' to make let 'functionMAX' part of global actor 'MainActor'
private let functionMAX = Hitch("max")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:11:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let functionMAX = Hitch("max")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:12:13: warning: let 'functionCONCAT' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let functionCONCAT = Hitch("concat")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:12:13: note: add '@MainActor' to make let 'functionCONCAT' part of global actor 'MainActor'
private let functionCONCAT = Hitch("concat")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:12:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let functionCONCAT = Hitch("concat")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:13:13: warning: let 'functionLENGTH' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let functionLENGTH = Hitch("length")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:13:13: note: add '@MainActor' to make let 'functionLENGTH' part of global actor 'MainActor'
private let functionLENGTH = Hitch("length")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:13:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let functionLENGTH = Hitch("length")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:14:13: warning: let 'functionSIZE' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let functionSIZE = Hitch("size")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:14:13: note: add '@MainActor' to make let 'functionSIZE' part of global actor 'MainActor'
private let functionSIZE = Hitch("size")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:14:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let functionSIZE = Hitch("size")
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:15:13: warning: let 'functionAPPEND' is not concurrency-safe because non-'Sendable' type 'Hitch' may have shared mutable state; this is an error in the Swift 6 language mode
private let functionAPPEND = Hitch("append")
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Hitch/Sources/Hitch/Hitch.swift:35:20: note: class 'Hitch' does not conform to the 'Sendable' protocol
public final class Hitch: NSObject, Hitchable, ExpressibleByStringLiteral, Sequence, Comparable, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:15:13: note: add '@MainActor' to make let 'functionAPPEND' part of global actor 'MainActor'
private let functionAPPEND = Hitch("append")
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathFunction.swift:15:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let functionAPPEND = Hitch("append")
            ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PathToken+Spanker.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/PropertyPathToken.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Sextant/Internal/PathToken/RootPathToken.swift (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling ScanPathToken+Spanker.swift, ScanPathToken.swift, WildcardPathToken.swift, ArrayPathTokenPredicate.swift, FakePredicate.swift (in target 'Sextant' from project 'Sextant')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Spanker.o normal (in target 'Spanker' from project 'Spanker')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Spanker
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.13 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Spanker.build/Debug/Spanker.build/Objects-normal/arm64/Spanker.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Spanker.build/Debug/Spanker.build/Objects-normal/arm64/Spanker_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Spanker.build/Debug/Spanker.build/Objects-normal/arm64/Spanker_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Spanker.build/Debug/Spanker.build/Objects-normal/arm64/Spanker.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Spanker.o
ExtractAppIntentsMetadata (in target 'Spanker' from project 'Spanker')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Spanker
    /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 Spanker --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.13 --bundle-identifier spanker.Spanker --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Spanker.appintents --target-triple arm64-apple-macos10.13 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Spanker.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Spanker.build/Debug/Spanker.build/Objects-normal/arm64/Spanker_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Spanker.build/Debug/Spanker.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Spanker.build/Debug/Spanker.build/Objects-normal/arm64/Spanker.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Spanker.build/Debug/Spanker.build/Spanker.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Spanker.build/Debug/Spanker.build/Spanker.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Spanker.build/Debug/Spanker.build/Objects-normal/arm64/Spanker.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-05-02 11:17:44.121 appintentsmetadataprocessor[917:4915] Starting appintentsmetadataprocessor export
2025-05-02 11:17:44.167 appintentsmetadataprocessor[917:4915] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling BooleanNode.swift, ExpressionNode.swift, JsonNode.swift, NullNode.swift, NumberNode.swift, PathNode.swift (in target 'Sextant' from project 'Sextant')
SwiftDriverJobDiscovery normal arm64 Compiling LogicalExpressionNode.swift, LogicalOperator.swift, PatternFlags.swift, PredicateContext.swift, RelationalExpressionNode.swift, RelationalOperator.swift (in target 'Sextant' from project 'Sextant')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Spanker.o (in target 'Spanker' from project 'Spanker')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Spanker
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Spanker.o
SwiftDriverJobDiscovery normal arm64 Compiling PatternNode.swift, StringNode.swift, ValueNode.swift, ArrayIndexOperation.swift, ArraySliceOperation.swift, Parameter.swift (in target 'Sextant' from project 'Sextant')
SwiftDriverJobDiscovery normal arm64 Compiling RootPath.swift, ArrayIndexToken.swift, ArrayPathToken.swift, ArraySliceToken.swift, FunctionPathToken.swift, PathFunction+Spanker.swift (in target 'Sextant' from project 'Sextant')
SwiftDriverJobDiscovery normal arm64 Compiling ArrayIndexPath.swift, CompiledPath.swift, NullPath.swift, ObjectPropertyPath.swift, Path.swift, PathCompiler.swift (in target 'Sextant' from project 'Sextant')
SwiftDriverJobDiscovery normal arm64 Compiling CharacterIndex.swift, EvaluationContext.swift, CompiledFilter.swift, Evaluator.swift, Filter.swift, FilterCompiler.swift (in target 'Sextant' from project 'Sextant')
SwiftDriverJobDiscovery normal arm64 Compiling PathFunction.swift, PathToken+Spanker.swift, PathToken.swift, PropertyPathToken.swift, RootPathToken.swift (in target 'Sextant' from project 'Sextant')
SwiftDriverJobDiscovery normal arm64 Emitting module for Sextant (in target 'Sextant' from project 'Sextant')
SwiftDriver\ Compilation\ Requirements Sextant normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Sextant' from project 'Sextant')
    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 Sextant -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant.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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant-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/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant.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/Sextant.build/Debug/Sextant.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.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/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Sextant-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant-Swift.h (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Sextant-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Sextant.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant.abi.json (in target 'Sextant' from project 'Sextant')
    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/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Sextant.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Sextant.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant.swiftmodule (in target 'Sextant' from project 'Sextant')
    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/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Sextant.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Sextant.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant.swiftdoc (in target 'Sextant' from project 'Sextant')
    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/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Sextant.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Sextant.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant.swiftsourceinfo (in target 'Sextant' from project 'Sextant')
    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/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Sextant.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriver SextantTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SextantTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/SextantTests.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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/SextantTests-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/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/SextantTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/SextantTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ FilterCompilerTest.swift,\ FilterParseTest.swift,\ FilterTest.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/FilterCompilerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/FilterParseTest.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/FilterTest.swift (in target 'SextantTests' from project 'Sextant')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/FilterCompilerTest.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/FilterParseTest.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/FilterTest.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ ArrayIndexFilterTest.swift,\ ArrayPathTokenTest.swift,\ ArraySlicingTest.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/ArrayIndexFilterTest.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/ArrayPathTokenTest.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/ArraySlicingTest.swift (in target 'SextantTests' from project 'Sextant')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/ArrayIndexFilterTest.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/ArrayPathTokenTest.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/ArraySlicingTest.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ InlineFilterTest.swift,\ JSONEntityPathFunctionTest.swift,\ JsonPathComparisonFixesTest.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/InlineFilterTest.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/JSONEntityPathFunctionTest.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/JsonPathComparisonFixesTest.swift (in target 'SextantTests' from project 'Sextant')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/InlineFilterTest.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/JSONEntityPathFunctionTest.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/JsonPathComparisonFixesTest.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ ReturnTypeTests.swift,\ ScanPathTokenTest.swift,\ ThreadedTest.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/ReturnTypeTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/ScanPathTokenTest.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/ThreadedTest.swift (in target 'SextantTests' from project 'Sextant')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/ReturnTypeTests.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/ScanPathTokenTest.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/ThreadedTest.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ UpdateTest.swift,\ Tests.swift,\ TestsBase.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/UpdateTest.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Tests.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/TestsBase.swift (in target 'SextantTests' from project 'Sextant')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/UpdateTest.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Tests.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/TestsBase.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal arm64 Emitting\ module\ for\ SextantTests (in target 'SextantTests' from project 'Sextant')
EmitSwiftModule normal arm64 (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ ComplianceTest.swift,\ DeepScanTest.swift,\ ExamplesTest.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/ComplianceTest.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/DeepScanTest.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/ExamplesTest.swift (in target 'SextantTests' from project 'Sextant')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/ComplianceTest.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/DeepScanTest.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/DeepScanTest.swift:41:15: warning: expression implicitly coerced from 'JsonArray?' (aka 'Optional<Array<Optional<Any>>>') to 'Any'
        print("{\"x\": {\"foo\": {\"bar\": 4}}, \"y\": {\"foo\": 1}}".query(values: "$..foo[?(@.bar)].bar"))
              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/DeepScanTest.swift:41:71: note: provide a default value to avoid this warning
        print("{\"x\": {\"foo\": {\"bar\": 4}}, \"y\": {\"foo\": 1}}".query(values: "$..foo[?(@.bar)].bar"))
              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                                                                                                            ?? <#default value#>
/Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/DeepScanTest.swift:41:71: note: force-unwrap the value to avoid this warning
        print("{\"x\": {\"foo\": {\"bar\": 4}}, \"y\": {\"foo\": 1}}".query(values: "$..foo[?(@.bar)].bar"))
              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                                                                                                           !
/Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/DeepScanTest.swift:41:71: note: explicitly cast to 'Any' with 'as Any' to silence this warning
        print("{\"x\": {\"foo\": {\"bar\": 4}}, \"y\": {\"foo\": 1}}".query(values: "$..foo[?(@.bar)].bar"))
              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                                                                                                            as Any
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/ExamplesTest.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ PathTokenTest.swift,\ PatternFlagTest.swift,\ PerformanceTest.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/PathTokenTest.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/PatternFlagTest.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/PerformanceTest.swift (in target 'SextantTests' from project 'Sextant')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/PathTokenTest.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/PatternFlagTest.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/PerformanceTest.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ PredicatePathTokenTest.swift,\ PropertyPathTokenTest.swift,\ RegexpEvaluatorTest.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/PredicatePathTokenTest.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/PropertyPathTokenTest.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/RegexpEvaluatorTest.swift (in target 'SextantTests' from project 'Sextant')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/PredicatePathTokenTest.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/PropertyPathTokenTest.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/RegexpEvaluatorTest.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ NullHandlingTest.swift,\ NumericPathFunctionTest.swift,\ PathCompilerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/NullHandlingTest.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/NumericPathFunctionTest.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/PathCompilerTest.swift (in target 'SextantTests' from project 'Sextant')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/NullHandlingTest.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/NumericPathFunctionTest.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/PathCompilerTest.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Sextant+Internal.swift, Sextant+Many.swift, Sextant+Single.swift, Sextant+Update.swift, Sextant.swift (in target 'Sextant' from project 'Sextant')
SwiftCompile normal arm64 Compiling\ JsonPathTest.swift,\ MultiPropTest.swift,\ NestedFunctionTest.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/JsonPathTest.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/MultiPropTest.swift /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/NestedFunctionTest.swift (in target 'SextantTests' from project 'Sextant')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/JsonPathTest.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/MultiPropTest.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SextantTests/Jayway/NestedFunctionTest.swift (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Emitting module for SextantTests (in target 'SextantTests' from project 'Sextant')
SwiftDriver\ Compilation\ Requirements SextantTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SextantTests' from project 'Sextant')
    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 SextantTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/SextantTests.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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/SextantTests-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/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/SextantTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/SextantTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling UpdateTest.swift, Tests.swift, TestsBase.swift (in target 'SextantTests' from project 'Sextant')
SwiftDriver\ Compilation Sextant normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Sextant' from project 'Sextant')
    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 Sextant -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant.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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant-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/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant.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/Sextant.build/Debug/Sextant.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.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/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant-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/Products/Debug/Sextant.o normal (in target 'Sextant' from project 'Sextant')
    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-macos10.13 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Sextant.o
SwiftDriverJobDiscovery normal arm64 Compiling NullHandlingTest.swift, NumericPathFunctionTest.swift, PathCompilerTest.swift (in target 'SextantTests' from project 'Sextant')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SextantTests.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/SextantTests.swiftmodule (in target 'SextantTests' from project 'Sextant')
    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/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/SextantTests.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SextantTests.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SextantTests.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/SextantTests.swiftdoc (in target 'SextantTests' from project 'Sextant')
    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/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/SextantTests.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SextantTests.swiftmodule/arm64-apple-macos.swiftdoc
SwiftDriverJobDiscovery normal arm64 Compiling PathTokenTest.swift, PatternFlagTest.swift, PerformanceTest.swift (in target 'SextantTests' from project 'Sextant')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SextantTests.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/SextantTests.abi.json (in target 'SextantTests' from project 'Sextant')
    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/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/SextantTests.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SextantTests.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SextantTests.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/SextantTests.swiftsourceinfo (in target 'SextantTests' from project 'Sextant')
    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/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/SextantTests.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SextantTests.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling InlineFilterTest.swift, JSONEntityPathFunctionTest.swift, JsonPathComparisonFixesTest.swift (in target 'SextantTests' from project 'Sextant')
SwiftDriverJobDiscovery normal arm64 Compiling FilterCompilerTest.swift, FilterParseTest.swift, FilterTest.swift (in target 'SextantTests' from project 'Sextant')
SwiftDriverJobDiscovery normal arm64 Compiling ArrayIndexFilterTest.swift, ArrayPathTokenTest.swift, ArraySlicingTest.swift (in target 'SextantTests' from project 'Sextant')
SwiftDriverJobDiscovery normal arm64 Compiling ReturnTypeTests.swift, ScanPathTokenTest.swift, ThreadedTest.swift (in target 'SextantTests' from project 'Sextant')
SwiftDriverJobDiscovery normal arm64 Compiling PredicatePathTokenTest.swift, PropertyPathTokenTest.swift, RegexpEvaluatorTest.swift (in target 'SextantTests' from project 'Sextant')
SwiftDriverJobDiscovery normal arm64 Compiling ComplianceTest.swift, DeepScanTest.swift, ExamplesTest.swift (in target 'SextantTests' from project 'Sextant')
SwiftDriverJobDiscovery normal arm64 Compiling JsonPathTest.swift, MultiPropTest.swift, NestedFunctionTest.swift (in target 'SextantTests' from project 'Sextant')
SwiftDriver\ Compilation SextantTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SextantTests' from project 'Sextant')
    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 SextantTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/SextantTests.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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/SextantTests-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/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/SextantTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/SextantTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
ExtractAppIntentsMetadata (in target 'Sextant' from project 'Sextant')
    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 Sextant --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.13 --bundle-identifier spi-builder-workspace.Sextant --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Sextant.appintents --target-triple arm64-apple-macos10.13 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Sextant.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.build/Sextant.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.build/Sextant.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-05-02 11:17:55.712 appintentsmetadataprocessor[932:5232] Starting appintentsmetadataprocessor export
2025-05-02 11:17:55.750 appintentsmetadataprocessor[932:5232] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Sextant.o (in target 'Sextant' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Sextant.o
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SextantTests.xctest/Contents/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/empty-SextantTests.plist (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/empty-SextantTests.plist -producttype com.apple.product-type.bundle.unit-test -expandbuildsettings -platform macosx -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SextantTests.xctest/Contents/Info.plist
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SextantTests.xctest/Contents/MacOS/SextantTests normal (in target 'SextantTests' from project 'Sextant')
    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-macos14.0 -bundle -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/SextantTests.LinkFileList -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/../Frameworks -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/SextantTests_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/SextantTests_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/SextantTests.swiftmodule -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -framework XCTest -lXCTestSwiftSupport -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SextantTests.xctest/Contents/MacOS/SextantTests -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Hitch.build/Debug/Hitch.build/Objects-normal/arm64/Hitch.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Spanker.build/Debug/Spanker.build/Objects-normal/arm64/Spanker.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Chronometer.build/Debug/Chronometer.build/Objects-normal/arm64/Chronometer.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/Sextant.build/Objects-normal/arm64/Sextant.swiftmodule
CopySwiftLibs /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SextantTests.xctest (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftStdLibTool --copy --verbose --scan-executable /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SextantTests.xctest/Contents/MacOS/SextantTests --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SextantTests.xctest/Contents/Frameworks --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SextantTests.xctest/Contents/PlugIns --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SextantTests.xctest/Contents/Library/SystemExtensions --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SextantTests.xctest/Contents/Extensions --platform macosx --toolchain /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SextantTests.xctest/Contents/Frameworks --strip-bitcode --scan-executable /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/libXCTestSwiftSupport.dylib --strip-bitcode-tool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip --emit-dependency-info /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/SwiftStdLibToolInputDependencies.dep --filter-for-swift-os
Ignoring --strip-bitcode because --sign was not passed
ExtractAppIntentsMetadata (in target 'SextantTests' from project 'Sextant')
    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 SextantTests --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 14.0 --bundle-identifier spi-builder-workspace.SextantTests --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SextantTests.xctest/Contents/Resources --target-triple arm64-apple-macos14.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SextantTests.xctest/Contents/MacOS/SextantTests --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/SextantTests_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/SextantTests.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/SextantTests.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/SextantTests.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sextant.build/Debug/SextantTests.build/Objects-normal/arm64/SextantTests.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-05-02 11:17:55.973 appintentsmetadataprocessor[935:5267] Starting appintentsmetadataprocessor export
2025-05-02 11:17:55.976 appintentsmetadataprocessor[935:5267] warning: Metadata extraction skipped. No AppIntents.framework dependency found.
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SextantTests.xctest (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SextantTests.xctest
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SextantTests.xctest (in target 'SextantTests' from project 'Sextant')
    cd /Users/admin/builder/spi-builder-workspace
    /usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SextantTests.xctest
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:9025db35291df8d3420cb3a8c70dbd1b05ee0186, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:9025db35291df8d3420cb3a8c70dbd1b05ee0186, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:9025db35291df8d3420cb3a8c70dbd1b05ee0186, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:9025db35291df8d3420cb3a8c70dbd1b05ee0186, name:My Mac }
Build complete.
{
  "dependencies" : [
    {
      "identity" : "chronometer",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.1.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/KittyMac/Chronometer.git"
    },
    {
      "identity" : "hitch",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.4.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/KittyMac/Hitch.git"
    },
    {
      "identity" : "spanker",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.2.36",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/KittyMac/Spanker.git"
    },
    {
      "identity" : "swift-argument-parser",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-argument-parser"
    }
  ],
  "manifest_display_name" : "Sextant",
  "name" : "Sextant",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.13"
    },
    {
      "name" : "ios",
      "version" : "11.0"
    }
  ],
  "products" : [
    {
      "name" : "Sextant",
      "targets" : [
        "Sextant"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SextantTests",
      "module_type" : "SwiftTarget",
      "name" : "SextantTests",
      "path" : "Tests/SextantTests",
      "sources" : [
        "Jayway/ArrayIndexFilterTest.swift",
        "Jayway/ArrayPathTokenTest.swift",
        "Jayway/ArraySlicingTest.swift",
        "Jayway/ComplianceTest.swift",
        "Jayway/DeepScanTest.swift",
        "Jayway/ExamplesTest.swift",
        "Jayway/FilterCompilerTest.swift",
        "Jayway/FilterParseTest.swift",
        "Jayway/FilterTest.swift",
        "Jayway/InlineFilterTest.swift",
        "Jayway/JSONEntityPathFunctionTest.swift",
        "Jayway/JsonPathComparisonFixesTest.swift",
        "Jayway/JsonPathTest.swift",
        "Jayway/MultiPropTest.swift",
        "Jayway/NestedFunctionTest.swift",
        "Jayway/NullHandlingTest.swift",
        "Jayway/NumericPathFunctionTest.swift",
        "Jayway/PathCompilerTest.swift",
        "Jayway/PathTokenTest.swift",
        "Jayway/PatternFlagTest.swift",
        "Jayway/PerformanceTest.swift",
        "Jayway/PredicatePathTokenTest.swift",
        "Jayway/PropertyPathTokenTest.swift",
        "Jayway/RegexpEvaluatorTest.swift",
        "Jayway/ReturnTypeTests.swift",
        "Jayway/ScanPathTokenTest.swift",
        "Jayway/ThreadedTest.swift",
        "Jayway/UpdateTest.swift",
        "Tests.swift",
        "TestsBase.swift"
      ],
      "target_dependencies" : [
        "Sextant"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Sextant",
      "module_type" : "SwiftTarget",
      "name" : "Sextant",
      "path" : "Sources/Sextant",
      "product_dependencies" : [
        "Hitch",
        "Spanker",
        "Chronometer"
      ],
      "product_memberships" : [
        "Sextant"
      ],
      "sources" : [
        "Internal/CharacterIndex.swift",
        "Internal/EvaluationContext.swift",
        "Internal/Filter/CompiledFilter.swift",
        "Internal/Filter/Evaluator.swift",
        "Internal/Filter/Filter.swift",
        "Internal/Filter/FilterCompiler.swift",
        "Internal/Filter/LogicalExpressionNode.swift",
        "Internal/Filter/LogicalOperator.swift",
        "Internal/Filter/PatternFlags.swift",
        "Internal/Filter/PredicateContext.swift",
        "Internal/Filter/RelationalExpressionNode.swift",
        "Internal/Filter/RelationalOperator.swift",
        "Internal/Filter/ValueNode/BooleanNode.swift",
        "Internal/Filter/ValueNode/ExpressionNode.swift",
        "Internal/Filter/ValueNode/JsonNode.swift",
        "Internal/Filter/ValueNode/NullNode.swift",
        "Internal/Filter/ValueNode/NumberNode.swift",
        "Internal/Filter/ValueNode/PathNode.swift",
        "Internal/Filter/ValueNode/PatternNode.swift",
        "Internal/Filter/ValueNode/StringNode.swift",
        "Internal/Filter/ValueNode/ValueNode.swift",
        "Internal/Operation/ArrayIndexOperation.swift",
        "Internal/Operation/ArraySliceOperation.swift",
        "Internal/Parameter.swift",
        "Internal/Path/ArrayIndexPath.swift",
        "Internal/Path/CompiledPath.swift",
        "Internal/Path/NullPath.swift",
        "Internal/Path/ObjectPropertyPath.swift",
        "Internal/Path/Path.swift",
        "Internal/Path/PathCompiler.swift",
        "Internal/Path/RootPath.swift",
        "Internal/PathToken/ArrayIndexToken.swift",
        "Internal/PathToken/ArrayPathToken.swift",
        "Internal/PathToken/ArraySliceToken.swift",
        "Internal/PathToken/FunctionPathToken.swift",
        "Internal/PathToken/PathFunction+Spanker.swift",
        "Internal/PathToken/PathFunction.swift",
        "Internal/PathToken/PathToken+Spanker.swift",
        "Internal/PathToken/PathToken.swift",
        "Internal/PathToken/PropertyPathToken.swift",
        "Internal/PathToken/RootPathToken.swift",
        "Internal/PathToken/ScanPathToken+Spanker.swift",
        "Internal/PathToken/ScanPathToken.swift",
        "Internal/PathToken/WildcardPathToken.swift",
        "Internal/ScanPredicate/ArrayPathTokenPredicate.swift",
        "Internal/ScanPredicate/FakePredicate.swift",
        "Internal/ScanPredicate/FilterPathTokenPredicate.swift",
        "Internal/ScanPredicate/PredicatePathToken.swift",
        "Internal/ScanPredicate/PropertyPathTokenPredicate.swift",
        "Internal/ScanPredicate/ScanPredicate.swift",
        "Internal/ScanPredicate/WildcardPathTokenPredicate.swift",
        "Sextant+Internal.swift",
        "Sextant+Many.swift",
        "Sextant+Single.swift",
        "Sextant+Update.swift",
        "Sextant.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
Done.