The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of ValueTransformerKit, reference master (95f1bd), with Swift 6.1 for watchOS using Xcode 16.3 on 6 Jun 2025 14:28:16 UTC.

Swift 6 data race errors: 87

Build Command

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

Build Log

    public static let instance = URLToStringTransformer()
                      ^
    nonisolated(unsafe)
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ ValueTransformerKit (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
EmitSwiftModule normal arm64_32 (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ArchiveValueTransformer.swift:14:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'ArchiveValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let instance = ArchiveValueTransformer()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ArchiveValueTransformer.swift:11:20: note: class 'ArchiveValueTransformer' does not conform to the 'Sendable' protocol
public final class ArchiveValueTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/ArchiveValueTransformer.swift:14:23: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
    public static let instance = ArchiveValueTransformer()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ArchiveValueTransformer.swift:14:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let instance = ArchiveValueTransformer()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ArchiveValueTransformer.swift:53:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'UnarchiveValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let instance = UnarchiveValueTransformer()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ArchiveValueTransformer.swift:50:20: note: class 'UnarchiveValueTransformer' does not conform to the 'Sendable' protocol
public final class UnarchiveValueTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/ArchiveValueTransformer.swift:53:23: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
    public static let instance = UnarchiveValueTransformer()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ArchiveValueTransformer.swift:53:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let instance = UnarchiveValueTransformer()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:10:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "ArrayToString"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:10:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "ArrayToString"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:10:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "ArrayToString"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:10:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "ArrayToString"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:11:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var reversableNamePrefix = "StringToArray"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:11:23: note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var reversableNamePrefix = "StringToArray"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:11:23: note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
    public static var reversableNamePrefix = "StringToArray"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:11:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var reversableNamePrefix = "StringToArray"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:14:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'ArrayToStringTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let instance = ArrayToStringTransformer()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:8:20: note: class 'ArrayToStringTransformer' does not conform to the 'Sendable' protocol
final public class ArrayToStringTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton, ReversableValueTransformers {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:14:23: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
    public static let instance = ArrayToStringTransformer()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:14:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let instance = ArrayToStringTransformer()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:18:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[DateTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let transformers: [DateTransformers] = [.rfc822, .short, .medium, .long, .full]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:8:13: note: consider making enum 'DateTransformers' conform to the 'Sendable' protocol
public enum DateTransformers: ReversableValueTransformers, ResersableValueTransformerType {
            ^
                                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:18:23: note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
    public static let transformers: [DateTransformers] = [.rfc822, .short, .medium, .long, .full]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:18:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let transformers: [DateTransformers] = [.rfc822, .short, .medium, .long, .full]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:20:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "Date"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:20:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "Date"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:20:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "Date"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:20:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "Date"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:21:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var reversableNamePrefix = "StringToDate"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:21:23: note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var reversableNamePrefix = "StringToDate"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:21:23: note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
    public static var reversableNamePrefix = "StringToDate"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:21:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var reversableNamePrefix = "StringToDate"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/IdentityTransformer.swift:13:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IdentityTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let instance = IdentityTransformer()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/IdentityTransformer.swift:10:20: note: class 'IdentityTransformer' does not conform to the 'Sendable' protocol
final public class IdentityTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/IdentityTransformer.swift:13:23: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
    public static let instance = IdentityTransformer()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/IdentityTransformer.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let instance = IdentityTransformer()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:56:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[ImageRepresentationTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let transformers: [ImageRepresentationTransformers] = [.png, .jpeg]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:51:13: note: consider making enum 'ImageRepresentationTransformers' conform to the 'Sendable' protocol
public enum ImageRepresentationTransformers: String, ReversableValueTransformers, ResersableValueTransformerType {
            ^
                                                                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:56:23: note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
    public static let transformers: [ImageRepresentationTransformers] = [.png, .jpeg]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:56:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let transformers: [ImageRepresentationTransformers] = [.png, .jpeg]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:58:23: warning: static property 'kJPEGRepresentationCompressionQuality' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var kJPEGRepresentationCompressionQuality: CGFloat = 0.85
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:58:23: note: convert 'kJPEGRepresentationCompressionQuality' to a 'let' constant to make 'Sendable' shared state immutable
    public static var kJPEGRepresentationCompressionQuality: CGFloat = 0.85
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:58:23: note: add '@MainActor' to make static property 'kJPEGRepresentationCompressionQuality' part of global actor 'MainActor'
    public static var kJPEGRepresentationCompressionQuality: CGFloat = 0.85
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:58:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var kJPEGRepresentationCompressionQuality: CGFloat = 0.85
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:60:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "ImageRepresentation"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:60:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "ImageRepresentation"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:60:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "ImageRepresentation"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:60:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "ImageRepresentation"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:61:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var reversableNamePrefix = "RepresentationToImage"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:61:23: note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var reversableNamePrefix = "RepresentationToImage"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:61:23: note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
    public static var reversableNamePrefix = "RepresentationToImage"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var reversableNamePrefix = "RepresentationToImage"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:13:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IsEmptyTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let instance = IsEmptyTransformer()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:10:20: note: class 'IsEmptyTransformer' does not conform to the 'Sendable' protocol
final public class IsEmptyTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:13:23: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
    public static let instance = IsEmptyTransformer()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let instance = IsEmptyTransformer()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:41:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IsNotEmptyTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let instance = IsNotEmptyTransformer()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:38:20: note: class 'IsNotEmptyTransformer' does not conform to the 'Sendable' protocol
final public class IsNotEmptyTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:41:23: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
    public static let instance = IsNotEmptyTransformer()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:41:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let instance = IsNotEmptyTransformer()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/LocalKeyTransformers.swift:17:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "Locale"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/LocalKeyTransformers.swift:17:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "Locale"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/LocalKeyTransformers.swift:17:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "Locale"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LocalKeyTransformers.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "Locale"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:17:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[NumberTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let transformers: [NumberTransformers] = {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:11:13: note: consider making enum 'NumberTransformers' conform to the 'Sendable' protocol
public enum NumberTransformers: ReversableValueTransformers, ResersableValueTransformerType {
            ^
                                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:17:23: note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
    public static let transformers: [NumberTransformers] = {
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let transformers: [NumberTransformers] = {
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:23:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "Number"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:23:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "Number"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:23:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "Number"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:23:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "Number"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:24:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var reversableNamePrefix = "StringToNumber"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:24:23: note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var reversableNamePrefix = "StringToNumber"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:24:23: note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
    public static var reversableNamePrefix = "StringToNumber"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:24:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var reversableNamePrefix = "StringToNumber"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:12:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "OrderedSetToArray"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:12:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "OrderedSetToArray"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:12:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "OrderedSetToArray"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:12:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "OrderedSetToArray"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:13:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var reversableNamePrefix = "ArrayToOrderedSet"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:13:23: note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var reversableNamePrefix = "ArrayToOrderedSet"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:13:23: note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
    public static var reversableNamePrefix = "ArrayToOrderedSet"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var reversableNamePrefix = "ArrayToOrderedSet"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:16:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'OrderedSetToArrayValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let instance = OrderedSetToArrayValueTransformer()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:10:20: note: class 'OrderedSetToArrayValueTransformer' does not conform to the 'Sendable' protocol
final public class OrderedSetToArrayValueTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton, ReversableValueTransformers {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:16:23: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
    public static let instance = OrderedSetToArrayValueTransformer()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:16:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let instance = OrderedSetToArrayValueTransformer()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:20:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[StringTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let transformers: [StringTransformers] = [.capitalized, .lowercased, .uppercased, .localized(.main)]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:8:13: note: consider making enum 'StringTransformers' conform to the 'Sendable' protocol
public enum StringTransformers: ValueTransformers, ValueTransformerType {
            ^
                                                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:20:23: note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
    public static let transformers: [StringTransformers] = [.capitalized, .lowercased, .uppercased, .localized(.main)]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:20:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let transformers: [StringTransformers] = [.capitalized, .lowercased, .uppercased, .localized(.main)]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:22:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "String"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:22:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "String"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:22:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "String"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:22:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "String"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:71:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "StringData"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:71:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "StringData"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:71:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "StringData"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:71:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "StringData"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:18:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[TimeTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let transformers: [TimeTransformers] = [.short, .medium, .long, .full]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:11:13: note: consider making enum 'TimeTransformers' conform to the 'Sendable' protocol
public enum TimeTransformers: String, ReversableValueTransformers, ResersableValueTransformerType {
            ^
                                                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:18:23: note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
    public static let transformers: [TimeTransformers] = [.short, .medium, .long, .full]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:18:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let transformers: [TimeTransformers] = [.short, .medium, .long, .full]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:20:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "Time"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:20:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "Time"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:20:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "Time"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:20:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "Time"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:21:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var reversableNamePrefix = "StringToTime"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:21:23: note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var reversableNamePrefix = "StringToTime"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:21:23: note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
    public static var reversableNamePrefix = "StringToTime"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:21:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var reversableNamePrefix = "StringToTime"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/URLToStringTransformer.swift:11:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'URLToStringTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let instance = URLToStringTransformer()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/URLToStringTransformer.swift:8:13: note: class 'URLToStringTransformer' does not conform to the 'Sendable' protocol
final class URLToStringTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/URLToStringTransformer.swift:11:23: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
    public static let instance = URLToStringTransformer()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/URLToStringTransformer.swift:11:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let instance = URLToStringTransformer()
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Emitting module for ValueTransformerKit (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftDriver\ Compilation\ Requirements ValueTransformerKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    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 ValueTransformerKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ValueTransformerKit.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-watchos4.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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ValueTransformerKit-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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ValueTransformerKit.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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ValueTransformerKit_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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ValueTransformerKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal armv7k Emitting module for ValueTransformerKit (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64_32 Compiling\ PropertyListTransformer.swift,\ ReverseValueTransformer.swift,\ SecondsToHoursValueTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/PropertyListTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/ReverseValueTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/SecondsToHoursValueTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/PropertyListTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

SwiftDriver\ Compilation\ Requirements ValueTransformerKit normal armv7k com.apple.xcode.tools.swift.compiler (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    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 ValueTransformerKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ValueTransformerKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos4.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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ValueTransformerKit-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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ValueTransformerKit.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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ValueTransformerKit_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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ValueTransformerKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal armv7k Compiling ClosureValueTransformer.swift, DateTransformers.swift, EmptyTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ValueTransformerKit.swiftmodule (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ValueTransformerKit.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ValueTransformerKit.swiftdoc (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ValueTransformerKit.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.swiftmodule/arm64-apple-watchos.swiftdoc
SwiftDriverJobDiscovery normal arm64 Compiling JSONValueTransformer.swift, LocalKeyTransformers.swift, NumberToBoolTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ValueTransformerKit.abi.json (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ValueTransformerKit.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ValueTransformerKit.swiftsourceinfo (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ValueTransformerKit.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ URLToStringTransformer.swift,\ ValueTransformerRegisterable.swift /Users/admin/builder/spi-builder-workspace/Sources/URLToStringTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/ValueTransformerRegisterable.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/URLToStringTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/URLToStringTransformer.swift:11:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'URLToStringTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let instance = URLToStringTransformer()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/URLToStringTransformer.swift:8:13: note: class 'URLToStringTransformer' does not conform to the 'Sendable' protocol
final class URLToStringTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/URLToStringTransformer.swift:11:23: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
    public static let instance = URLToStringTransformer()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/URLToStringTransformer.swift:11:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let instance = URLToStringTransformer()
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ValueTransformerRegisterable.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ ClosureValueTransformer.swift,\ DateTransformers.swift,\ EmptyTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/ClosureValueTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift /Users/admin/builder/spi-builder-workspace/Sources/EmptyTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ClosureValueTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:18:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[DateTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let transformers: [DateTransformers] = [.rfc822, .short, .medium, .long, .full]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:8:13: note: consider making enum 'DateTransformers' conform to the 'Sendable' protocol
public enum DateTransformers: ReversableValueTransformers, ResersableValueTransformerType {
            ^
                                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:18:23: note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
    public static let transformers: [DateTransformers] = [.rfc822, .short, .medium, .long, .full]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:18:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let transformers: [DateTransformers] = [.rfc822, .short, .medium, .long, .full]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:20:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "Date"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:20:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "Date"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:20:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "Date"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:20:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "Date"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:21:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var reversableNamePrefix = "StringToDate"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:21:23: note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var reversableNamePrefix = "StringToDate"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:21:23: note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
    public static var reversableNamePrefix = "StringToDate"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:21:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var reversableNamePrefix = "StringToDate"
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EmptyTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ IdentityTransformer.swift,\ ImageTransformers.swift,\ IsEmptyTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/IdentityTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift /Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/IdentityTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/IdentityTransformer.swift:13:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IdentityTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let instance = IdentityTransformer()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/IdentityTransformer.swift:10:20: note: class 'IdentityTransformer' does not conform to the 'Sendable' protocol
final public class IdentityTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/IdentityTransformer.swift:13:23: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
    public static let instance = IdentityTransformer()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/IdentityTransformer.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let instance = IdentityTransformer()
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:56:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[ImageRepresentationTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let transformers: [ImageRepresentationTransformers] = [.png, .jpeg]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:51:13: note: consider making enum 'ImageRepresentationTransformers' conform to the 'Sendable' protocol
public enum ImageRepresentationTransformers: String, ReversableValueTransformers, ResersableValueTransformerType {
            ^
                                                                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:56:23: note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
    public static let transformers: [ImageRepresentationTransformers] = [.png, .jpeg]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:56:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let transformers: [ImageRepresentationTransformers] = [.png, .jpeg]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:58:23: warning: static property 'kJPEGRepresentationCompressionQuality' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var kJPEGRepresentationCompressionQuality: CGFloat = 0.85
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:58:23: note: convert 'kJPEGRepresentationCompressionQuality' to a 'let' constant to make 'Sendable' shared state immutable
    public static var kJPEGRepresentationCompressionQuality: CGFloat = 0.85
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:58:23: note: add '@MainActor' to make static property 'kJPEGRepresentationCompressionQuality' part of global actor 'MainActor'
    public static var kJPEGRepresentationCompressionQuality: CGFloat = 0.85
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:58:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var kJPEGRepresentationCompressionQuality: CGFloat = 0.85
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:60:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "ImageRepresentation"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:60:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "ImageRepresentation"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:60:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "ImageRepresentation"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:60:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "ImageRepresentation"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:61:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var reversableNamePrefix = "RepresentationToImage"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:61:23: note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var reversableNamePrefix = "RepresentationToImage"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:61:23: note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
    public static var reversableNamePrefix = "RepresentationToImage"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var reversableNamePrefix = "RepresentationToImage"
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:13:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IsEmptyTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let instance = IsEmptyTransformer()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:10:20: note: class 'IsEmptyTransformer' does not conform to the 'Sendable' protocol
final public class IsEmptyTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:13:23: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
    public static let instance = IsEmptyTransformer()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let instance = IsEmptyTransformer()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:41:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IsNotEmptyTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let instance = IsNotEmptyTransformer()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:38:20: note: class 'IsNotEmptyTransformer' does not conform to the 'Sendable' protocol
final public class IsNotEmptyTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:41:23: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
    public static let instance = IsNotEmptyTransformer()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:41:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let instance = IsNotEmptyTransformer()
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling JSONValueTransformer.swift, LocalKeyTransformers.swift, NumberToBoolTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64 Compiling\ UIColorToString.swift,\ URLStringToImageTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/UIColorToString.swift /Users/admin/builder/spi-builder-workspace/Sources/URLStringToImageTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/UIColorToString.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal arm64 Compiling\ PropertyListTransformer.swift,\ ReverseValueTransformer.swift,\ SecondsToHoursValueTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/PropertyListTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/ReverseValueTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/SecondsToHoursValueTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PropertyListTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

SwiftDriverJobDiscovery normal armv7k Compiling ArchiveValueTransformer.swift, ArrayToStringTransformer.swift, Base64Transformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64_32 Compiling\ NumberTransformers.swift,\ Operators.swift,\ OrderedSetToArrayValueTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift /Users/admin/builder/spi-builder-workspace/Sources/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:17:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[NumberTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let transformers: [NumberTransformers] = {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:11:13: note: consider making enum 'NumberTransformers' conform to the 'Sendable' protocol
public enum NumberTransformers: ReversableValueTransformers, ResersableValueTransformerType {
            ^
                                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:17:23: note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
    public static let transformers: [NumberTransformers] = {
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let transformers: [NumberTransformers] = {
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:23:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "Number"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:23:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "Number"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:23:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "Number"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:23:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "Number"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:24:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var reversableNamePrefix = "StringToNumber"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:24:23: note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var reversableNamePrefix = "StringToNumber"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:24:23: note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
    public static var reversableNamePrefix = "StringToNumber"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:24:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var reversableNamePrefix = "StringToNumber"
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Operators.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:12:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "OrderedSetToArray"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:12:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "OrderedSetToArray"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:12:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "OrderedSetToArray"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:12:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "OrderedSetToArray"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:13:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var reversableNamePrefix = "ArrayToOrderedSet"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:13:23: note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var reversableNamePrefix = "ArrayToOrderedSet"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:13:23: note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
    public static var reversableNamePrefix = "ArrayToOrderedSet"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var reversableNamePrefix = "ArrayToOrderedSet"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:16:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'OrderedSetToArrayValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let instance = OrderedSetToArrayValueTransformer()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:10:20: note: class 'OrderedSetToArrayValueTransformer' does not conform to the 'Sendable' protocol
final public class OrderedSetToArrayValueTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton, ReversableValueTransformers {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:16:23: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
    public static let instance = OrderedSetToArrayValueTransformer()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:16:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let instance = OrderedSetToArrayValueTransformer()
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling ClosureValueTransformer.swift, DateTransformers.swift, EmptyTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftDriverJobDiscovery normal arm64 Compiling ArchiveValueTransformer.swift, ArrayToStringTransformer.swift, Base64Transformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ValueTransformerKit.swiftmodule (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ValueTransformerKit.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.swiftmodule/armv7k-apple-watchos.swiftmodule
SwiftDriverJobDiscovery normal armv7k Compiling UIColorToString.swift, URLStringToImageTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ValueTransformerKit.swiftdoc (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ValueTransformerKit.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ValueTransformerKit.abi.json (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ValueTransformerKit.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ValueTransformerKit.swiftsourceinfo (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ValueTransformerKit.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
SwiftCompile normal armv7k Compiling\ ValueTransformerType.swift,\ ValueTransformers.swift /Users/admin/builder/spi-builder-workspace/Sources/ValueTransformerType.swift /Users/admin/builder/spi-builder-workspace/Sources/ValueTransformers.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ValueTransformerType.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal arm64 Compiling\ StringToDataTransformer.swift,\ StringTransformers.swift,\ TimeTransformers.swift /Users/admin/builder/spi-builder-workspace/Sources/StringToDataTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift /Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StringToDataTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:20:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[StringTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let transformers: [StringTransformers] = [.capitalized, .lowercased, .uppercased, .localized(.main)]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:8:13: note: consider making enum 'StringTransformers' conform to the 'Sendable' protocol
public enum StringTransformers: ValueTransformers, ValueTransformerType {
            ^
                                                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:20:23: note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
    public static let transformers: [StringTransformers] = [.capitalized, .lowercased, .uppercased, .localized(.main)]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:20:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let transformers: [StringTransformers] = [.capitalized, .lowercased, .uppercased, .localized(.main)]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:22:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "String"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:22:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "String"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:22:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "String"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:22:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "String"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:71:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "StringData"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:71:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "StringData"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:71:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "StringData"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:71:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "StringData"
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:18:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[TimeTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let transformers: [TimeTransformers] = [.short, .medium, .long, .full]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:11:13: note: consider making enum 'TimeTransformers' conform to the 'Sendable' protocol
public enum TimeTransformers: String, ReversableValueTransformers, ResersableValueTransformerType {
            ^
                                                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:18:23: note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
    public static let transformers: [TimeTransformers] = [.short, .medium, .long, .full]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:18:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let transformers: [TimeTransformers] = [.short, .medium, .long, .full]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:20:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "Time"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:20:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "Time"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:20:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "Time"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:20:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "Time"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:21:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var reversableNamePrefix = "StringToTime"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:21:23: note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var reversableNamePrefix = "StringToTime"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:21:23: note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
    public static var reversableNamePrefix = "StringToTime"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:21:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var reversableNamePrefix = "StringToTime"
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling IdentityTransformer.swift, ImageTransformers.swift, IsEmptyTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64 Compiling\ ValueTransformerType.swift,\ ValueTransformers.swift /Users/admin/builder/spi-builder-workspace/Sources/ValueTransformerType.swift /Users/admin/builder/spi-builder-workspace/Sources/ValueTransformers.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ValueTransformerType.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal arm64 Compiling URLToStringTransformer.swift, ValueTransformerRegisterable.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64 Compiling\ NumberTransformers.swift,\ Operators.swift,\ OrderedSetToArrayValueTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift /Users/admin/builder/spi-builder-workspace/Sources/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:17:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[NumberTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let transformers: [NumberTransformers] = {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:11:13: note: consider making enum 'NumberTransformers' conform to the 'Sendable' protocol
public enum NumberTransformers: ReversableValueTransformers, ResersableValueTransformerType {
            ^
                                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:17:23: note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
    public static let transformers: [NumberTransformers] = {
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let transformers: [NumberTransformers] = {
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:23:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "Number"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:23:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "Number"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:23:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "Number"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:23:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "Number"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:24:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var reversableNamePrefix = "StringToNumber"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:24:23: note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var reversableNamePrefix = "StringToNumber"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:24:23: note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
    public static var reversableNamePrefix = "StringToNumber"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:24:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var reversableNamePrefix = "StringToNumber"
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Operators.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:12:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "OrderedSetToArray"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:12:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "OrderedSetToArray"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:12:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "OrderedSetToArray"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:12:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "OrderedSetToArray"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:13:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var reversableNamePrefix = "ArrayToOrderedSet"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:13:23: note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var reversableNamePrefix = "ArrayToOrderedSet"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:13:23: note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
    public static var reversableNamePrefix = "ArrayToOrderedSet"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var reversableNamePrefix = "ArrayToOrderedSet"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:16:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'OrderedSetToArrayValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let instance = OrderedSetToArrayValueTransformer()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:10:20: note: class 'OrderedSetToArrayValueTransformer' does not conform to the 'Sendable' protocol
final public class OrderedSetToArrayValueTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton, ReversableValueTransformers {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:16:23: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
    public static let instance = OrderedSetToArrayValueTransformer()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:16:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let instance = OrderedSetToArrayValueTransformer()
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling PropertyListTransformer.swift, ReverseValueTransformer.swift, SecondsToHoursValueTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal armv7k Compiling\ URLToStringTransformer.swift,\ ValueTransformerRegisterable.swift /Users/admin/builder/spi-builder-workspace/Sources/URLToStringTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/ValueTransformerRegisterable.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/URLToStringTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/URLToStringTransformer.swift:11:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'URLToStringTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let instance = URLToStringTransformer()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/URLToStringTransformer.swift:8:13: note: class 'URLToStringTransformer' does not conform to the 'Sendable' protocol
final class URLToStringTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/URLToStringTransformer.swift:11:23: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
    public static let instance = URLToStringTransformer()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/URLToStringTransformer.swift:11:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let instance = URLToStringTransformer()
                      ^
    nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ValueTransformerRegisterable.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling ValueTransformerType.swift, ValueTransformers.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64_32 Compiling\ URLToStringTransformer.swift,\ ValueTransformerRegisterable.swift /Users/admin/builder/spi-builder-workspace/Sources/URLToStringTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/ValueTransformerRegisterable.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/URLToStringTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/URLToStringTransformer.swift:11:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'URLToStringTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let instance = URLToStringTransformer()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/URLToStringTransformer.swift:8:13: note: class 'URLToStringTransformer' does not conform to the 'Sendable' protocol
final class URLToStringTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/URLToStringTransformer.swift:11:23: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
    public static let instance = URLToStringTransformer()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/URLToStringTransformer.swift:11:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let instance = URLToStringTransformer()
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ValueTransformerRegisterable.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling UIColorToString.swift, URLStringToImageTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64_32 Compiling\ StringToDataTransformer.swift,\ StringTransformers.swift,\ TimeTransformers.swift /Users/admin/builder/spi-builder-workspace/Sources/StringToDataTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift /Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/StringToDataTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:20:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[StringTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let transformers: [StringTransformers] = [.capitalized, .lowercased, .uppercased, .localized(.main)]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:8:13: note: consider making enum 'StringTransformers' conform to the 'Sendable' protocol
public enum StringTransformers: ValueTransformers, ValueTransformerType {
            ^
                                                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:20:23: note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
    public static let transformers: [StringTransformers] = [.capitalized, .lowercased, .uppercased, .localized(.main)]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:20:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let transformers: [StringTransformers] = [.capitalized, .lowercased, .uppercased, .localized(.main)]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:22:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "String"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:22:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "String"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:22:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "String"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:22:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "String"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:71:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "StringData"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:71:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "StringData"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:71:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "StringData"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:71:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "StringData"
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:18:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[TimeTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let transformers: [TimeTransformers] = [.short, .medium, .long, .full]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:11:13: note: consider making enum 'TimeTransformers' conform to the 'Sendable' protocol
public enum TimeTransformers: String, ReversableValueTransformers, ResersableValueTransformerType {
            ^
                                                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:18:23: note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
    public static let transformers: [TimeTransformers] = [.short, .medium, .long, .full]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:18:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let transformers: [TimeTransformers] = [.short, .medium, .long, .full]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:20:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "Time"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:20:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "Time"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:20:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "Time"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:20:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "Time"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:21:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var reversableNamePrefix = "StringToTime"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:21:23: note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var reversableNamePrefix = "StringToTime"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:21:23: note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
    public static var reversableNamePrefix = "StringToTime"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:21:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var reversableNamePrefix = "StringToTime"
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling ValueTransformerType.swift, ValueTransformers.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64_32 Compiling\ ValueTransformerType.swift,\ ValueTransformers.swift /Users/admin/builder/spi-builder-workspace/Sources/ValueTransformerType.swift /Users/admin/builder/spi-builder-workspace/Sources/ValueTransformers.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ValueTransformerType.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal arm64 Compiling StringToDataTransformer.swift, StringTransformers.swift, TimeTransformers.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal armv7k Compiling\ PropertyListTransformer.swift,\ ReverseValueTransformer.swift,\ SecondsToHoursValueTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/PropertyListTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/ReverseValueTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/SecondsToHoursValueTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/PropertyListTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

SwiftDriverJobDiscovery normal armv7k Compiling URLToStringTransformer.swift, ValueTransformerRegisterable.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64_32 Compiling\ JSONValueTransformer.swift,\ LocalKeyTransformers.swift,\ NumberToBoolTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/JSONValueTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/LocalKeyTransformers.swift /Users/admin/builder/spi-builder-workspace/Sources/NumberToBoolTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/JSONValueTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/LocalKeyTransformers.swift:17:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "Locale"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/LocalKeyTransformers.swift:17:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "Locale"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/LocalKeyTransformers.swift:17:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "Locale"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LocalKeyTransformers.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "Locale"
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/NumberToBoolTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling NumberTransformers.swift, Operators.swift, OrderedSetToArrayValueTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64 Compiling\ IdentityTransformer.swift,\ ImageTransformers.swift,\ IsEmptyTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/IdentityTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift /Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/IdentityTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/IdentityTransformer.swift:13:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IdentityTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let instance = IdentityTransformer()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/IdentityTransformer.swift:10:20: note: class 'IdentityTransformer' does not conform to the 'Sendable' protocol
final public class IdentityTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/IdentityTransformer.swift:13:23: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
    public static let instance = IdentityTransformer()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/IdentityTransformer.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let instance = IdentityTransformer()
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:56:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[ImageRepresentationTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let transformers: [ImageRepresentationTransformers] = [.png, .jpeg]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:51:13: note: consider making enum 'ImageRepresentationTransformers' conform to the 'Sendable' protocol
public enum ImageRepresentationTransformers: String, ReversableValueTransformers, ResersableValueTransformerType {
            ^
                                                                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:56:23: note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
    public static let transformers: [ImageRepresentationTransformers] = [.png, .jpeg]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:56:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let transformers: [ImageRepresentationTransformers] = [.png, .jpeg]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:58:23: warning: static property 'kJPEGRepresentationCompressionQuality' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var kJPEGRepresentationCompressionQuality: CGFloat = 0.85
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:58:23: note: convert 'kJPEGRepresentationCompressionQuality' to a 'let' constant to make 'Sendable' shared state immutable
    public static var kJPEGRepresentationCompressionQuality: CGFloat = 0.85
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:58:23: note: add '@MainActor' to make static property 'kJPEGRepresentationCompressionQuality' part of global actor 'MainActor'
    public static var kJPEGRepresentationCompressionQuality: CGFloat = 0.85
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:58:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var kJPEGRepresentationCompressionQuality: CGFloat = 0.85
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:60:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "ImageRepresentation"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:60:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "ImageRepresentation"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:60:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "ImageRepresentation"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:60:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "ImageRepresentation"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:61:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var reversableNamePrefix = "RepresentationToImage"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:61:23: note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var reversableNamePrefix = "RepresentationToImage"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:61:23: note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
    public static var reversableNamePrefix = "RepresentationToImage"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var reversableNamePrefix = "RepresentationToImage"
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:13:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IsEmptyTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let instance = IsEmptyTransformer()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:10:20: note: class 'IsEmptyTransformer' does not conform to the 'Sendable' protocol
final public class IsEmptyTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:13:23: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
    public static let instance = IsEmptyTransformer()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let instance = IsEmptyTransformer()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:41:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IsNotEmptyTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let instance = IsNotEmptyTransformer()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:38:20: note: class 'IsNotEmptyTransformer' does not conform to the 'Sendable' protocol
final public class IsNotEmptyTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:41:23: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
    public static let instance = IsNotEmptyTransformer()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:41:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let instance = IsNotEmptyTransformer()
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling PropertyListTransformer.swift, ReverseValueTransformer.swift, SecondsToHoursValueTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64_32 Compiling\ UIColorToString.swift,\ URLStringToImageTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/UIColorToString.swift /Users/admin/builder/spi-builder-workspace/Sources/URLStringToImageTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/UIColorToString.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal arm64_32 Emitting module for ValueTransformerKit (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftDriver\ Compilation\ Requirements ValueTransformerKit normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    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 ValueTransformerKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ValueTransformerKit.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-watchos4.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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ValueTransformerKit-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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ValueTransformerKit.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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ValueTransformerKit_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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ValueTransformerKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling IdentityTransformer.swift, ImageTransformers.swift, IsEmptyTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal armv7k Compiling\ StringToDataTransformer.swift,\ StringTransformers.swift,\ TimeTransformers.swift /Users/admin/builder/spi-builder-workspace/Sources/StringToDataTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift /Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/StringToDataTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:20:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[StringTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let transformers: [StringTransformers] = [.capitalized, .lowercased, .uppercased, .localized(.main)]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:8:13: note: consider making enum 'StringTransformers' conform to the 'Sendable' protocol
public enum StringTransformers: ValueTransformers, ValueTransformerType {
            ^
                                                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:20:23: note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
    public static let transformers: [StringTransformers] = [.capitalized, .lowercased, .uppercased, .localized(.main)]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:20:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let transformers: [StringTransformers] = [.capitalized, .lowercased, .uppercased, .localized(.main)]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:22:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "String"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:22:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "String"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:22:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "String"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:22:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "String"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:71:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "StringData"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:71:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "StringData"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:71:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "StringData"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:71:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "StringData"
                      ^
    nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:18:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[TimeTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let transformers: [TimeTransformers] = [.short, .medium, .long, .full]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:11:13: note: consider making enum 'TimeTransformers' conform to the 'Sendable' protocol
public enum TimeTransformers: String, ReversableValueTransformers, ResersableValueTransformerType {
            ^
                                                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:18:23: note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
    public static let transformers: [TimeTransformers] = [.short, .medium, .long, .full]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:18:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let transformers: [TimeTransformers] = [.short, .medium, .long, .full]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:20:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "Time"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:20:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "Time"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:20:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "Time"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:20:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "Time"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:21:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var reversableNamePrefix = "StringToTime"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:21:23: note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var reversableNamePrefix = "StringToTime"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:21:23: note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
    public static var reversableNamePrefix = "StringToTime"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:21:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var reversableNamePrefix = "StringToTime"
                      ^
    nonisolated(unsafe)
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/ValueTransformerKit-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ValueTransformerKit-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ValueTransformerKit-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ValueTransformerKit-Swift.h (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ValueTransformerKit-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ValueTransformerKit-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ValueTransformerKit-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/ValueTransformerKit-Swift.h
SwiftDriverJobDiscovery normal armv7k Compiling StringToDataTransformer.swift, StringTransformers.swift, TimeTransformers.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ValueTransformerKit.swiftmodule (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ValueTransformerKit.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ValueTransformerKit.swiftdoc (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ValueTransformerKit.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ValueTransformerKit.abi.json (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ValueTransformerKit.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ValueTransformerKit.swiftsourceinfo (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ValueTransformerKit.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
SwiftDriver\ Compilation ValueTransformerKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    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 ValueTransformerKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ValueTransformerKit.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-watchos4.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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ValueTransformerKit-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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ValueTransformerKit.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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ValueTransformerKit_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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ValueTransformerKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64_32 Compiling\ ArchiveValueTransformer.swift,\ ArrayToStringTransformer.swift,\ Base64Transformer.swift /Users/admin/builder/spi-builder-workspace/Sources/ArchiveValueTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Base64Transformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ArchiveValueTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ArchiveValueTransformer.swift:14:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'ArchiveValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let instance = ArchiveValueTransformer()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ArchiveValueTransformer.swift:11:20: note: class 'ArchiveValueTransformer' does not conform to the 'Sendable' protocol
public final class ArchiveValueTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/ArchiveValueTransformer.swift:14:23: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
    public static let instance = ArchiveValueTransformer()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ArchiveValueTransformer.swift:14:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let instance = ArchiveValueTransformer()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ArchiveValueTransformer.swift:53:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'UnarchiveValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let instance = UnarchiveValueTransformer()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ArchiveValueTransformer.swift:50:20: note: class 'UnarchiveValueTransformer' does not conform to the 'Sendable' protocol
public final class UnarchiveValueTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/ArchiveValueTransformer.swift:53:23: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
    public static let instance = UnarchiveValueTransformer()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ArchiveValueTransformer.swift:53:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let instance = UnarchiveValueTransformer()
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:10:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "ArrayToString"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:10:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "ArrayToString"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:10:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "ArrayToString"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:10:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "ArrayToString"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:11:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var reversableNamePrefix = "StringToArray"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:11:23: note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var reversableNamePrefix = "StringToArray"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:11:23: note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
    public static var reversableNamePrefix = "StringToArray"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:11:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var reversableNamePrefix = "StringToArray"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:14:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'ArrayToStringTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let instance = ArrayToStringTransformer()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:8:20: note: class 'ArrayToStringTransformer' does not conform to the 'Sendable' protocol
final public class ArrayToStringTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton, ReversableValueTransformers {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:14:23: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
    public static let instance = ArrayToStringTransformer()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:14:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let instance = ArrayToStringTransformer()
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Base64Transformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ NumberTransformers.swift,\ Operators.swift,\ OrderedSetToArrayValueTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift /Users/admin/builder/spi-builder-workspace/Sources/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:17:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[NumberTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let transformers: [NumberTransformers] = {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:11:13: note: consider making enum 'NumberTransformers' conform to the 'Sendable' protocol
public enum NumberTransformers: ReversableValueTransformers, ResersableValueTransformerType {
            ^
                                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:17:23: note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
    public static let transformers: [NumberTransformers] = {
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let transformers: [NumberTransformers] = {
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:23:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "Number"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:23:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "Number"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:23:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "Number"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:23:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "Number"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:24:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var reversableNamePrefix = "StringToNumber"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:24:23: note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var reversableNamePrefix = "StringToNumber"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:24:23: note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
    public static var reversableNamePrefix = "StringToNumber"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:24:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var reversableNamePrefix = "StringToNumber"
                      ^
    nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Operators.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:12:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var namePrefix = "OrderedSetToArray"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:12:23: note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var namePrefix = "OrderedSetToArray"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:12:23: note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
    public static var namePrefix = "OrderedSetToArray"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:12:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var namePrefix = "OrderedSetToArray"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:13:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var reversableNamePrefix = "ArrayToOrderedSet"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:13:23: note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
    public static var reversableNamePrefix = "ArrayToOrderedSet"
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:13:23: note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
    public static var reversableNamePrefix = "ArrayToOrderedSet"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var reversableNamePrefix = "ArrayToOrderedSet"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:16:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'OrderedSetToArrayValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let instance = OrderedSetToArrayValueTransformer()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:10:20: note: class 'OrderedSetToArrayValueTransformer' does not conform to the 'Sendable' protocol
final public class OrderedSetToArrayValueTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton, ReversableValueTransformers {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:16:23: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
    public static let instance = OrderedSetToArrayValueTransformer()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:16:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let instance = OrderedSetToArrayValueTransformer()
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling URLToStringTransformer.swift, ValueTransformerRegisterable.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftDriverJobDiscovery normal arm64_32 Compiling ValueTransformerType.swift, ValueTransformers.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftDriverJobDiscovery normal arm64_32 Compiling ClosureValueTransformer.swift, DateTransformers.swift, EmptyTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftDriverJobDiscovery normal arm64_32 Compiling PropertyListTransformer.swift, ReverseValueTransformer.swift, SecondsToHoursValueTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftDriverJobDiscovery normal arm64_32 Compiling NumberTransformers.swift, Operators.swift, OrderedSetToArrayValueTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/Binary/ValueTransformerKit.o normal arm64 (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    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-watchos4.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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ValueTransformerKit.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ValueTransformerKit_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ValueTransformerKit_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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ValueTransformerKit.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/Binary/ValueTransformerKit.o
SwiftDriverJobDiscovery normal arm64_32 Compiling StringToDataTransformer.swift, StringTransformers.swift, TimeTransformers.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftDriverJobDiscovery normal arm64_32 Compiling JSONValueTransformer.swift, LocalKeyTransformers.swift, NumberToBoolTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftDriverJobDiscovery normal arm64_32 Compiling ArchiveValueTransformer.swift, ArrayToStringTransformer.swift, Base64Transformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftDriverJobDiscovery normal arm64_32 Compiling UIColorToString.swift, URLStringToImageTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftDriverJobDiscovery normal arm64_32 Compiling IdentityTransformer.swift, ImageTransformers.swift, IsEmptyTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftDriver\ Compilation ValueTransformerKit normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    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 ValueTransformerKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ValueTransformerKit.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-watchos4.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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ValueTransformerKit-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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ValueTransformerKit.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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ValueTransformerKit_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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ValueTransformerKit-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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/Binary/ValueTransformerKit.o normal arm64_32 (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    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-watchos4.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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ValueTransformerKit.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ValueTransformerKit_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ValueTransformerKit_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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ValueTransformerKit.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/Binary/ValueTransformerKit.o
SwiftDriverJobDiscovery normal armv7k Compiling NumberTransformers.swift, Operators.swift, OrderedSetToArrayValueTransformer.swift (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
SwiftDriver\ Compilation ValueTransformerKit normal armv7k com.apple.xcode.tools.swift.compiler (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    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 ValueTransformerKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ValueTransformerKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos4.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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ValueTransformerKit-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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ValueTransformerKit.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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ValueTransformerKit_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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ValueTransformerKit-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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/Binary/ValueTransformerKit.o normal armv7k (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos4.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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ValueTransformerKit.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ValueTransformerKit_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ValueTransformerKit_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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ValueTransformerKit.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/Binary/ValueTransformerKit.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.o normal arm64\ armv7k\ arm64_32 (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    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/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/Binary/ValueTransformerKit.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/Binary/ValueTransformerKit.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/Binary/ValueTransformerKit.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.o
ExtractAppIntentsMetadata (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    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 ValueTransformerKit --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 4.0 --bundle-identifier spi-builder-workspace.ValueTransformerKit --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.appintents --target-triple arm64-apple-watchos4.0 --target-triple armv7k-apple-watchos4.0 --target-triple arm64_32-apple-watchos4.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ValueTransformerKit_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ValueTransformerKit_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ValueTransformerKit_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ValueTransformerKit.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ValueTransformerKit.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ValueTransformerKit.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/ValueTransformerKit.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/ValueTransformerKit.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64/ValueTransformerKit.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/armv7k/ValueTransformerKit.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ValueTransformerKit.build/Debug-watchos/ValueTransformerKit.build/Objects-normal/arm64_32/ValueTransformerKit.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-06 07:28:15.257 appintentsmetadataprocessor[750:4449] Starting appintentsmetadataprocessor export
2025-06-06 07:28:15.297 appintentsmetadataprocessor[750:4449] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.o (in target 'ValueTransformerKit' from project 'ValueTransformerKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ValueTransformerKit.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "ValueTransformerKit",
  "name" : "ValueTransformerKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.11"
    },
    {
      "name" : "ios",
      "version" : "9.0"
    },
    {
      "name" : "tvos",
      "version" : "9.0"
    },
    {
      "name" : "watchos",
      "version" : "3.0"
    }
  ],
  "products" : [
    {
      "name" : "ValueTransformerKit",
      "targets" : [
        "ValueTransformerKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "ValueTransformerKitTests",
      "module_type" : "SwiftTarget",
      "name" : "ValueTransformerKitTests",
      "path" : "Tests",
      "sources" : [
        "Tests.swift"
      ],
      "target_dependencies" : [
        "ValueTransformerKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ValueTransformerKit",
      "module_type" : "SwiftTarget",
      "name" : "ValueTransformerKit",
      "path" : "Sources",
      "product_memberships" : [
        "ValueTransformerKit"
      ],
      "sources" : [
        "ArchiveValueTransformer.swift",
        "ArrayToStringTransformer.swift",
        "Base64Transformer.swift",
        "ClosureValueTransformer.swift",
        "DateTransformers.swift",
        "EmptyTransformer.swift",
        "IdentityTransformer.swift",
        "ImageTransformers.swift",
        "IsEmptyTransformer.swift",
        "JSONValueTransformer.swift",
        "LocalKeyTransformers.swift",
        "NumberToBoolTransformer.swift",
        "NumberTransformers.swift",
        "Operators.swift",
        "OrderedSetToArrayValueTransformer.swift",
        "PropertyListTransformer.swift",
        "ReverseValueTransformer.swift",
        "SecondsToHoursValueTransformer.swift",
        "StringToDataTransformer.swift",
        "StringTransformers.swift",
        "TimeTransformers.swift",
        "UIColorToString.swift",
        "URLStringToImageTransformer.swift",
        "URLToStringTransformer.swift",
        "ValueTransformerRegisterable.swift",
        "ValueTransformerType.swift",
        "ValueTransformers.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.