Build Information
Successful build of DynamicJSON, reference 1.0.2 (9648f3
), with Swift 6.1 for watchOS using Xcode 16.3 on 1 May 2025 08:20:57 UTC.
Swift 6 data race errors: 64
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme DynamicJSON-Package -destination generic/platform=watchOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:50:10: warning: associated value 'filterExprNotLogical' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPath.Expression'; this is an error in the Swift 6 language mode
case filterExprNotLogical(JSONPath.Expression)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift:305:24: note: consider making enum 'Expression' conform to the 'Sendable' protocol
public indirect enum Expression: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:51:10: warning: associated value 'typeMismatch' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPathEvaluator.ValueType'; this is an error in the Swift 6 language mode
case typeMismatch(String, ValueType, Value)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:116:15: note: consider making enum 'ValueType' conform to the 'Sendable' protocol
public enum ValueType: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:51:10: warning: associated value 'typeMismatch' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPathEvaluator.Value'; this is an error in the Swift 6 language mode
case typeMismatch(String, ValueType, Value)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:134:15: note: consider making enum 'Value' conform to the 'Sendable' protocol
public enum Value: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:52:10: warning: associated value 'jsonTypeMismatch' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPathEvaluator.Value'; this is an error in the Swift 6 language mode
case jsonTypeMismatch(String, JSONType, Value)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:134:15: note: consider making enum 'Value' conform to the 'Sendable' protocol
public enum Value: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathParser.swift:50:10: warning: associated value 'notASingularQuery' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPath'; this is an error in the Swift 6 language mode
case notASingularQuery(JSONPath)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift:29:22: note: consider making enum 'JSONPath' conform to the 'Sendable' protocol
public indirect enum JSONPath: Codable,
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPointer.swift:34:21: warning: static property 'root' is not concurrency-safe because non-'Sendable' type 'JSONPointer' may have shared mutable state; this is an error in the Swift 6 language mode
public static let root = JSONPointer(tokens: [])
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPointer.swift:29:15: note: consider making struct 'JSONPointer' conform to the 'Sendable' protocol
public struct JSONPointer: SegmentableJSONReference,
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPointer.swift:34:21: note: add '@MainActor' to make static property 'root' part of global actor 'MainActor'
public static let root = JSONPointer(tokens: [])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPointer.swift:34:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let root = JSONPointer(tokens: [])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:76:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'JSONSchemaDraft2020.Dialect' may have shared mutable state; this is an error in the Swift 6 language mode
public static let `default`: Dialect = Dialect()
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:75:17: note: consider making struct 'Dialect' conform to the 'Sendable' protocol
public struct Dialect: JSONSchemaDialect, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:76:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
public static let `default`: Dialect = Dialect()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:76:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let `default`: Dialect = Dialect()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:77:23: warning: static property 'validateFormat' is not concurrency-safe because non-'Sendable' type 'JSONSchemaDraft2020.Dialect' may have shared mutable state; this is an error in the Swift 6 language mode
public static let `validateFormat`: Dialect = Dialect(vocabulary: Vocabulary(formatValid: true))
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:75:17: note: consider making struct 'Dialect' conform to the 'Sendable' protocol
public struct Dialect: JSONSchemaDialect, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:77:23: note: add '@MainActor' to make static property 'validateFormat' part of global actor 'MainActor'
public static let `validateFormat`: Dialect = Dialect(vocabulary: Vocabulary(formatValid: true))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:77:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let `validateFormat`: Dialect = Dialect(vocabulary: Vocabulary(formatValid: true))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaFormatValidators.swift:18:21: warning: static property 'draft2020' is not concurrency-safe because non-'Sendable' type '[String : (String) -> Bool]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let draft2020: [String : (String) -> Bool] = [
^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaFormatValidators.swift:18:21: note: add '@MainActor' to make static property 'draft2020' part of global actor 'MainActor'
public static let draft2020: [String : (String) -> Bool] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaFormatValidators.swift:18:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let draft2020: [String : (String) -> Bool] = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift:33:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DefaultJSONSchemaRegistry' may have shared mutable state; this is an error in the Swift 6 language mode
public static let `default` = DefaultJSONSchemaRegistry()
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift:244:20: note: class 'DefaultJSONSchemaRegistry' does not conform to the 'Sendable' protocol
public final class DefaultJSONSchemaRegistry: JSONSchemaRegistry {
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift:33:21: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
public static let `default` = DefaultJSONSchemaRegistry()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift:33:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let `default` = DefaultJSONSchemaRegistry()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift:49:10: warning: associated value 'cannotRegisterNonRootResource' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONSchema'; this is an error in the Swift 6 language mode
case cannotRegisterNonRootResource(JSONSchema)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchema.swift:34:22: note: consider making enum 'JSONSchema' conform to the 'Sendable' protocol
public indirect enum JSONSchema: Codable,
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift:50:10: warning: associated value 'schemaWithoutId' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONSchema'; this is an error in the Swift 6 language mode
case schemaWithoutId(JSONSchema)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchema.swift:34:22: note: consider making enum 'JSONSchema' conform to the 'Sendable' protocol
public indirect enum JSONSchema: Codable,
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaResource.swift:66:10: warning: associated value 'schemaWithoutId' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONSchema'; this is an error in the Swift 6 language mode
case schemaWithoutId(JSONSchema)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchema.swift:34:22: note: consider making enum 'JSONSchema' conform to the 'Sendable' protocol
public indirect enum JSONSchema: Codable,
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationContext.swift:32:10: warning: associated value 'unknownResource' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONSchemaIdentifier'; this is an error in the Swift 6 language mode
case unknownResource(JSONSchemaIdentifier)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaIdentifier.swift:26:15: note: consider making struct 'JSONSchemaIdentifier' conform to the 'Sendable' protocol
public struct JSONSchemaIdentifier: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationContext.swift:33:10: warning: associated value 'validationDepthExhausted' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONLocation'; this is an error in the Swift 6 language mode
case validationDepthExhausted(JSONLocation)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONLocation.swift:30:22: note: consider making enum 'JSONLocation' conform to the 'Sendable' protocol
public indirect enum JSONLocation: SegmentableJSONReference,
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:69:23: warning: static property 'deprecated' is not concurrency-safe because non-'Sendable' type 'JSONSchemaValidationResult.MetaTags' may have shared mutable state; this is an error in the Swift 6 language mode
public static let deprecated = MetaTags(rawValue: 1 << 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:68:17: note: consider making struct 'MetaTags' conform to the 'Sendable' protocol
public struct MetaTags: OptionSet, AnnotationMessage {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:69:23: note: add '@MainActor' to make static property 'deprecated' part of global actor 'MainActor'
public static let deprecated = MetaTags(rawValue: 1 << 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:69:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let deprecated = MetaTags(rawValue: 1 << 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:70:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'JSONSchemaValidationResult.MetaTags' may have shared mutable state; this is an error in the Swift 6 language mode
public static let readOnly = MetaTags(rawValue: 1 << 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:68:17: note: consider making struct 'MetaTags' conform to the 'Sendable' protocol
public struct MetaTags: OptionSet, AnnotationMessage {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:70:23: note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
public static let readOnly = MetaTags(rawValue: 1 << 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:70:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let readOnly = MetaTags(rawValue: 1 << 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:71:23: warning: static property 'writeOnly' is not concurrency-safe because non-'Sendable' type 'JSONSchemaValidationResult.MetaTags' may have shared mutable state; this is an error in the Swift 6 language mode
public static let writeOnly = MetaTags(rawValue: 1 << 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:68:17: note: consider making struct 'MetaTags' conform to the 'Sendable' protocol
public struct MetaTags: OptionSet, AnnotationMessage {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:71:23: note: add '@MainActor' to make static property 'writeOnly' part of global actor 'MainActor'
public static let writeOnly = MetaTags(rawValue: 1 << 2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:71:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let writeOnly = MetaTags(rawValue: 1 << 2)
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 Compiling\ JSONPatchMaker.swift,\ JSONPatchOperation.swift,\ JSONPath.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchMaker.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchOperation.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchMaker.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchOperation.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchOperation.swift:57:10: warning: associated value 'cannotAddValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any JSONReference'; this is an error in the Swift 6 language mode
case cannotAddValue(JSONReference)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONReference.swift:29:17: note: protocol 'JSONReference' does not conform to the 'Sendable' protocol
public protocol JSONReference: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchOperation.swift:58:10: warning: associated value 'cannotReplaceValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any JSONReference'; this is an error in the Swift 6 language mode
case cannotReplaceValue(JSONReference)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONReference.swift:29:17: note: protocol 'JSONReference' does not conform to the 'Sendable' protocol
public protocol JSONReference: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchOperation.swift:59:10: warning: associated value 'cannotRemoveValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any JSONReference'; this is an error in the Swift 6 language mode
case cannotRemoveValue(JSONReference)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONReference.swift:29:17: note: protocol 'JSONReference' does not conform to the 'Sendable' protocol
public protocol JSONReference: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchOperation.swift:60:10: warning: associated value 'testFailed' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any JSONReference'; this is an error in the Swift 6 language mode
case testFailed(JSONReference)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONReference.swift:29:17: note: protocol 'JSONReference' does not conform to the 'Sendable' protocol
public protocol JSONReference: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchOperation.swift:61:10: warning: associated value 'valueNotFound' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any JSONReference'; this is an error in the Swift 6 language mode
case valueNotFound(JSONReference)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONReference.swift:29:17: note: protocol 'JSONReference' does not conform to the 'Sendable' protocol
public protocol JSONReference: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchOperation.swift:62:10: warning: associated value 'indexRequiredToMutateArray' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any JSONReference'; this is an error in the Swift 6 language mode
case indexRequiredToMutateArray(JSONReference)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONReference.swift:29:17: note: protocol 'JSONReference' does not conform to the 'Sendable' protocol
public protocol JSONReference: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchOperation.swift:63:10: warning: associated value 'memberRequiredToMutateObject' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any JSONReference'; this is an error in the Swift 6 language mode
case memberRequiredToMutateObject(JSONReference)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONReference.swift:29:17: note: protocol 'JSONReference' does not conform to the 'Sendable' protocol
public protocol JSONReference: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchOperation.swift:230:26: warning: type 'Any' does not conform to the 'Sendable' protocol
encoder.userInfo = userInfo
^
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 Compiling\ JSONSchemaDialect.swift,\ JSONSchemaDraft2020.swift,\ JSONSchemaFormatValidators.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDialect.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaFormatValidators.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDialect.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:76:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'JSONSchemaDraft2020.Dialect' may have shared mutable state; this is an error in the Swift 6 language mode
public static let `default`: Dialect = Dialect()
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:75:17: note: consider making struct 'Dialect' conform to the 'Sendable' protocol
public struct Dialect: JSONSchemaDialect, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:76:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
public static let `default`: Dialect = Dialect()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:76:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let `default`: Dialect = Dialect()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:77:23: warning: static property 'validateFormat' is not concurrency-safe because non-'Sendable' type 'JSONSchemaDraft2020.Dialect' may have shared mutable state; this is an error in the Swift 6 language mode
public static let `validateFormat`: Dialect = Dialect(vocabulary: Vocabulary(formatValid: true))
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:75:17: note: consider making struct 'Dialect' conform to the 'Sendable' protocol
public struct Dialect: JSONSchemaDialect, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:77:23: note: add '@MainActor' to make static property 'validateFormat' part of global actor 'MainActor'
public static let `validateFormat`: Dialect = Dialect(vocabulary: Vocabulary(formatValid: true))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:77:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let `validateFormat`: Dialect = Dialect(vocabulary: Vocabulary(formatValid: true))
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaFormatValidators.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaFormatValidators.swift:18:21: warning: static property 'draft2020' is not concurrency-safe because non-'Sendable' type '[String : (String) -> Bool]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let draft2020: [String : (String) -> Bool] = [
^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaFormatValidators.swift:18:21: note: add '@MainActor' to make static property 'draft2020' part of global actor 'MainActor'
public static let draft2020: [String : (String) -> Bool] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaFormatValidators.swift:18:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let draft2020: [String : (String) -> Bool] = [
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 Compiling\ JSONSchemaIdentifier.swift,\ JSONSchemaProvider.swift,\ JSONSchemaRegistry.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaIdentifier.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaIdentifier.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaProvider.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift:33:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DefaultJSONSchemaRegistry' may have shared mutable state; this is an error in the Swift 6 language mode
public static let `default` = DefaultJSONSchemaRegistry()
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift:244:20: note: class 'DefaultJSONSchemaRegistry' does not conform to the 'Sendable' protocol
public final class DefaultJSONSchemaRegistry: JSONSchemaRegistry {
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift:33:21: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
public static let `default` = DefaultJSONSchemaRegistry()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift:33:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let `default` = DefaultJSONSchemaRegistry()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift:49:10: warning: associated value 'cannotRegisterNonRootResource' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONSchema'; this is an error in the Swift 6 language mode
case cannotRegisterNonRootResource(JSONSchema)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchema.swift:34:22: note: consider making enum 'JSONSchema' conform to the 'Sendable' protocol
public indirect enum JSONSchema: Codable,
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift:50:10: warning: associated value 'schemaWithoutId' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONSchema'; this is an error in the Swift 6 language mode
case schemaWithoutId(JSONSchema)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchema.swift:34:22: note: consider making enum 'JSONSchema' conform to the 'Sendable' protocol
public indirect enum JSONSchema: Codable,
^
SwiftCompile normal arm64_32 Compiling\ JSONSchemaValidator.swift,\ JSONType.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONType.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidator.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONType.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 Compiling\ JSONSchemaResource.swift,\ JSONSchemaValidationContext.swift,\ JSONSchemaValidationResult.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaResource.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationContext.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaResource.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaResource.swift:66:10: warning: associated value 'schemaWithoutId' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONSchema'; this is an error in the Swift 6 language mode
case schemaWithoutId(JSONSchema)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchema.swift:34:22: note: consider making enum 'JSONSchema' conform to the 'Sendable' protocol
public indirect enum JSONSchema: Codable,
^
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationContext.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationContext.swift:32:10: warning: associated value 'unknownResource' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONSchemaIdentifier'; this is an error in the Swift 6 language mode
case unknownResource(JSONSchemaIdentifier)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaIdentifier.swift:26:15: note: consider making struct 'JSONSchemaIdentifier' conform to the 'Sendable' protocol
public struct JSONSchemaIdentifier: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationContext.swift:33:10: warning: associated value 'validationDepthExhausted' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONLocation'; this is an error in the Swift 6 language mode
case validationDepthExhausted(JSONLocation)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONLocation.swift:30:22: note: consider making enum 'JSONLocation' conform to the 'Sendable' protocol
public indirect enum JSONLocation: SegmentableJSONReference,
^
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:69:23: warning: static property 'deprecated' is not concurrency-safe because non-'Sendable' type 'JSONSchemaValidationResult.MetaTags' may have shared mutable state; this is an error in the Swift 6 language mode
public static let deprecated = MetaTags(rawValue: 1 << 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:68:17: note: consider making struct 'MetaTags' conform to the 'Sendable' protocol
public struct MetaTags: OptionSet, AnnotationMessage {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:69:23: note: add '@MainActor' to make static property 'deprecated' part of global actor 'MainActor'
public static let deprecated = MetaTags(rawValue: 1 << 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:69:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let deprecated = MetaTags(rawValue: 1 << 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:70:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'JSONSchemaValidationResult.MetaTags' may have shared mutable state; this is an error in the Swift 6 language mode
public static let readOnly = MetaTags(rawValue: 1 << 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:68:17: note: consider making struct 'MetaTags' conform to the 'Sendable' protocol
public struct MetaTags: OptionSet, AnnotationMessage {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:70:23: note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
public static let readOnly = MetaTags(rawValue: 1 << 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:70:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let readOnly = MetaTags(rawValue: 1 << 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:71:23: warning: static property 'writeOnly' is not concurrency-safe because non-'Sendable' type 'JSONSchemaValidationResult.MetaTags' may have shared mutable state; this is an error in the Swift 6 language mode
public static let writeOnly = MetaTags(rawValue: 1 << 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:68:17: note: consider making struct 'MetaTags' conform to the 'Sendable' protocol
public struct MetaTags: OptionSet, AnnotationMessage {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:71:23: note: add '@MainActor' to make static property 'writeOnly' part of global actor 'MainActor'
public static let writeOnly = MetaTags(rawValue: 1 << 2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:71:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let writeOnly = MetaTags(rawValue: 1 << 2)
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 Compiling\ JSONPathEnvironment.swift,\ JSONPathEvaluator.swift,\ JSONPathParser.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEnvironment.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathParser.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEnvironment.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:42:10: warning: associated value 'doesNotEvaluateToJSON' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPath.Expression'; this is an error in the Swift 6 language mode
case doesNotEvaluateToJSON(JSONPath.Expression)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift:305:24: note: consider making enum 'Expression' conform to the 'Sendable' protocol
public indirect enum Expression: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:43:10: warning: associated value 'cannotNegate' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPath.Expression'; this is an error in the Swift 6 language mode
case cannotNegate(JSONPath.Expression)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift:305:24: note: consider making enum 'Expression' conform to the 'Sendable' protocol
public indirect enum Expression: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:44:10: warning: associated value 'expectedType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPathEvaluator.ValueType'; this is an error in the Swift 6 language mode
case expectedType(ValueType, JSONPath.Expression)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:116:15: note: consider making enum 'ValueType' conform to the 'Sendable' protocol
public enum ValueType: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:44:10: warning: associated value 'expectedType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPath.Expression'; this is an error in the Swift 6 language mode
case expectedType(ValueType, JSONPath.Expression)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift:305:24: note: consider making enum 'Expression' conform to the 'Sendable' protocol
public indirect enum Expression: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:45:10: warning: associated value 'mismatchOfOperandTypes' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPath.Expression'; this is an error in the Swift 6 language mode
case mismatchOfOperandTypes(JSONPath.Expression)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift:305:24: note: consider making enum 'Expression' conform to the 'Sendable' protocol
public indirect enum Expression: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:46:10: warning: associated value 'divisionByZero' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPath.Expression'; this is an error in the Swift 6 language mode
case divisionByZero(JSONPath.Expression)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift:305:24: note: consider making enum 'Expression' conform to the 'Sendable' protocol
public indirect enum Expression: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:49:10: warning: associated value 'numberOfArgumentsMismatch' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPath.Expression'; this is an error in the Swift 6 language mode
case numberOfArgumentsMismatch(JSONPath.Expression)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift:305:24: note: consider making enum 'Expression' conform to the 'Sendable' protocol
public indirect enum Expression: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:50:10: warning: associated value 'filterExprNotLogical' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPath.Expression'; this is an error in the Swift 6 language mode
case filterExprNotLogical(JSONPath.Expression)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift:305:24: note: consider making enum 'Expression' conform to the 'Sendable' protocol
public indirect enum Expression: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:51:10: warning: associated value 'typeMismatch' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPathEvaluator.ValueType'; this is an error in the Swift 6 language mode
case typeMismatch(String, ValueType, Value)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:116:15: note: consider making enum 'ValueType' conform to the 'Sendable' protocol
public enum ValueType: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:51:10: warning: associated value 'typeMismatch' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPathEvaluator.Value'; this is an error in the Swift 6 language mode
case typeMismatch(String, ValueType, Value)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:134:15: note: consider making enum 'Value' conform to the 'Sendable' protocol
public enum Value: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:52:10: warning: associated value 'jsonTypeMismatch' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPathEvaluator.Value'; this is an error in the Swift 6 language mode
case jsonTypeMismatch(String, JSONType, Value)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:134:15: note: consider making enum 'Value' conform to the 'Sendable' protocol
public enum Value: Hashable, CustomStringConvertible {
^
, Sendable
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathParser.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathParser.swift:50:10: warning: associated value 'notASingularQuery' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPath'; this is an error in the Swift 6 language mode
case notASingularQuery(JSONPath)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift:29:22: note: consider making enum 'JSONPath' conform to the 'Sendable' protocol
public indirect enum JSONPath: Codable,
^
SwiftCompile normal arm64_32 Compiling\ JSONPointer.swift,\ JSONReference.swift,\ JSONSchema.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPointer.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONReference.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchema.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPointer.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPointer.swift:34:21: warning: static property 'root' is not concurrency-safe because non-'Sendable' type 'JSONPointer' may have shared mutable state; this is an error in the Swift 6 language mode
public static let root = JSONPointer(tokens: [])
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPointer.swift:29:15: note: consider making struct 'JSONPointer' conform to the 'Sendable' protocol
public struct JSONPointer: SegmentableJSONReference,
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPointer.swift:34:21: note: add '@MainActor' to make static property 'root' part of global actor 'MainActor'
public static let root = JSONPointer(tokens: [])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPointer.swift:34:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let root = JSONPointer(tokens: [])
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONReference.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchema.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 Compiling\ LocatedJSON.swift,\ Indirect.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/LocatedJSON.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/Util/Indirect.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/LocatedJSON.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/Util/Indirect.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal arm64 Emitting\ module\ for\ DynamicJSON (in target 'DynamicJSON' from project 'DynamicJSON')
EmitSwiftModule normal arm64 (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchOperation.swift:57:10: warning: associated value 'cannotAddValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any JSONReference'; this is an error in the Swift 6 language mode
case cannotAddValue(JSONReference)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONReference.swift:29:17: note: protocol 'JSONReference' does not conform to the 'Sendable' protocol
public protocol JSONReference: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchOperation.swift:58:10: warning: associated value 'cannotReplaceValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any JSONReference'; this is an error in the Swift 6 language mode
case cannotReplaceValue(JSONReference)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONReference.swift:29:17: note: protocol 'JSONReference' does not conform to the 'Sendable' protocol
public protocol JSONReference: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchOperation.swift:59:10: warning: associated value 'cannotRemoveValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any JSONReference'; this is an error in the Swift 6 language mode
case cannotRemoveValue(JSONReference)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONReference.swift:29:17: note: protocol 'JSONReference' does not conform to the 'Sendable' protocol
public protocol JSONReference: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchOperation.swift:60:10: warning: associated value 'testFailed' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any JSONReference'; this is an error in the Swift 6 language mode
case testFailed(JSONReference)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONReference.swift:29:17: note: protocol 'JSONReference' does not conform to the 'Sendable' protocol
public protocol JSONReference: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchOperation.swift:61:10: warning: associated value 'valueNotFound' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any JSONReference'; this is an error in the Swift 6 language mode
case valueNotFound(JSONReference)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONReference.swift:29:17: note: protocol 'JSONReference' does not conform to the 'Sendable' protocol
public protocol JSONReference: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchOperation.swift:62:10: warning: associated value 'indexRequiredToMutateArray' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any JSONReference'; this is an error in the Swift 6 language mode
case indexRequiredToMutateArray(JSONReference)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONReference.swift:29:17: note: protocol 'JSONReference' does not conform to the 'Sendable' protocol
public protocol JSONReference: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchOperation.swift:63:10: warning: associated value 'memberRequiredToMutateObject' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any JSONReference'; this is an error in the Swift 6 language mode
case memberRequiredToMutateObject(JSONReference)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONReference.swift:29:17: note: protocol 'JSONReference' does not conform to the 'Sendable' protocol
public protocol JSONReference: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:42:10: warning: associated value 'doesNotEvaluateToJSON' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPath.Expression'; this is an error in the Swift 6 language mode
case doesNotEvaluateToJSON(JSONPath.Expression)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift:305:24: note: consider making enum 'Expression' conform to the 'Sendable' protocol
public indirect enum Expression: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:43:10: warning: associated value 'cannotNegate' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPath.Expression'; this is an error in the Swift 6 language mode
case cannotNegate(JSONPath.Expression)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift:305:24: note: consider making enum 'Expression' conform to the 'Sendable' protocol
public indirect enum Expression: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:44:10: warning: associated value 'expectedType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPathEvaluator.ValueType'; this is an error in the Swift 6 language mode
case expectedType(ValueType, JSONPath.Expression)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:116:15: note: consider making enum 'ValueType' conform to the 'Sendable' protocol
public enum ValueType: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:44:10: warning: associated value 'expectedType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPath.Expression'; this is an error in the Swift 6 language mode
case expectedType(ValueType, JSONPath.Expression)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift:305:24: note: consider making enum 'Expression' conform to the 'Sendable' protocol
public indirect enum Expression: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:45:10: warning: associated value 'mismatchOfOperandTypes' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPath.Expression'; this is an error in the Swift 6 language mode
case mismatchOfOperandTypes(JSONPath.Expression)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift:305:24: note: consider making enum 'Expression' conform to the 'Sendable' protocol
public indirect enum Expression: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:46:10: warning: associated value 'divisionByZero' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPath.Expression'; this is an error in the Swift 6 language mode
case divisionByZero(JSONPath.Expression)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift:305:24: note: consider making enum 'Expression' conform to the 'Sendable' protocol
public indirect enum Expression: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:49:10: warning: associated value 'numberOfArgumentsMismatch' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPath.Expression'; this is an error in the Swift 6 language mode
case numberOfArgumentsMismatch(JSONPath.Expression)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift:305:24: note: consider making enum 'Expression' conform to the 'Sendable' protocol
public indirect enum Expression: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:50:10: warning: associated value 'filterExprNotLogical' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPath.Expression'; this is an error in the Swift 6 language mode
case filterExprNotLogical(JSONPath.Expression)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift:305:24: note: consider making enum 'Expression' conform to the 'Sendable' protocol
public indirect enum Expression: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:51:10: warning: associated value 'typeMismatch' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPathEvaluator.ValueType'; this is an error in the Swift 6 language mode
case typeMismatch(String, ValueType, Value)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:116:15: note: consider making enum 'ValueType' conform to the 'Sendable' protocol
public enum ValueType: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:51:10: warning: associated value 'typeMismatch' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPathEvaluator.Value'; this is an error in the Swift 6 language mode
case typeMismatch(String, ValueType, Value)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:134:15: note: consider making enum 'Value' conform to the 'Sendable' protocol
public enum Value: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:52:10: warning: associated value 'jsonTypeMismatch' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPathEvaluator.Value'; this is an error in the Swift 6 language mode
case jsonTypeMismatch(String, JSONType, Value)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:134:15: note: consider making enum 'Value' conform to the 'Sendable' protocol
public enum Value: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathParser.swift:50:10: warning: associated value 'notASingularQuery' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPath'; this is an error in the Swift 6 language mode
case notASingularQuery(JSONPath)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift:29:22: note: consider making enum 'JSONPath' conform to the 'Sendable' protocol
public indirect enum JSONPath: Codable,
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPointer.swift:34:21: warning: static property 'root' is not concurrency-safe because non-'Sendable' type 'JSONPointer' may have shared mutable state; this is an error in the Swift 6 language mode
public static let root = JSONPointer(tokens: [])
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPointer.swift:29:15: note: consider making struct 'JSONPointer' conform to the 'Sendable' protocol
public struct JSONPointer: SegmentableJSONReference,
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPointer.swift:34:21: note: add '@MainActor' to make static property 'root' part of global actor 'MainActor'
public static let root = JSONPointer(tokens: [])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPointer.swift:34:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let root = JSONPointer(tokens: [])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:76:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'JSONSchemaDraft2020.Dialect' may have shared mutable state; this is an error in the Swift 6 language mode
public static let `default`: Dialect = Dialect()
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:75:17: note: consider making struct 'Dialect' conform to the 'Sendable' protocol
public struct Dialect: JSONSchemaDialect, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:76:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
public static let `default`: Dialect = Dialect()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:76:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let `default`: Dialect = Dialect()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:77:23: warning: static property 'validateFormat' is not concurrency-safe because non-'Sendable' type 'JSONSchemaDraft2020.Dialect' may have shared mutable state; this is an error in the Swift 6 language mode
public static let `validateFormat`: Dialect = Dialect(vocabulary: Vocabulary(formatValid: true))
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:75:17: note: consider making struct 'Dialect' conform to the 'Sendable' protocol
public struct Dialect: JSONSchemaDialect, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:77:23: note: add '@MainActor' to make static property 'validateFormat' part of global actor 'MainActor'
public static let `validateFormat`: Dialect = Dialect(vocabulary: Vocabulary(formatValid: true))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:77:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let `validateFormat`: Dialect = Dialect(vocabulary: Vocabulary(formatValid: true))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaFormatValidators.swift:18:21: warning: static property 'draft2020' is not concurrency-safe because non-'Sendable' type '[String : (String) -> Bool]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let draft2020: [String : (String) -> Bool] = [
^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaFormatValidators.swift:18:21: note: add '@MainActor' to make static property 'draft2020' part of global actor 'MainActor'
public static let draft2020: [String : (String) -> Bool] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaFormatValidators.swift:18:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let draft2020: [String : (String) -> Bool] = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift:33:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DefaultJSONSchemaRegistry' may have shared mutable state; this is an error in the Swift 6 language mode
public static let `default` = DefaultJSONSchemaRegistry()
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift:244:20: note: class 'DefaultJSONSchemaRegistry' does not conform to the 'Sendable' protocol
public final class DefaultJSONSchemaRegistry: JSONSchemaRegistry {
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift:33:21: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
public static let `default` = DefaultJSONSchemaRegistry()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift:33:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let `default` = DefaultJSONSchemaRegistry()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift:49:10: warning: associated value 'cannotRegisterNonRootResource' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONSchema'; this is an error in the Swift 6 language mode
case cannotRegisterNonRootResource(JSONSchema)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchema.swift:34:22: note: consider making enum 'JSONSchema' conform to the 'Sendable' protocol
public indirect enum JSONSchema: Codable,
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift:50:10: warning: associated value 'schemaWithoutId' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONSchema'; this is an error in the Swift 6 language mode
case schemaWithoutId(JSONSchema)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchema.swift:34:22: note: consider making enum 'JSONSchema' conform to the 'Sendable' protocol
public indirect enum JSONSchema: Codable,
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaResource.swift:66:10: warning: associated value 'schemaWithoutId' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONSchema'; this is an error in the Swift 6 language mode
case schemaWithoutId(JSONSchema)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchema.swift:34:22: note: consider making enum 'JSONSchema' conform to the 'Sendable' protocol
public indirect enum JSONSchema: Codable,
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationContext.swift:32:10: warning: associated value 'unknownResource' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONSchemaIdentifier'; this is an error in the Swift 6 language mode
case unknownResource(JSONSchemaIdentifier)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaIdentifier.swift:26:15: note: consider making struct 'JSONSchemaIdentifier' conform to the 'Sendable' protocol
public struct JSONSchemaIdentifier: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationContext.swift:33:10: warning: associated value 'validationDepthExhausted' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONLocation'; this is an error in the Swift 6 language mode
case validationDepthExhausted(JSONLocation)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONLocation.swift:30:22: note: consider making enum 'JSONLocation' conform to the 'Sendable' protocol
public indirect enum JSONLocation: SegmentableJSONReference,
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:69:23: warning: static property 'deprecated' is not concurrency-safe because non-'Sendable' type 'JSONSchemaValidationResult.MetaTags' may have shared mutable state; this is an error in the Swift 6 language mode
public static let deprecated = MetaTags(rawValue: 1 << 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:68:17: note: consider making struct 'MetaTags' conform to the 'Sendable' protocol
public struct MetaTags: OptionSet, AnnotationMessage {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:69:23: note: add '@MainActor' to make static property 'deprecated' part of global actor 'MainActor'
public static let deprecated = MetaTags(rawValue: 1 << 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:69:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let deprecated = MetaTags(rawValue: 1 << 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:70:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'JSONSchemaValidationResult.MetaTags' may have shared mutable state; this is an error in the Swift 6 language mode
public static let readOnly = MetaTags(rawValue: 1 << 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:68:17: note: consider making struct 'MetaTags' conform to the 'Sendable' protocol
public struct MetaTags: OptionSet, AnnotationMessage {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:70:23: note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
public static let readOnly = MetaTags(rawValue: 1 << 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:70:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let readOnly = MetaTags(rawValue: 1 << 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:71:23: warning: static property 'writeOnly' is not concurrency-safe because non-'Sendable' type 'JSONSchemaValidationResult.MetaTags' may have shared mutable state; this is an error in the Swift 6 language mode
public static let writeOnly = MetaTags(rawValue: 1 << 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:68:17: note: consider making struct 'MetaTags' conform to the 'Sendable' protocol
public struct MetaTags: OptionSet, AnnotationMessage {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:71:23: note: add '@MainActor' to make static property 'writeOnly' part of global actor 'MainActor'
public static let writeOnly = MetaTags(rawValue: 1 << 2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:71:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let writeOnly = MetaTags(rawValue: 1 << 2)
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ JSONSchemaDialect.swift,\ JSONSchemaDraft2020.swift,\ JSONSchemaFormatValidators.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDialect.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaFormatValidators.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDialect.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:76:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'JSONSchemaDraft2020.Dialect' may have shared mutable state; this is an error in the Swift 6 language mode
public static let `default`: Dialect = Dialect()
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:75:17: note: consider making struct 'Dialect' conform to the 'Sendable' protocol
public struct Dialect: JSONSchemaDialect, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:76:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
public static let `default`: Dialect = Dialect()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:76:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let `default`: Dialect = Dialect()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:77:23: warning: static property 'validateFormat' is not concurrency-safe because non-'Sendable' type 'JSONSchemaDraft2020.Dialect' may have shared mutable state; this is an error in the Swift 6 language mode
public static let `validateFormat`: Dialect = Dialect(vocabulary: Vocabulary(formatValid: true))
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:75:17: note: consider making struct 'Dialect' conform to the 'Sendable' protocol
public struct Dialect: JSONSchemaDialect, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:77:23: note: add '@MainActor' to make static property 'validateFormat' part of global actor 'MainActor'
public static let `validateFormat`: Dialect = Dialect(vocabulary: Vocabulary(formatValid: true))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaDraft2020.swift:77:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let `validateFormat`: Dialect = Dialect(vocabulary: Vocabulary(formatValid: true))
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaFormatValidators.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaFormatValidators.swift:18:21: warning: static property 'draft2020' is not concurrency-safe because non-'Sendable' type '[String : (String) -> Bool]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let draft2020: [String : (String) -> Bool] = [
^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaFormatValidators.swift:18:21: note: add '@MainActor' to make static property 'draft2020' part of global actor 'MainActor'
public static let draft2020: [String : (String) -> Bool] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaFormatValidators.swift:18:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let draft2020: [String : (String) -> Bool] = [
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Emitting module for DynamicJSON (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftCompile normal arm64 Compiling\ JSONPathEnvironment.swift,\ JSONPathEvaluator.swift,\ JSONPathParser.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEnvironment.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathParser.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEnvironment.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:42:10: warning: associated value 'doesNotEvaluateToJSON' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPath.Expression'; this is an error in the Swift 6 language mode
case doesNotEvaluateToJSON(JSONPath.Expression)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift:305:24: note: consider making enum 'Expression' conform to the 'Sendable' protocol
public indirect enum Expression: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:43:10: warning: associated value 'cannotNegate' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPath.Expression'; this is an error in the Swift 6 language mode
case cannotNegate(JSONPath.Expression)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift:305:24: note: consider making enum 'Expression' conform to the 'Sendable' protocol
public indirect enum Expression: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:44:10: warning: associated value 'expectedType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPathEvaluator.ValueType'; this is an error in the Swift 6 language mode
case expectedType(ValueType, JSONPath.Expression)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:116:15: note: consider making enum 'ValueType' conform to the 'Sendable' protocol
public enum ValueType: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:44:10: warning: associated value 'expectedType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPath.Expression'; this is an error in the Swift 6 language mode
case expectedType(ValueType, JSONPath.Expression)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift:305:24: note: consider making enum 'Expression' conform to the 'Sendable' protocol
public indirect enum Expression: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:45:10: warning: associated value 'mismatchOfOperandTypes' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPath.Expression'; this is an error in the Swift 6 language mode
case mismatchOfOperandTypes(JSONPath.Expression)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift:305:24: note: consider making enum 'Expression' conform to the 'Sendable' protocol
public indirect enum Expression: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:46:10: warning: associated value 'divisionByZero' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPath.Expression'; this is an error in the Swift 6 language mode
case divisionByZero(JSONPath.Expression)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift:305:24: note: consider making enum 'Expression' conform to the 'Sendable' protocol
public indirect enum Expression: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:49:10: warning: associated value 'numberOfArgumentsMismatch' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPath.Expression'; this is an error in the Swift 6 language mode
case numberOfArgumentsMismatch(JSONPath.Expression)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift:305:24: note: consider making enum 'Expression' conform to the 'Sendable' protocol
public indirect enum Expression: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:50:10: warning: associated value 'filterExprNotLogical' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPath.Expression'; this is an error in the Swift 6 language mode
case filterExprNotLogical(JSONPath.Expression)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift:305:24: note: consider making enum 'Expression' conform to the 'Sendable' protocol
public indirect enum Expression: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:51:10: warning: associated value 'typeMismatch' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPathEvaluator.ValueType'; this is an error in the Swift 6 language mode
case typeMismatch(String, ValueType, Value)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:116:15: note: consider making enum 'ValueType' conform to the 'Sendable' protocol
public enum ValueType: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:51:10: warning: associated value 'typeMismatch' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPathEvaluator.Value'; this is an error in the Swift 6 language mode
case typeMismatch(String, ValueType, Value)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:134:15: note: consider making enum 'Value' conform to the 'Sendable' protocol
public enum Value: Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:52:10: warning: associated value 'jsonTypeMismatch' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPathEvaluator.Value'; this is an error in the Swift 6 language mode
case jsonTypeMismatch(String, JSONType, Value)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathEvaluator.swift:134:15: note: consider making enum 'Value' conform to the 'Sendable' protocol
public enum Value: Hashable, CustomStringConvertible {
^
, Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathParser.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPathParser.swift:50:10: warning: associated value 'notASingularQuery' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONPath'; this is an error in the Swift 6 language mode
case notASingularQuery(JSONPath)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift:29:22: note: consider making enum 'JSONPath' conform to the 'Sendable' protocol
public indirect enum JSONPath: Codable,
^
SwiftDriverJobDiscovery normal arm64 Emitting module for DynamicJSON (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftDriver\ Compilation\ Requirements DynamicJSON normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'DynamicJSON' from project 'DynamicJSON')
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 DynamicJSON -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos9.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON-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/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON.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/DynamicJSON.build/Debug-watchos/DynamicJSON.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.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/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64_32 Compiling JSONSchemaValidator.swift, JSONType.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftDriver\ Compilation\ Requirements DynamicJSON normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DynamicJSON' from project 'DynamicJSON')
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 DynamicJSON -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos9.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON-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/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON.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/DynamicJSON.build/Debug-watchos/DynamicJSON.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.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/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ JSONSchemaIdentifier.swift,\ JSONSchemaProvider.swift,\ JSONSchemaRegistry.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaIdentifier.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaIdentifier.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaProvider.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift:33:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DefaultJSONSchemaRegistry' may have shared mutable state; this is an error in the Swift 6 language mode
public static let `default` = DefaultJSONSchemaRegistry()
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift:244:20: note: class 'DefaultJSONSchemaRegistry' does not conform to the 'Sendable' protocol
public final class DefaultJSONSchemaRegistry: JSONSchemaRegistry {
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift:33:21: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
public static let `default` = DefaultJSONSchemaRegistry()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift:33:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let `default` = DefaultJSONSchemaRegistry()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift:49:10: warning: associated value 'cannotRegisterNonRootResource' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONSchema'; this is an error in the Swift 6 language mode
case cannotRegisterNonRootResource(JSONSchema)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchema.swift:34:22: note: consider making enum 'JSONSchema' conform to the 'Sendable' protocol
public indirect enum JSONSchema: Codable,
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaRegistry.swift:50:10: warning: associated value 'schemaWithoutId' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONSchema'; this is an error in the Swift 6 language mode
case schemaWithoutId(JSONSchema)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchema.swift:34:22: note: consider making enum 'JSONSchema' conform to the 'Sendable' protocol
public indirect enum JSONSchema: Codable,
^
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/DynamicJSON-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON-Swift.h (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/DynamicJSON-Swift.h
SwiftDriverJobDiscovery normal arm64_32 Compiling LocatedJSON.swift, Indirect.swift (in target 'DynamicJSON' from project 'DynamicJSON')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DynamicJSON.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON.swiftmodule (in target 'DynamicJSON' from project 'DynamicJSON')
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/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DynamicJSON.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DynamicJSON.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON.swiftdoc (in target 'DynamicJSON' from project 'DynamicJSON')
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/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DynamicJSON.swiftmodule/arm64_32-apple-watchos.swiftdoc
SwiftDriverJobDiscovery normal arm64_32 Compiling JSONSchemaDialect.swift, JSONSchemaDraft2020.swift, JSONSchemaFormatValidators.swift (in target 'DynamicJSON' from project 'DynamicJSON')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DynamicJSON.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON.abi.json (in target 'DynamicJSON' from project 'DynamicJSON')
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/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DynamicJSON.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DynamicJSON.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON.swiftmodule (in target 'DynamicJSON' from project 'DynamicJSON')
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/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DynamicJSON.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DynamicJSON.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON.swiftdoc (in target 'DynamicJSON' from project 'DynamicJSON')
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/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DynamicJSON.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DynamicJSON.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON.abi.json (in target 'DynamicJSON' from project 'DynamicJSON')
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/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DynamicJSON.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DynamicJSON.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON.swiftsourceinfo (in target 'DynamicJSON' from project 'DynamicJSON')
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/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DynamicJSON.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DynamicJSON.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON.swiftsourceinfo (in target 'DynamicJSON' from project 'DynamicJSON')
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/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DynamicJSON.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ LocatedJSON.swift,\ Indirect.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/LocatedJSON.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/Util/Indirect.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/LocatedJSON.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/Util/Indirect.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ JSON.swift,\ JSONLocation.swift,\ JSONPatch.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSON.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONLocation.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatch.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSON.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSON.swift:231:26: warning: type 'Any' does not conform to the 'Sendable' protocol
decoder.userInfo = userInfo
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSON.swift:277:26: warning: type 'Any' does not conform to the 'Sendable' protocol
encoder.userInfo = userInfo
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONLocation.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatch.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatch.swift:64:26: warning: type 'Any' does not conform to the 'Sendable' protocol
decoder.userInfo = userInfo
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatch.swift:120:26: warning: type 'Any' does not conform to the 'Sendable' protocol
encoder.userInfo = userInfo
^
SwiftDriverJobDiscovery normal arm64_32 Compiling JSONPatchMaker.swift, JSONPatchOperation.swift, JSONPath.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftCompile normal arm64 Compiling\ JSONSchemaResource.swift,\ JSONSchemaValidationContext.swift,\ JSONSchemaValidationResult.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaResource.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationContext.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaResource.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaResource.swift:66:10: warning: associated value 'schemaWithoutId' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONSchema'; this is an error in the Swift 6 language mode
case schemaWithoutId(JSONSchema)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchema.swift:34:22: note: consider making enum 'JSONSchema' conform to the 'Sendable' protocol
public indirect enum JSONSchema: Codable,
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationContext.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationContext.swift:32:10: warning: associated value 'unknownResource' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONSchemaIdentifier'; this is an error in the Swift 6 language mode
case unknownResource(JSONSchemaIdentifier)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaIdentifier.swift:26:15: note: consider making struct 'JSONSchemaIdentifier' conform to the 'Sendable' protocol
public struct JSONSchemaIdentifier: Codable, Hashable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationContext.swift:33:10: warning: associated value 'validationDepthExhausted' of 'Sendable'-conforming enum 'Error' has non-sendable type 'JSONLocation'; this is an error in the Swift 6 language mode
case validationDepthExhausted(JSONLocation)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONLocation.swift:30:22: note: consider making enum 'JSONLocation' conform to the 'Sendable' protocol
public indirect enum JSONLocation: SegmentableJSONReference,
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:69:23: warning: static property 'deprecated' is not concurrency-safe because non-'Sendable' type 'JSONSchemaValidationResult.MetaTags' may have shared mutable state; this is an error in the Swift 6 language mode
public static let deprecated = MetaTags(rawValue: 1 << 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:68:17: note: consider making struct 'MetaTags' conform to the 'Sendable' protocol
public struct MetaTags: OptionSet, AnnotationMessage {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:69:23: note: add '@MainActor' to make static property 'deprecated' part of global actor 'MainActor'
public static let deprecated = MetaTags(rawValue: 1 << 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:69:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let deprecated = MetaTags(rawValue: 1 << 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:70:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'JSONSchemaValidationResult.MetaTags' may have shared mutable state; this is an error in the Swift 6 language mode
public static let readOnly = MetaTags(rawValue: 1 << 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:68:17: note: consider making struct 'MetaTags' conform to the 'Sendable' protocol
public struct MetaTags: OptionSet, AnnotationMessage {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:70:23: note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
public static let readOnly = MetaTags(rawValue: 1 << 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:70:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let readOnly = MetaTags(rawValue: 1 << 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:71:23: warning: static property 'writeOnly' is not concurrency-safe because non-'Sendable' type 'JSONSchemaValidationResult.MetaTags' may have shared mutable state; this is an error in the Swift 6 language mode
public static let writeOnly = MetaTags(rawValue: 1 << 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:68:17: note: consider making struct 'MetaTags' conform to the 'Sendable' protocol
public struct MetaTags: OptionSet, AnnotationMessage {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:71:23: note: add '@MainActor' to make static property 'writeOnly' part of global actor 'MainActor'
public static let writeOnly = MetaTags(rawValue: 1 << 2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidationResult.swift:71:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let writeOnly = MetaTags(rawValue: 1 << 2)
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ JSONPointer.swift,\ JSONReference.swift,\ JSONSchema.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPointer.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONReference.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchema.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPointer.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPointer.swift:34:21: warning: static property 'root' is not concurrency-safe because non-'Sendable' type 'JSONPointer' may have shared mutable state; this is an error in the Swift 6 language mode
public static let root = JSONPointer(tokens: [])
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPointer.swift:29:15: note: consider making struct 'JSONPointer' conform to the 'Sendable' protocol
public struct JSONPointer: SegmentableJSONReference,
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPointer.swift:34:21: note: add '@MainActor' to make static property 'root' part of global actor 'MainActor'
public static let root = JSONPointer(tokens: [])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPointer.swift:34:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let root = JSONPointer(tokens: [])
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONReference.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchema.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling JSONPathEnvironment.swift, JSONPathEvaluator.swift, JSONPathParser.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftCompile normal arm64 Compiling\ JSONSchemaValidator.swift,\ JSONType.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONType.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONSchema/JSONSchemaValidator.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONType.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling JSONPointer.swift, JSONReference.swift, JSONSchema.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftCompile normal arm64 Compiling\ JSONExtensions.swift,\ NSNumber.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/Util/JSONExtensions.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/Util/NSNumber.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/Util/JSONExtensions.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/Util/NSNumber.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 Compiling\ JSON.swift,\ JSONLocation.swift,\ JSONPatch.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSON.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONLocation.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatch.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSON.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSON.swift:231:26: warning: type 'Any' does not conform to the 'Sendable' protocol
decoder.userInfo = userInfo
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSON.swift:277:26: warning: type 'Any' does not conform to the 'Sendable' protocol
encoder.userInfo = userInfo
^
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONLocation.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatch.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatch.swift:64:26: warning: type 'Any' does not conform to the 'Sendable' protocol
decoder.userInfo = userInfo
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatch.swift:120:26: warning: type 'Any' does not conform to the 'Sendable' protocol
encoder.userInfo = userInfo
^
SwiftDriverJobDiscovery normal arm64_32 Compiling JSONSchemaResource.swift, JSONSchemaValidationContext.swift, JSONSchemaValidationResult.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftDriverJobDiscovery normal arm64_32 Compiling JSONSchemaIdentifier.swift, JSONSchemaProvider.swift, JSONSchemaRegistry.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftCompile normal arm64 Compiling\ JSONPatchMaker.swift,\ JSONPatchOperation.swift,\ JSONPath.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchMaker.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchOperation.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchMaker.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchOperation.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchOperation.swift:57:10: warning: associated value 'cannotAddValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any JSONReference'; this is an error in the Swift 6 language mode
case cannotAddValue(JSONReference)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONReference.swift:29:17: note: protocol 'JSONReference' does not conform to the 'Sendable' protocol
public protocol JSONReference: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchOperation.swift:58:10: warning: associated value 'cannotReplaceValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any JSONReference'; this is an error in the Swift 6 language mode
case cannotReplaceValue(JSONReference)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONReference.swift:29:17: note: protocol 'JSONReference' does not conform to the 'Sendable' protocol
public protocol JSONReference: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchOperation.swift:59:10: warning: associated value 'cannotRemoveValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any JSONReference'; this is an error in the Swift 6 language mode
case cannotRemoveValue(JSONReference)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONReference.swift:29:17: note: protocol 'JSONReference' does not conform to the 'Sendable' protocol
public protocol JSONReference: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchOperation.swift:60:10: warning: associated value 'testFailed' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any JSONReference'; this is an error in the Swift 6 language mode
case testFailed(JSONReference)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONReference.swift:29:17: note: protocol 'JSONReference' does not conform to the 'Sendable' protocol
public protocol JSONReference: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchOperation.swift:61:10: warning: associated value 'valueNotFound' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any JSONReference'; this is an error in the Swift 6 language mode
case valueNotFound(JSONReference)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONReference.swift:29:17: note: protocol 'JSONReference' does not conform to the 'Sendable' protocol
public protocol JSONReference: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchOperation.swift:62:10: warning: associated value 'indexRequiredToMutateArray' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any JSONReference'; this is an error in the Swift 6 language mode
case indexRequiredToMutateArray(JSONReference)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONReference.swift:29:17: note: protocol 'JSONReference' does not conform to the 'Sendable' protocol
public protocol JSONReference: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchOperation.swift:63:10: warning: associated value 'memberRequiredToMutateObject' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any JSONReference'; this is an error in the Swift 6 language mode
case memberRequiredToMutateObject(JSONReference)
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONReference.swift:29:17: note: protocol 'JSONReference' does not conform to the 'Sendable' protocol
public protocol JSONReference: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPatch/JSONPatchOperation.swift:230:26: warning: type 'Any' does not conform to the 'Sendable' protocol
encoder.userInfo = userInfo
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/JSONPath/JSONPath.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling JSONExtensions.swift, NSNumber.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftCompile normal arm64_32 Compiling\ JSONExtensions.swift,\ NSNumber.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/Util/JSONExtensions.swift /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/Util/NSNumber.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/Util/JSONExtensions.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DynamicJSON/Util/NSNumber.swift (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling JSONSchemaDialect.swift, JSONSchemaDraft2020.swift, JSONSchemaFormatValidators.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftDriverJobDiscovery normal arm64 Compiling JSONSchemaValidator.swift, JSONType.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftDriverJobDiscovery normal arm64 Compiling JSONPathEnvironment.swift, JSONPathEvaluator.swift, JSONPathParser.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftDriver JSONPathTool normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'JSONPathTool' from project 'DynamicJSON')
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 JSONPathTool -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64_32/JSONPathTool.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos9.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64_32/JSONPathTool-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/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64_32/JSONPathTool.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/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64_32/JSONPathTool_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver JSONPathTool normal arm64 com.apple.xcode.tools.swift.compiler (in target 'JSONPathTool' from project 'DynamicJSON')
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 JSONPathTool -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64/JSONPathTool.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos9.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64/JSONPathTool-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/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64/JSONPathTool.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/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64/JSONPathTool_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ JSONPathTool (in target 'JSONPathTool' from project 'DynamicJSON')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/JSONPathTool/main.swift (in target 'JSONPathTool' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ JSONPathTool (in target 'JSONPathTool' from project 'DynamicJSON')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/JSONPathTool/main.swift (in target 'JSONPathTool' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 Compiling\ main.swift /Users/admin/builder/spi-builder-workspace/Sources/JSONPathTool/main.swift (in target 'JSONPathTool' from project 'DynamicJSON')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/JSONPathTool/main.swift (in target 'JSONPathTool' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling JSONSchemaIdentifier.swift, JSONSchemaProvider.swift, JSONSchemaRegistry.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftCompile normal arm64 Compiling\ main.swift /Users/admin/builder/spi-builder-workspace/Sources/JSONPathTool/main.swift (in target 'JSONPathTool' from project 'DynamicJSON')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/JSONPathTool/main.swift (in target 'JSONPathTool' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Emitting module for JSONPathTool (in target 'JSONPathTool' from project 'DynamicJSON')
SwiftDriver\ Compilation\ Requirements JSONPathTool normal arm64 com.apple.xcode.tools.swift.compiler (in target 'JSONPathTool' from project 'DynamicJSON')
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 JSONPathTool -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64/JSONPathTool.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos9.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64/JSONPathTool-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/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64/JSONPathTool.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/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64/JSONPathTool_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64_32 Emitting module for JSONPathTool (in target 'JSONPathTool' from project 'DynamicJSON')
SwiftDriver\ Compilation\ Requirements JSONPathTool normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'JSONPathTool' from project 'DynamicJSON')
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 JSONPathTool -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64_32/JSONPathTool.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos9.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64_32/JSONPathTool-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/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64_32/JSONPathTool.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/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64_32/JSONPathTool_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/JSONPathTool.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64/JSONPathTool.swiftmodule (in target 'JSONPathTool' from project 'DynamicJSON')
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/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64/JSONPathTool.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/JSONPathTool.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/JSONPathTool.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64_32/JSONPathTool.swiftmodule (in target 'JSONPathTool' from project 'DynamicJSON')
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/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64_32/JSONPathTool.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/JSONPathTool.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/JSONPathTool.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64_32/JSONPathTool.swiftdoc (in target 'JSONPathTool' from project 'DynamicJSON')
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/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64_32/JSONPathTool.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/JSONPathTool.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/JSONPathTool.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64_32/JSONPathTool.abi.json (in target 'JSONPathTool' from project 'DynamicJSON')
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/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64_32/JSONPathTool.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/JSONPathTool.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/JSONPathTool.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64/JSONPathTool.swiftdoc (in target 'JSONPathTool' from project 'DynamicJSON')
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/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64/JSONPathTool.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/JSONPathTool.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/JSONPathTool.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64/JSONPathTool.abi.json (in target 'JSONPathTool' from project 'DynamicJSON')
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/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64/JSONPathTool.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/JSONPathTool.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/JSONPathTool.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64_32/JSONPathTool.swiftsourceinfo (in target 'JSONPathTool' from project 'DynamicJSON')
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/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64_32/JSONPathTool.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/JSONPathTool.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/JSONPathTool.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64/JSONPathTool.swiftsourceinfo (in target 'JSONPathTool' from project 'DynamicJSON')
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/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64/JSONPathTool.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/JSONPathTool.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling LocatedJSON.swift, Indirect.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftDriverJobDiscovery normal arm64_32 Compiling JSONExtensions.swift, NSNumber.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftDriverJobDiscovery normal arm64 Compiling main.swift (in target 'JSONPathTool' from project 'DynamicJSON')
SwiftDriver\ Compilation JSONPathTool normal arm64 com.apple.xcode.tools.swift.compiler (in target 'JSONPathTool' from project 'DynamicJSON')
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 JSONPathTool -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64/JSONPathTool.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos9.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64/JSONPathTool-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/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64/JSONPathTool.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/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64/JSONPathTool_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64_32 Compiling main.swift (in target 'JSONPathTool' from project 'DynamicJSON')
SwiftDriver\ Compilation JSONPathTool normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'JSONPathTool' from project 'DynamicJSON')
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 JSONPathTool -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64_32/JSONPathTool.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos9.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64_32/JSONPathTool-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/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64_32/JSONPathTool.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/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64_32/JSONPathTool_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.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 JSONSchemaResource.swift, JSONSchemaValidationContext.swift, JSONSchemaValidationResult.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftDriverJobDiscovery normal arm64 Compiling JSON.swift, JSONLocation.swift, JSONPatch.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftDriverJobDiscovery normal arm64_32 Compiling JSON.swift, JSONLocation.swift, JSONPatch.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftDriver\ Compilation DynamicJSON normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'DynamicJSON' from project 'DynamicJSON')
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 DynamicJSON -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos9.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON-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/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON.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/DynamicJSON.build/Debug-watchos/DynamicJSON.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.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/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/Binary/DynamicJSON.o normal arm64_32 (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos9.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/Binary/DynamicJSON.o
SwiftDriverJobDiscovery normal arm64 Compiling JSONPatchMaker.swift, JSONPatchOperation.swift, JSONPath.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftDriverJobDiscovery normal arm64 Compiling JSONPointer.swift, JSONReference.swift, JSONSchema.swift (in target 'DynamicJSON' from project 'DynamicJSON')
SwiftDriver\ Compilation DynamicJSON normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DynamicJSON' from project 'DynamicJSON')
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 DynamicJSON -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos9.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON-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/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON.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/DynamicJSON.build/Debug-watchos/DynamicJSON.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.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/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/Binary/DynamicJSON.o normal arm64 (in target 'DynamicJSON' from project 'DynamicJSON')
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-watchos9.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/Binary/DynamicJSON.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DynamicJSON.o normal arm64\ arm64_32 (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/Binary/DynamicJSON.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/Binary/DynamicJSON.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DynamicJSON.o
ExtractAppIntentsMetadata (in target 'DynamicJSON' from project 'DynamicJSON')
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 DynamicJSON --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 9.0 --bundle-identifier spi-builder-workspace.DynamicJSON --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DynamicJSON.appintents --target-triple arm64-apple-watchos9.0 --target-triple arm64_32-apple-watchos9.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DynamicJSON.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/DynamicJSON.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/DynamicJSON.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-05-01 01:20:56.417 appintentsmetadataprocessor[736:4185] Starting appintentsmetadataprocessor export
2025-05-01 01:20:56.454 appintentsmetadataprocessor[736:4185] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DynamicJSON.o (in target 'DynamicJSON' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DynamicJSON.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64/Binary/JSONPathTool normal arm64 (in target 'JSONPathTool' from project 'DynamicJSON')
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-watchos9.0 -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64/JSONPathTool.LinkFileList -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -Xlinker -rpath -Xlinker @executable_path/../lib -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64/JSONPathTool_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64/JSONPathTool_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64/JSONPathTool.swiftmodule -Wl,-no_warn_duplicate_libraries -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64/Binary/JSONPathTool -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64/DynamicJSON.swiftmodule
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64_32/Binary/JSONPathTool normal arm64_32 (in target 'JSONPathTool' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos9.0 -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64_32/JSONPathTool.LinkFileList -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -Xlinker -rpath -Xlinker @executable_path/../lib -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64_32/JSONPathTool_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64_32/JSONPathTool_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64_32/JSONPathTool.swiftmodule -Wl,-no_warn_duplicate_libraries -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64_32/Binary/JSONPathTool -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/DynamicJSON.build/Objects-normal/arm64_32/DynamicJSON.swiftmodule
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/JSONPathTool normal arm64\ arm64_32 (in target 'JSONPathTool' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64/Binary/JSONPathTool /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DynamicJSON.build/Debug-watchos/JSONPathTool.build/Objects-normal/arm64_32/Binary/JSONPathTool -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/JSONPathTool
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/JSONPathTool (in target 'JSONPathTool' from project 'DynamicJSON')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/JSONPathTool
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "DynamicJSON",
"name" : "DynamicJSON",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "13.0"
},
{
"name" : "ios",
"version" : "16.0"
},
{
"name" : "tvos",
"version" : "16.0"
},
{
"name" : "watchos",
"version" : "9.0"
}
],
"products" : [
{
"name" : "DynamicJSON",
"targets" : [
"DynamicJSON"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "JSONPathTool",
"targets" : [
"JSONPathTool"
],
"type" : {
"executable" : null
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "JSONPathTool",
"module_type" : "SwiftTarget",
"name" : "JSONPathTool",
"path" : "Sources/JSONPathTool",
"product_memberships" : [
"JSONPathTool"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"DynamicJSON"
],
"type" : "executable"
},
{
"c99name" : "DynamicJSONTests",
"module_type" : "SwiftTarget",
"name" : "DynamicJSONTests",
"path" : "Tests/DynamicJSONTests",
"sources" : [
"DynamicJSONTests.swift",
"JSONConstructorTests.swift",
"JSONLocationTests.swift",
"JSONMergingTests.swift",
"JSONMutationTests.swift",
"JSONPatchComplianceSuite.swift",
"JSONPatchComplianceTest.swift",
"JSONPatchLargeTest.swift",
"JSONPatchTestCase.swift",
"JSONPathComplianceSuite.swift",
"JSONPathComplianceTest.swift",
"JSONPathTestCase.swift",
"JSONPathTests.swift",
"JSONPointerTests.swift",
"JSONSchemaComplianceSuite.swift",
"JSONSchemaComplianceTest.swift",
"JSONSchemaDebugTest.swift",
"JSONSchemaExampleTest.swift",
"JSONSchemaFormatSuite.swift",
"JSONSchemaOptionalSuite.swift",
"JSONSchemaTestCase.swift",
"JSONTypeTests.swift"
],
"target_dependencies" : [
"DynamicJSON"
],
"type" : "test"
},
{
"c99name" : "DynamicJSON",
"module_type" : "SwiftTarget",
"name" : "DynamicJSON",
"path" : "Sources/DynamicJSON",
"product_memberships" : [
"DynamicJSON",
"JSONPathTool"
],
"sources" : [
"JSON.swift",
"JSONLocation.swift",
"JSONPatch/JSONPatch.swift",
"JSONPatch/JSONPatchMaker.swift",
"JSONPatch/JSONPatchOperation.swift",
"JSONPath/JSONPath.swift",
"JSONPath/JSONPathEnvironment.swift",
"JSONPath/JSONPathEvaluator.swift",
"JSONPath/JSONPathParser.swift",
"JSONPointer.swift",
"JSONReference.swift",
"JSONSchema/JSONSchema.swift",
"JSONSchema/JSONSchemaDialect.swift",
"JSONSchema/JSONSchemaDraft2020.swift",
"JSONSchema/JSONSchemaFormatValidators.swift",
"JSONSchema/JSONSchemaIdentifier.swift",
"JSONSchema/JSONSchemaProvider.swift",
"JSONSchema/JSONSchemaRegistry.swift",
"JSONSchema/JSONSchemaResource.swift",
"JSONSchema/JSONSchemaValidationContext.swift",
"JSONSchema/JSONSchemaValidationResult.swift",
"JSONSchema/JSONSchemaValidator.swift",
"JSONType.swift",
"LocatedJSON.swift",
"Util/Indirect.swift",
"Util/JSONExtensions.swift",
"Util/NSNumber.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
Done.